Skip to content

Commit e341e23

Browse files
committed
Release 4.14.0
1 parent a0ddbf5 commit e341e23

File tree

3 files changed

+38
-15
lines changed

3 files changed

+38
-15
lines changed

CHANGELOG.md

Lines changed: 36 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th
99

1010
| Version | Branch | Release Date |
1111
| ---------------- | -------- | ---------------------- |
12-
| [4.15.0](#4150-dev) | `dev` |
13-
| [4.14.0](#4140-beta) | `beta` |
14-
| [4.13.1](#4131-stable) | `stable` | Sep 29, 2024
12+
| [5.0.0](#500-dev) | `dev` |
13+
| [4.15.0](#4150-beta) | `beta` |
14+
| [4.14.0](#4140-stable) | `stable` | Jan 15, 2025
15+
| [4.13.1](#4131) | | Sep 29, 2024
1516
| [4.13.0](#4130) | | Aug 12, 2024
1617
| [4.12.0](#4120) | | Feb 22, 2024
1718
| [4.11.1](#4111) | | Nov 14, 2023
@@ -71,21 +72,47 @@ The table below shows which release corresponds to each branch, and what date th
7172
| [3.0.0](#300) | | Aug 20, 2016
7273
| [2.2.0](#220) | | Jan 5, 2015
7374

74-
## 4.15.0 (`dev`)
75+
## 5.0.0 (`dev`)
7576

77+
78+
## 4.15.0 (`beta`)
79+
- [#2508][2508] Ignore a warning when compiling with asm on nix
7680
- [#2471][2471] Properly close spawned kitty window
7781
- [#2358][2358] Cache output of `asm()`
7882
- [#2457][2457] Catch exception of non-ELF files in checksec.
7983
- [#2444][2444] Add `ELF.close()` to release resources
8084
- [#2413][2413] libcdb: improve the search speed of `search_by_symbol_offsets` in local libc-database
81-
85+
- [#2470][2470] Fix waiting for gdb under WSL2
86+
- [#2479][2479] Support extracting libraries from Docker image in `pwn template`
87+
- [#2483][2483] Only print `checksec` output of `ELF.libc` when it was printed for the `ELF` already
88+
- [#2482][2482] Throw error when using `sni` and setting `server_hostname` manually in `remote`
89+
- [#2478][2478] libcdb-cli: add `--offline-only`, refactor unstrip and add fetch parser for download libc-database
90+
- [#2484][2484] Allow to disable caching
91+
- [#2291][2291] Fix attaching to a gdbserver with tuple `gdb.attach(('0.0.0.0',12345))`
92+
- [#2410][2410] Add `tube.upload_manually` to upload files in chunks
93+
- [#2502][2502] Fix loading ELF files without valid .dynamic section
94+
- [#2476][2476] Deprecate 'keepends' argument in favor of 'drop' in `tube.recvline*`
95+
- [#2364][2364] Deprecate direct commandline scripts invocation and exclude nonsense ones
96+
97+
[2508]: https://github.com/Gallopsled/pwntools/pull/2508
8298
[2471]: https://github.com/Gallopsled/pwntools/pull/2471
8399
[2358]: https://github.com/Gallopsled/pwntools/pull/2358
84100
[2457]: https://github.com/Gallopsled/pwntools/pull/2457
85101
[2444]: https://github.com/Gallopsled/pwntools/pull/2444
86102
[2413]: https://github.com/Gallopsled/pwntools/pull/2413
87-
88-
## 4.14.0 (`beta`)
103+
[2470]: https://github.com/Gallopsled/pwntools/pull/2470
104+
[2479]: https://github.com/Gallopsled/pwntools/pull/2479
105+
[2483]: https://github.com/Gallopsled/pwntools/pull/2483
106+
[2482]: https://github.com/Gallopsled/pwntools/pull/2482
107+
[2478]: https://github.com/Gallopsled/pwntools/pull/2478
108+
[2484]: https://github.com/Gallopsled/pwntools/pull/2484
109+
[2291]: https://github.com/Gallopsled/pwntools/pull/2291
110+
[2410]: https://github.com/Gallopsled/pwntools/pull/2410
111+
[2502]: https://github.com/Gallopsled/pwntools/pull/2502
112+
[2476]: https://github.com/Gallopsled/pwntools/pull/2476
113+
[2364]: https://github.com/Gallopsled/pwntools/pull/2364
114+
115+
## 4.14.0 (`stable`)
89116

90117
- [#2356][2356] Add local libc database provider for libcdb
91118
- [#2360][2360] Add offline parameter for `search_by_hash` series function
@@ -107,6 +134,7 @@ The table below shows which release corresponds to each branch, and what date th
107134
- [#2382][2382] added optional port, gdb_args and gdbserver_args parameters to gdb.debug()
108135
- [#2435][2435] Speed up gdbserver handshake in gdb.debug()
109136
- [#2436][2436] Add resolution_addr parameter to Ret2dlresolvePayload
137+
- [#2497][2497] Fix remote.fromsocket() to handle AF_INET6 socket
110138

111139
[2436]: https://github.com/Gallopsled/pwntools/pull/2436
112140
[2371]: https://github.com/Gallopsled/pwntools/pull/2371
@@ -128,14 +156,9 @@ The table below shows which release corresponds to each branch, and what date th
128156
[2382]: https://github.com/Gallopsled/pwntools/pull/2382
129157
[2435]: https://github.com/Gallopsled/pwntools/pull/2435
130158
[2437]: https://github.com/Gallopsled/pwntools/pull/2437
131-
132-
## 4.13.2
133-
134-
- [#2497][2497] Fix remote.fromsocket() to handle AF_INET6 socket
135-
136159
[2497]: https://github.com/Gallopsled/pwntools/pull/2497
137160

138-
## 4.13.1 (`stable`)
161+
## 4.13.1
139162

140163
- [#2445][2445] Fix parsing the PLT on Windows
141164
- [#2466][2466] Fix PLT emulation with Unicorn 2.1.0

pwnlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.14.0beta1'
1+
__version__ = '4.14.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
sys.exit(-1)
6464

6565
setup(
66-
version = '4.14.0beta1',
66+
version = '4.14.0',
6767
data_files = [('pwntools-doc',
6868
glob.glob('*.md') + glob.glob('*.txt')),
6969
],

0 commit comments

Comments
 (0)