-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update development dependencies to mitigate Snyk-reported vulnerabilities #42
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
autopep8 ~= 2.0.1 | ||
coverage ~= 7.1.0 | ||
flake8 ~= 6.0 | ||
ipython ~= 7.32 | ||
isort ~= 5.5 | ||
moto ~= 1.3 | ||
pytest ~= 7.2.1 | ||
python-dotenv ~=0.21 | ||
safety ~= 1.10 | ||
autopep8 ~= 2.0.4 | ||
coverage ~= 7.3.2 | ||
flake8 ~= 6.1.0 | ||
ipython ~= 8.17.2 | ||
isort ~= 5.12.0 | ||
moto ~= 4.2.7 | ||
pytest ~= 7.4.3 | ||
python-dotenv ~=1.0.0 | ||
safety ~= 2.3.5 | ||
werkzeug ~= 3.0.1 # Dependency of moto, pinned to mitigate vulnerability. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When running the installation on my local machine (in a Python 3.9 environment), There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't great, but I'm following along with the slack chat to see if we can resolve it differently for the future. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was also a medium severity vulnerability in
ipython
. That should now be squashed.There was one last medium severity vulnerability in
setuptools
, but when I ran things locally, the new versions of everything didn't look like they includedsetuptools
, so that should also be squashed.