@atproto/oauth-client 0.7.0-next.0 → 0.7.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 +16 -16
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
# @atproto/oauth-client
|
|
2
2
|
|
|
3
|
-
## 0.7.0
|
|
3
|
+
## 0.7.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
- [#4929](https://github.com/bluesky-social/atproto/pull/4929) [`
|
|
7
|
+
- [#4929](https://github.com/bluesky-social/atproto/pull/4929) [`f01c59f`](https://github.com/bluesky-social/atproto/commit/f01c59f5bd3f75fb8b47a9eecd4858b84033fb7c) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Drop support for Node.js 18 and 20. Node.js 22 is now the minimum supported version. Docker images now use Node.js 24.
|
|
8
8
|
|
|
9
|
-
- [#4943](https://github.com/bluesky-social/atproto/pull/4943) [`
|
|
9
|
+
- [#4943](https://github.com/bluesky-social/atproto/pull/4943) [`c459153`](https://github.com/bluesky-social/atproto/commit/c459153395a30ce89e050892c8fab7dc98e019b9) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Convert to pure ESM. All packages now ship `"type": "module"` with ES module output and Node16 module resolution.
|
|
10
10
|
|
|
11
11
|
Node.js 22's `require()` compatibility layer can still load these packages in CommonJS code.
|
|
12
12
|
|
|
13
|
-
- [
|
|
13
|
+
- [`affb50c`](https://github.com/bluesky-social/atproto/commit/affb50c040b497a12631df99a6310f8e78cab557) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** `RuntimeImplementation.digest(data, alg)` now takes `data: Uint8Array<ArrayBuffer>` rather than `Uint8Array`. This only affects consumers who implement `RuntimeImplementation` themselves rather than using one of the prebuilt impls (`@atproto/oauth-client-browser`, `@atproto/oauth-client-node`, `@atproto/oauth-client-expo`). Most callers can pass values through unchanged; in the rare case of a `SharedArrayBuffer`-backed `Uint8Array`, copy into a regular `Uint8Array` first.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
- [#4930](https://github.com/bluesky-social/atproto/pull/4930) [`908bece`](https://github.com/bluesky-social/atproto/commit/908bece169258bff5ad121e5eec157d6ded6f705) Thanks [@devinivy](https://github.com/devinivy)! - Build with TypeScript 6.0.
|
|
16
16
|
|
|
17
17
|
### Patch Changes
|
|
18
18
|
|
|
19
|
-
- Updated dependencies [[`
|
|
20
|
-
- @atproto/did@0.4.0
|
|
21
|
-
- @atproto/jwk@0.7.0
|
|
22
|
-
- @atproto/oauth-types@0.7.0
|
|
23
|
-
- @atproto/xrpc@0.8.0
|
|
24
|
-
- @atproto-labs/did-resolver@0.3.0
|
|
25
|
-
- @atproto-labs/fetch@0.3.0
|
|
26
|
-
- @atproto-labs/handle-resolver@0.4.0
|
|
27
|
-
- @atproto-labs/identity-resolver@0.4.0
|
|
28
|
-
- @atproto-labs/simple-store@0.4.0
|
|
29
|
-
- @atproto-labs/simple-store-memory@0.2.0
|
|
19
|
+
- Updated dependencies [[`f01c59f`](https://github.com/bluesky-social/atproto/commit/f01c59f5bd3f75fb8b47a9eecd4858b84033fb7c), [`c459153`](https://github.com/bluesky-social/atproto/commit/c459153395a30ce89e050892c8fab7dc98e019b9), [`908bece`](https://github.com/bluesky-social/atproto/commit/908bece169258bff5ad121e5eec157d6ded6f705)]:
|
|
20
|
+
- @atproto/did@0.4.0
|
|
21
|
+
- @atproto/jwk@0.7.0
|
|
22
|
+
- @atproto/oauth-types@0.7.0
|
|
23
|
+
- @atproto/xrpc@0.8.0
|
|
24
|
+
- @atproto-labs/did-resolver@0.3.0
|
|
25
|
+
- @atproto-labs/fetch@0.3.0
|
|
26
|
+
- @atproto-labs/handle-resolver@0.4.0
|
|
27
|
+
- @atproto-labs/identity-resolver@0.4.0
|
|
28
|
+
- @atproto-labs/simple-store@0.4.0
|
|
29
|
+
- @atproto-labs/simple-store-memory@0.2.0
|
|
30
30
|
|
|
31
31
|
## 0.6.1
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/oauth-client",
|
|
3
|
-
"version": "0.7.0
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=22"
|
|
6
6
|
},
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
"core-js": "^3",
|
|
30
30
|
"multiformats": "^13.0.0",
|
|
31
31
|
"zod": "^3.23.8",
|
|
32
|
-
"@atproto-labs/did-resolver": "^0.3.0
|
|
33
|
-
"@atproto-labs/
|
|
34
|
-
"@atproto-labs/
|
|
35
|
-
"@atproto-labs/
|
|
36
|
-
"@atproto-labs/
|
|
37
|
-
"@atproto
|
|
38
|
-
"@atproto/
|
|
39
|
-
"@atproto/
|
|
40
|
-
"@atproto/
|
|
41
|
-
"@atproto/
|
|
32
|
+
"@atproto-labs/did-resolver": "^0.3.0",
|
|
33
|
+
"@atproto-labs/fetch": "^0.3.0",
|
|
34
|
+
"@atproto-labs/handle-resolver": "^0.4.0",
|
|
35
|
+
"@atproto-labs/identity-resolver": "^0.4.0",
|
|
36
|
+
"@atproto-labs/simple-store": "^0.4.0",
|
|
37
|
+
"@atproto/jwk": "^0.7.0",
|
|
38
|
+
"@atproto/oauth-types": "^0.7.0",
|
|
39
|
+
"@atproto-labs/simple-store-memory": "^0.2.0",
|
|
40
|
+
"@atproto/xrpc": "^0.8.0",
|
|
41
|
+
"@atproto/did": "^0.4.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "^6.0.3"
|