Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,38 @@ If you love PyT, please star our project on GitHub to show your support! :star:
[#xxxx]: https://github.com/python-security/pyt/pull/xxxx
[@xxxx]: https://github.com/xxxx
-->
# 0.41
##### November 1st, 2018

#### :boom: Breaking Changes
* Changed trigger file format when specifying specific tainted args ([#182])

#### :tada: New Features
* Function calls such as `list.append` and `dict.update` now propagate taint to the list or dict ([#181])

#### :bug: Bugfixes
* IfExp (or ternary) expression handling improved ([#179])

# 0.40
##### September 11th, 2018

#### :mega: Release Highlights
* Logging changes. Logging verbosity can be changed with `-v` to `-vvv` ([#172])

#### :boom: Breaking Changes
* Removed `--trim` option ([#169])

#### :tada: New Features
* Added `--only-unsanitised` flag to not print sanitised vulnerabilities ([#172])

#### :bug: Bugfixes
* Recursive functions don't cause `RecursionError` ([#173])
* Handling of chained functions improved ([#171])

# 0.39
##### August 21st, 2018

...

# 0.38
##### August 2nd, 2018
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup


VERSION = '0.40'
VERSION = '0.41'


setup(
Expand Down