René's URL Explorer Experiment


Title: Bump pyjwt from 2.12.0 to 2.13.0 in /integration_test/synapse/synapse-develop by dependabot[bot] · Pull Request #99 · sorydima/REChain- · GitHub

Open Graph Title: Bump pyjwt from 2.12.0 to 2.13.0 in /integration_test/synapse/synapse-develop by dependabot[bot] · Pull Request #99 · sorydima/REChain-

X Title: Bump pyjwt from 2.12.0 to 2.13.0 in /integration_test/synapse/synapse-develop by dependabot[bot] · Pull Request #99 · sorydima/REChain-

Description: WarningDependabot will stop supporting python v3.9! Please upgrade to one of the following versions: v3.9, v3.10, v3.11, v3.12, v3.13, or v3.14. Bumps pyjwt from 2.12.0 to 2.13.0. Release notes Sourced from pyjwt's releases. 2.13.0 PyJWT 2.13.0 — Security Release This release bundles five security fixes plus three additional hardening / spec-compliance changes. We recommend all users upgrade. Security GHSA-xgmm-8j9v-c9wx — JWK JSON accepted as HMAC secret (algorithm confusion). HMACAlgorithm.prepare_key previously rejected PEM- and SSH-formatted asymmetric keys but did not catch a JWK passed as a raw JSON string. In a verifier configured with both symmetric and asymmetric algorithms in algorithms=[…] and a raw-JSON JWK as the key, an attacker could forge HS256 tokens using the JWK text as the HMAC secret. The guard has been extended to reject any JWK-shaped JSON. Reported by @​aradona91. GHSA-jq35-7prp-9v3f — Algorithm allow-list bypass with PyJWK / PyJWKClient. When verifying with a PyJWK, the caller's algorithms=[…] allow-list was checked against the token header alg as a string only; actual verification used the algorithm bound to the PyJWK. An attacker who controlled a registered JWKS key could sign with one algorithm and advertise another on the header. PyJWT now requires the token header alg to match the PyJWK's algorithm before verification. Reported by @​sushi-gif. GHSA-w7vc-732c-9m39 — DoS via base64 decode of unused payload segment when b64=false. For detached-payload JWS (b64=false), the compact-form payload segment was base64-decoded before being discarded in favor of the caller-supplied detached_payload. An attacker could inflate the unused segment to force CPU + memory cost without holding a valid signature. The segment is now required to be empty per RFC 7515 Appendix F, and is no longer decoded. Reported by @​thesmartshadow. GHSA-993g-76c3-p5m4 — PyJWKClient accepts non-HTTP(S) URIs. PyJWKClient.fetch_data passed its URI to urllib.request.urlopen, which by default also handles file://, ftp://, and data: schemes. An application that fed an attacker-influenced URI into PyJWKClient could be coerced into reading local files or reaching other unintended schemes. PyJWKClient now rejects any URI whose scheme isn't http or https. Reported by @​KEIJOT. GHSA-fhv5-28vv-h8m8 — PyJWKClient cache wiped on fetch error. A finally-block put(jwk_set=None) cleared the JWK Set cache whenever a fetch raised, turning a transient JWKS-endpoint outage into application-wide auth failure. The cache write was moved into the success path; transient errors no longer evict valid cached keys. Reported by @​eddieran. Fixed Reject empty HMAC keys outright in HMACAlgorithm.prepare_key with InvalidKeyError instead of accepting them with only a warning. Defends against the os.getenv("JWT_SECRET", "") footgun. Thanks to @​SnailSploit and @​spartan8806 for the reports. Forward per-call options (including enforce_minimum_key_length) from PyJWT.decode through to PyJWS._verify_signature. The option was previously silently dropped between the two layers, so it only took effect when set on the PyJWT instance. Thanks to @​WLUB for the report. RFC 7797 §3 compliance for b64=false: the encoder now auto-adds "b64" to crit, and the decoder rejects tokens that set b64=false without listing it in crit. Thanks to @​MachineLearning-Nerd for the report. Changed Migrate the dev, docs, and tests package extras to dependency groups, by @​kurtmckee in #1152. Upgrade notes Most fixes are invisible to correctly-configured callers. A few behavioral changes you may encounter: Empty HMAC keys now raise. If your app passed "" or b"" as a secret (often via a missing env var, e.g. os.getenv("JWT_SECRET", "")), encode/decode will now raise InvalidKeyError. This is the intended behavior — fix the configuration. PyJWK decoding now requires the token's alg to match the JWK's algorithm. Previously a mismatch was silently honored if the header alg appeared in the allow-list. Tokens that relied on this mismatch will now fail with InvalidAlgorithmError. PyJWKClient now rejects non-HTTP(S) URIs at construction time. Tests or dev environments that fetched JWKS from file:// URIs need to switch to a local HTTP server or load the JWKS by other means (e.g. construct PyJWKSet.from_dict(...) directly). b64=false tokens are now strictly RFC 7515 / 7797 compliant. Tokens with a non-empty compact-form payload segment, or that omit "b64" from crit, will be rejected. PyJWT-produced tokens always satisfy both invariants, so round-trips through PyJWT are unaffected. enforce_minimum_key_length set per-call now takes effect. Callers who passed options={"enforce_minimum_key_length": True} to jwt.decode() previously got no enforcement; they will now get InvalidKeyError on undersized keys, as documented. Full changelog: jpadilla/pyjwt@2.12.1...2.13.0 2.12.1 What's Changed Add typing_extensions dependency for Python < 3.11 by @​jpadilla in jpadilla/pyjwt#1151 Full Changelog: jpadilla/pyjwt@2.12.0...2.12.1 Changelog Sourced from pyjwt's changelog. v2.13.0 __ Security - Reject JWK JSON documents passed as raw HMAC secrets in ``HMACAlgorithm.prepare_key`` to close an algorithm-confusion gap that the existing PEM/SSH guard did not cover. Reported by @aradona91 in `GHSA-xgmm-8j9v-c9wx `__. - Bind the JWT header ``alg`` to ``PyJWK.algorithm_name`` during verification so the caller's ``algorithms=[...]`` allow-list cannot be bypassed when decoding with a ``PyJWK`` / ``PyJWKClient`` key. Reported by @sushi-gif in `GHSA-jq35-7prp-9v3f `__. - Reject non-``http(s)`` URI schemes in ``PyJWKClient`` so attacker- influenced URIs cannot read local files or reach unintended schemes via urllib's default ``file://`` / ``ftp://`` / ``data:`` handlers. Reported by @KEIJOT in `GHSA-993g-76c3-p5m4 `__. - Preserve the cached JWK Set on fetch errors in ``PyJWKClient.fetch_data``. The previous ``finally``-block ``put(None)`` pattern cleared the cache on any transient outage, turning one bad JWKS request into application- wide auth failure. Reported by @eddieran in `GHSA-fhv5-28vv-h8m8 `__. - Skip the unconditional base64 decode of the compact-form payload segment when ``b64=false`` is set in the protected header, and require that segment to be empty (RFC 7515 Appendix F detached form). Closes an unauthenticated DoS amplifier. Reported by @thesmartshadow in `GHSA-w7vc-732c-9m39 `__. Fixed - Reject empty HMAC keys outright in ``HMACAlgorithm.prepare_key`` with ``InvalidKeyError`` instead of accepting them with only a warning. Thanks to @SnailSploit and @spartan8806 for independently flagging the footgun. - Forward per-call ``options`` (including ``enforce_minimum_key_length``) from ``PyJWT.decode`` through to ``PyJWS._verify_signature`` so the option actually takes effect when set at the call site rather than only on the ``PyJWT`` instance. Thanks to @WLUB for the report. - RFC 7797 §3 compliance for ``b64=false``: the encoder now auto-adds ``"b64"`` to the ``crit`` header parameter, and the decoder rejects tokens that set ``b64=false`` without listing it in ``crit``. Thanks to @MachineLearning-Nerd for the report. Changed Migrate the dev, docs, and tests package extras to dependency groups by @​kurtmckee in [#1152](https://github.com/jpadilla/pyjwt/issues/1152) <https://github.com/jpadilla/pyjwt/pull/1152>__ v2.12.1 <https://github.com/jpadilla/pyjwt/compare/2.12.0...2.12.1>__ ... (truncated) Commits 7144e45 Apply ruff format d2f4bec Restore cast() calls with cross-version type: ignore for prepare_key 22f478c Remove redundant casts in RSAAlgorithm.prepare_key and `ECAlgorithm.prepare... 95791b1 Bundle security fixes and hardening into 2.13.0 dcc27a9 [pre-commit.ci] pre-commit autoupdate (#1155) 9d08a9a [pre-commit.ci] pre-commit autoupdate (#1146) b87c100 Bump codecov/codecov-action from 5 to 6 (#1154) 40e3147 Migrate development extras to dependency groups (#1152) a4e1a3d Add typing_extensions dependency for Python < 3.11 (#1151) See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.

Open Graph Description: WarningDependabot will stop supporting python v3.9! Please upgrade to one of the following versions: v3.9, v3.10, v3.11, v3.12, v3.13, or v3.14. Bumps pyjwt from 2.12.0 to 2.13.0. Release notes S...

X Description: WarningDependabot will stop supporting python v3.9! Please upgrade to one of the following versions: v3.9, v3.10, v3.11, v3.12, v3.13, or v3.14. Bumps pyjwt from 2.12.0 to 2.13.0. Release notes S...

Opengraph URL: https://github.com/sorydima/REChain-/pull/99

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:f15f3b6a-0bc0-994d-3644-2be9f291bcf9
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idCA6C:22EDEC:17E8F10:211D362:6A4BFDBC
html-safe-nonce9580603cd873f32b9b1ee7715b4a25745da731a82d1804321ccbdff472da274e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQTZDOjIyRURFQzoxN0U4RjEwOjIxMUQzNjI6NkE0QkZEQkMiLCJ2aXNpdG9yX2lkIjoiMjQ0OTM4NDY0OTE0MDIwNzAzNiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacbc4e5037473ace91d68f1694e84e2d2fea48d934687afe049fb693f88d4e0e24
hovercard-subject-tagpull_request:3872436114
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/sorydima/REChain-/pull/99/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altWarningDependabot will stop supporting python v3.9! Please upgrade to one of the following versions: v3.9, v3.10, v3.11, v3.12, v3.13, or v3.14. Bumps pyjwt from 2.12.0 to 2.13.0. Release notes S...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None0f5d3ba365b3985d75c32a5957c8635488d58dcf027ae6ae958eee7edaa306a2
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/sorydima/REChain- git https://github.com/sorydima/REChain-.git
octolytics-dimension-user_id43252008
octolytics-dimension-user_loginsorydima
octolytics-dimension-repository_id597727499
octolytics-dimension-repository_nwosorydima/REChain-
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id597727499
octolytics-dimension-repository_network_root_nwosorydima/REChain-
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release6c542436f9c7282f518e9ec7bc5a3adff20a13fd
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/sorydima/REChain-/pull/99/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fsorydima%2FREChain-%2Fpull%2F99%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fsorydima%2FREChain-%2Fpull%2F99%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=sorydima%2FREChain-
Reloadhttps://github.com/sorydima/REChain-/pull/99/files
Reloadhttps://github.com/sorydima/REChain-/pull/99/files
Reloadhttps://github.com/sorydima/REChain-/pull/99/files
sorydima https://github.com/sorydima
REChain-https://github.com/sorydima/REChain-
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
Notifications https://github.com/login?return_to=%2Fsorydima%2FREChain-
Fork 5 https://github.com/login?return_to=%2Fsorydima%2FREChain-
Star 21 https://github.com/login?return_to=%2Fsorydima%2FREChain-
Code https://github.com/sorydima/REChain-
Issues 0 https://github.com/sorydima/REChain-/issues
Pull requests 37 https://github.com/sorydima/REChain-/pulls
Discussions https://github.com/sorydima/REChain-/discussions
Actions https://github.com/sorydima/REChain-/actions
Projects https://github.com/sorydima/REChain-/projects
Wiki https://github.com/sorydima/REChain-/wiki
Security and quality 0 https://github.com/sorydima/REChain-/security
Insights https://github.com/sorydima/REChain-/pulse
Code https://github.com/sorydima/REChain-
Issues https://github.com/sorydima/REChain-/issues
Pull requests https://github.com/sorydima/REChain-/pulls
Discussions https://github.com/sorydima/REChain-/discussions
Actions https://github.com/sorydima/REChain-/actions
Projects https://github.com/sorydima/REChain-/projects
Wiki https://github.com/sorydima/REChain-/wiki
Security and quality https://github.com/sorydima/REChain-/security
Insights https://github.com/sorydima/REChain-/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fsorydima%2FREChain-%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fsorydima%2FREChain-%2Fissues%2Fnew%2Fchoose
dependabothttps://github.com/apps/dependabot
mainhttps://github.com/sorydima/REChain-/tree/main
dependabot/pip/integration_test/synapse/synapse-develop/pyjwt-2.13.0https://github.com/sorydima/REChain-/tree/dependabot/pip/integration_test/synapse/synapse-develop/pyjwt-2.13.0
Conversation 1 https://github.com/sorydima/REChain-/pull/99
Commits 1 https://github.com/sorydima/REChain-/pull/99/commits
Checks 13 https://github.com/sorydima/REChain-/pull/99/checks
Files changed https://github.com/sorydima/REChain-/pull/99/files
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
Bump pyjwt from 2.12.0 to 2.13.0 in /integration_test/synapse/synapse-develop https://github.com/sorydima/REChain-/pull/99/files#top
Show all changes 1 commit https://github.com/sorydima/REChain-/pull/99/files
a859ce3 Bump pyjwt in /integration_test/synapse/synapse-develop dependabot[bot] Jun 16, 2026 https://github.com/sorydima/REChain-/pull/99/commits/a859ce3bba129e97d0f3cde6a7dca222430911d9
Clear filters https://github.com/sorydima/REChain-/pull/99/files
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
integration_test/synapse/synapse-develop/poetry.lockhttps://github.com/sorydima/REChain-/pull/99/files#diff-79fb9dda927a731b0816689872b102c97478aebb592965e20f6b8a4e102e997e
View file https://github.com/sorydima/REChain-/blob/a859ce3bba129e97d0f3cde6a7dca222430911d9/integration_test/synapse/synapse-develop/poetry.lock
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
Please reload this pagehttps://github.com/sorydima/REChain-/pull/99/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.