@atproto/oauth-client-node 0.4.8 → 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 +22 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atproto/oauth-client-node
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - **BREAKING:** The session hooks exposed on `NodeOAuthClientOptions` have been renamed: `onUpdate` → `onSessionUpdated` and `onDelete` → `onSessionDeleted` (following the rename in `@atproto/oauth-client`).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a), [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a)]:
|
|
12
|
+
- @atproto/oauth-client@0.8.0
|
|
13
|
+
- @atproto-labs/simple-store@0.5.0
|
|
14
|
+
- @atproto-labs/did-resolver@0.3.6
|
|
15
|
+
- @atproto-labs/handle-resolver-node@0.2.7
|
|
16
|
+
|
|
17
|
+
## 0.4.9
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`ce386ee`](https://github.com/bluesky-social/atproto/commit/ce386eed324f813601db57f873fbb3b987492001)]:
|
|
22
|
+
- @atproto-labs/handle-resolver-node@0.2.6
|
|
23
|
+
- @atproto/oauth-client@0.7.11
|
|
24
|
+
|
|
3
25
|
## 0.4.8
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/oauth-client-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ATPROTO OAuth client for the NodeJS",
|
|
6
6
|
"keywords": [
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"node": ">=22"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
+
"@atproto-labs/handle-resolver-node": "^0.2.7",
|
|
35
|
+
"@atproto-labs/simple-store": "^0.5.0",
|
|
34
36
|
"@atproto/did": "^0.5.4",
|
|
35
|
-
"@atproto-labs/simple-store": "^0.4.4",
|
|
36
37
|
"@atproto/jwk": "^0.7.4",
|
|
37
|
-
"@atproto
|
|
38
|
-
"@atproto
|
|
38
|
+
"@atproto/jwk-webcrypto": "^0.3.4",
|
|
39
|
+
"@atproto/oauth-client": "^0.8.0",
|
|
39
40
|
"@atproto/jwk-jose": "^0.2.4",
|
|
40
|
-
"@atproto/
|
|
41
|
-
"@atproto/oauth-types": "^0.7.5"
|
|
42
|
-
"@atproto/jwk-webcrypto": "^0.3.4"
|
|
41
|
+
"@atproto-labs/did-resolver": "^0.3.6",
|
|
42
|
+
"@atproto/oauth-types": "^0.7.5"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsgo --build tsconfig.build.json"
|