Skip to content

Commit

Permalink
Fix & update CHANGELOG.md
Browse files Browse the repository at this point in the history
This actually is a behavior change, and can be a breaking change for some,
so must be stated prominently in the changelog.
  • Loading branch information
Arusekk committed Apr 28, 2021
1 parent dcb3140 commit 9473b7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -61,9 +61,11 @@ The table below shows which release corresponds to each branch, and what date th
## 4.6.0 (`dev`)

- [#1739][1739] Add/fix shellcraft.linux.kill() / shellcraft.linux.killparent()
- [#1746][1746] Prefer Python3 over Python2 for spawning remote processes over SSH
- [#1776][1776] mips: do not use $t0 temporary variable in dupio

[1739]: https://github.com/Gallopsled/pwntools/pull/1739
[1746]: https://github.com/Gallopsled/pwntools/pull/1746
[1776]: https://github.com/Gallopsled/pwntools/pull/1776

## 4.5.0 (`beta`)
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/tubes/ssh.py
Expand Up @@ -864,7 +864,7 @@ def process(self, argv=None, executable=None, tty=True, cwd=None, env=None, time
>>> print(s.process('false', preexec_fn=uses_globals).recvall().strip().decode()) # doctest: +ELLIPSIS
Traceback (most recent call last):
...
NameError: ... name 'bar' is not defined
NameError: ...name 'bar' is not defined
>>> s.process('echo hello', shell=True).recvall()
b'hello\n'
Expand Down

0 comments on commit 9473b7c

Please sign in to comment.