Skip to content
Merged
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
23 changes: 23 additions & 0 deletions packages/oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 0.25.0-keycardai-oauth (2026-08-29)


- feat(keycardai-oauth)!: multi-resource web-app flow (#245)
- * feat(keycardai-oauth)!: multi-resource web-app flow
- begin_authorization takes resources: list[str] | None and passes it straight
through to the authorize-URL builder, so several RFC 8707 resource
parameters can be requested in one authorization. AuthorizationRedirect
carries the resources so apps persist them with state and the verifier.
- complete_authorization no longer sends a resource parameter on the token
request: the authorization server derives the audience from the code, so
the parameter never affected redemption.
- resource_url survives one release as a deprecated keyword on both calls
(mapped to resources=[resource_url] on begin, a no-op on complete), and
raises when combined with resources.
- * feat(keycardai-oauth)!: remove resource_url outright, no deprecation window
- The web-app flow shipped days ago with one known consumer, so the
deprecation shims bought nothing. begin_authorization takes resources
only; complete_authorization takes no resource in any form.
- ---------
- Co-authored-by: devin-ai-keycard <devin-ai@keycard.ai>
Co-authored-by: GitHub Action <action@github.com>

## 0.24.0-keycardai-oauth (2026-08-27)


Expand Down
2 changes: 1 addition & 1 deletion packages/oauth/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ dev = [

[tool.commitizen]
name = "cz_customize"
version = "0.24.0"
version = "0.25.0"
tag_format = "${version}-keycardai-oauth"
ignored_tag_formats = ["${version}-*"]
update_changelog_on_bump = true
Expand Down
Loading