-
Notifications
You must be signed in to change notification settings - Fork 26
chore(deps): bump pyjwt from 2.10.1 to 2.11.0 #452
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
base: master
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ idna==3.11 ; python_full_version >= "3.9.2" and python_version < "4.0" | |
| jwcrypto==1.5.6 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
| pycparser==2.23 ; python_full_version >= "3.9.2" and platform_python_implementation != "PyPy" and python_version < "4.0" and implementation_name != "PyPy" | ||
| pydash==8.0.6 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
| pyjwt==2.10.1 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
| pyjwt==2.11.0 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
|
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 line updates the version of PyJWT. When updating versions of dependencies, make sure to verify compatibility with the remaining code. Ensure to run all the tests after updating the package and, if possible, check the changelogs of the dependency for any breaking changes before updating. 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. Update from pyjwt==2.10.1 to pyjwt==2.11.0. Make sure this update doesn't introduce any breaking changes if there are dependencies in the application that require the older version. Also, ensure to have tested this thoroughly with the rest of the application. 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. I see here that the pyjwt package has been updated from version 2.10.1 to version 2.11.0. It's vital to ensure this update does not break any existing code, so I recommend running the full test suite to check for any breakages. Additionally, it's a good idea to check pyjwt's changelog for this version to understand what updates this new version brings and if there are any known issues to be aware of. |
||
| python-box==7.3.2 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
| python-dateutil==2.9.0.post0 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
| pytz==2025.2 ; python_full_version >= "3.9.2" and python_version < "4.0" | ||
|
|
||
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.
You've updated pyjwt from version 2.10.1 to 2.11.0. Ensure that this update doesn't introduce any breaking changes to your application. Review the package's changelog and if possible, test the dependent functionalities with this new version before merging.