-
Notifications
You must be signed in to change notification settings - Fork 98
Update did-jwks library to latest #53
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@agentcommercekit/did": patch | ||
| --- | ||
|
|
||
| Improve did:jwks support | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
# Check the changeset file cat .changeset/large-lines-wave.mdRepository: agentcommercekit/ack
Length of output: 128
🏁 Script executed:
Repository: agentcommercekit/ack
Length of output: 757
🌐 Web query:
jwks-did-resolver npm package changelog 0.3.0 to 1.1.0 breaking changes💡 Result:
jwks-did-resolver breaking changes from 0.3.0 → 1.1.0
Breaking change introduced in 1.1.0 (tagged Feb 21, 2026)
Path-based
did:jwksidentifiers resolve to different URLs than before. Root (no-path) DIDs are unchanged. [1][2]Before (≤ 1.0.0, including 0.3.0):
.well-knownwas placed under the DID path (RFC 8615-invalid), e.g.:https://example.com/tenant/.well-known/jwks.json(and similar patterns)Now (1.1.0): resolution is RFC 8615 / RFC 8414 compliant: [2]
https://example.com/tenant/jwks.jsonhttps://example.com/.well-known/openid-configuration/tenantImpact: if you used path DIDs (e.g.
did:jwks:example.com:tenant), the resolver will now call different endpoints, so servers configured for the old (non-compliant) paths may fail until updated. [2]0.3.0 → 1.0.0
I didn’t find any documented API-level breaking change in the repo history between these tags—only a doc/spec tweak and the 1.0.0 version tag itself are visible in the comparison metadata GitHub renders. [3]
Sources
[1] GitHub tags list showing
jwks-did-resolver@0.3.0,@1.0.0,@1.1.0(catena-labs/did-jwks) (github.com)[2] GitHub compare view containing the 1.1.0 change description (“RFC 8615/8414-compliant” path resolution and new URL chain) (github.com)
[3] GitHub compare view for
jwks-did-resolver@0.3.0...@1.0.0showing only high-level commit metadata (no explicit breaking notes) (github.com)Citations:
Change bump type from
patchtominor—jwks-did-resolver1.1.0 contains a breaking change.The
jwks-did-resolverupgrade from 0.3.0 to 1.1.0 introduces a breaking change in how path-baseddid:jwksidentifiers are resolved. In 1.1.0, the resolver now uses RFC 8615/8414-compliant URLs (e.g.,https://example.com/tenant/jwks.json) instead of the old non-compliant paths (e.g.,https://example.com/tenant/.well-known/jwks.json). If servers or clients in the ecosystem are configured for the old resolution paths, this upgrade will cause silent failures.Semver requires that breaking changes trigger at least a
minorbump (notpatch). Additionally, update the changeset description to explicitly note the breaking change: "Upgrade jwks-did-resolver to 1.1.0 for RFC-compliant path-based DID resolution (breaking change: path resolution URLs have changed)".🤖 Prompt for AI Agents