Skip to content
Open
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
3 changes: 3 additions & 0 deletions disassemblers/ofrak_angr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased 1.2.0](https://github.com/redballoonsecurity/ofrak/tree/master)

### Added
- Add a `requirements.txt` file for docker build optimization ([#689](https://github.com/redballoonsecurity/ofrak/pull/689))

### Fixed
- Pin Angr dependencies (`networkx` and `msgspec`) ([#676](https://github.com/redballoonsecurity/ofrak/pull/676))
- Pin pycparser version ([#683](https://github.com/redballoonsecurity/ofrak/pull/683))
Expand Down
7 changes: 7 additions & 0 deletions disassemblers/ofrak_angr/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
angr==9.2.102; python_version == "3.9"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@whyitfor to minimize the impact of the change, I picked the version that is the same as what was currently picked up - so this PR would not change what gets installed in containers built today. Not attached to that choice.

angr==9.2.174; python_version >= "3.10"
networkx==3.2.1; python_version == "3.9"
networkx==3.4.2; python_version == "3.10"
networkx==3.5; python_version >= "3.11"
msgspec==0.19.0
pycparser==2.23
Loading