@atproto/jwk 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/jwk.d.ts +272 -651
- package/dist/jwk.d.ts.map +1 -1
- package/dist/jwk.js +16 -10
- package/dist/jwk.js.map +1 -1
- package/dist/jwks.d.ts +201 -193
- package/dist/jwks.d.ts.map +1 -1
- package/dist/jwks.js +8 -0
- package/dist/jwks.js.map +1 -1
- package/dist/jwt.d.ts +60 -630
- package/dist/jwt.d.ts.map +1 -1
- package/dist/key.d.ts.map +1 -1
- package/dist/key.js +2 -0
- package/dist/key.js.map +1 -1
- package/package.json +1 -1
- package/src/jwk.ts +25 -20
- package/src/jwks.ts +8 -0
- package/src/key.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atproto/jwk
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#4101](https://github.com/bluesky-social/atproto/pull/4101) [`8a88e2c15`](https://github.com/bluesky-social/atproto/commit/8a88e2c15451f5e8239400eeb277ad31d178b8e6) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Prevent inconsistent use of `use` and `key_ops` in JWK
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#4101](https://github.com/bluesky-social/atproto/pull/4101) [`8a88e2c15`](https://github.com/bluesky-social/atproto/commit/8a88e2c15451f5e8239400eeb277ad31d178b8e6) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove requirement for JWK to define either `use` or `key_ops`.
|
|
12
|
+
|
|
3
13
|
## 0.4.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|