-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: require credential expiration date, use credential
id
in JWT (#…
…150) BREAKING CHANGE: require `expiresAt` property when creating a credential via the HTTP API The `expiresAt` field is now _required_ when creating a credential on `/v0/credentials`. Accepted values are ISO 8601 timestamps (UTC) such as `2024-12-09T16:51:29Z` or the value `"never"`. ### Migration guide - supply `expiresAt` for each request to `/v0/credentials` --------- Co-authored-by: Nander Stabel <[email protected]>
- Loading branch information
1 parent
8c8c246
commit 65c9653
Showing
16 changed files
with
207 additions
and
68 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 |
---|---|---|
|
@@ -29,6 +29,7 @@ oid4vp = { git = "https://[email protected]/impierce/openid4vc.git", rev = "7be5b72 | |
async-trait = "0.1" | ||
axum = { version = "0.7", features = ["tracing"] } | ||
base64 = "0.22" | ||
chrono = { version = "0.4", features = ["serde"] } | ||
cqrs-es = "0.4.2" | ||
futures = "0.3" | ||
identity_core = "1.3" | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.