@atproto/dev-env 0.5.0-next.0 → 0.5.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +42 -19
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,35 +1,58 @@
1
1
  # @atproto/dev-env
2
2
 
3
- ## 0.5.0-next.0
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`37c6fe6`](https://github.com/bluesky-social/atproto/commit/37c6fe6caeaf1b6ca598d6147e74c954c5a24854), [`4801600`](https://github.com/bluesky-social/atproto/commit/48016005155c9cecabf3fa9d5e9b3555e84e2dca), [`571582e`](https://github.com/bluesky-social/atproto/commit/571582ea9b1aea56938b8f24daaf49e197a987ef), [`e6c6343`](https://github.com/bluesky-social/atproto/commit/e6c6343bd3727455bd0da12300bb4929a944e4f1), [`8eb0662`](https://github.com/bluesky-social/atproto/commit/8eb0662ac38a915c7a0c669e739fc8afc3ed7e7b), [`25e0233`](https://github.com/bluesky-social/atproto/commit/25e02339a383740e762c9a9633a701d2fb0cab86), [`53b1e07`](https://github.com/bluesky-social/atproto/commit/53b1e0731ee0d13c350dd96cbcab88447eaad441)]:
8
+ - @atproto/api@0.20.1
9
+ - @atproto/sync@0.3.1
10
+ - @atproto/bsync@0.0.27
11
+ - @atproto/bsky@0.0.232
12
+ - @atproto/pds@0.4.225
13
+ - @atproto/ozone@0.1.176
14
+ - @atproto/lex@0.1.1
15
+
16
+ ## 0.5.0
4
17
 
5
18
  ### Minor Changes
6
19
 
7
- - [#4929](https://github.com/bluesky-social/atproto/pull/4929) [`bb7491c`](https://github.com/bluesky-social/atproto/commit/bb7491c29e06181e1d2f8cf6eb454f9bb8ab961b) 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.
20
+ - [#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
21
 
9
- - [#4943](https://github.com/bluesky-social/atproto/pull/4943) [`07ae5d4`](https://github.com/bluesky-social/atproto/commit/07ae5d4452df51e045e0239da7a04cf0bc154028) 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.
22
+ - [#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
23
 
11
24
  Node.js 22's `require()` compatibility layer can still load these packages in CommonJS code.
12
25
 
13
- - [#4930](https://github.com/bluesky-social/atproto/pull/4930) [`042df15`](https://github.com/bluesky-social/atproto/commit/042df15087c0e62cd1e715fcbf58852fab875af9) Thanks [@devinivy](https://github.com/devinivy)! - Build with TypeScript 6.0. Emitted `.d.ts` files now use TypeScript 6's stricter `Uint8Array<ArrayBuffer>` typing in places where Web/Node APIs require buffer-backed (not shared-memory) byte arrays. Consumers compiling against these types on older TypeScript should see no runtime impact, but may need to widen or cast in spots that previously relied on `Uint8Array` defaulting to `<ArrayBufferLike>`.
26
+ - [#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.
27
+
28
+ ### Patch Changes
29
+
30
+ - 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)]:
31
+ - @atproto/bsky@0.0.231
32
+ - @atproto/bsync@0.0.26
33
+ - @atproto/ozone@0.1.175
34
+ - @atproto/pds@0.4.224
35
+ - @atproto/api@0.20.0
36
+ - @atproto/common-web@0.5.0
37
+ - @atproto/crypto@0.5.0
38
+ - @atproto/identity@0.5.0
39
+ - @atproto/lex@0.1.0
40
+ - @atproto/lexicon@0.7.0
41
+ - @atproto/sync@0.3.0
42
+ - @atproto/syntax@0.6.0
43
+ - @atproto/xrpc-server@0.11.0
14
44
 
15
- Internal: tsconfig `moduleResolution: "node"` is silenced via `ignoreDeprecations: "6.0"` for now; the proper migration to `node16`/`bundler` resolution is deferred.
45
+ ## 0.4.9
16
46
 
17
47
  ### Patch Changes
18
48
 
19
- - Updated dependencies [[`bb7491c`](https://github.com/bluesky-social/atproto/commit/bb7491c29e06181e1d2f8cf6eb454f9bb8ab961b), [`07ae5d4`](https://github.com/bluesky-social/atproto/commit/07ae5d4452df51e045e0239da7a04cf0bc154028), [`042df15`](https://github.com/bluesky-social/atproto/commit/042df15087c0e62cd1e715fcbf58852fab875af9)]:
20
- - @atproto/bsky@0.0.230-next.0
21
- - @atproto/bsync@0.0.26-next.0
22
- - @atproto/ozone@0.1.175-next.0
23
- - @atproto/pds@0.4.223-next.0
24
- - @atproto/api@0.20.0-next.0
25
- - @atproto/common-web@0.5.0-next.0
26
- - @atproto/crypto@0.5.0-next.0
27
- - @atproto/identity@0.5.0-next.0
28
- - @atproto/lex@0.1.0-next.0
29
- - @atproto/lexicon@0.7.0-next.0
30
- - @atproto/sync@0.3.0-next.0
31
- - @atproto/syntax@0.6.0-next.0
32
- - @atproto/xrpc-server@0.11.0-next.0
49
+ - Updated dependencies [[`cb13878`](https://github.com/bluesky-social/atproto/commit/cb1387899f0b296759ebdf5b8985b6b573091a9a), [`ea4184b`](https://github.com/bluesky-social/atproto/commit/ea4184b9beb9821d806a9540223dab55c2628184), [`04d727c`](https://github.com/bluesky-social/atproto/commit/04d727c69a2683ea15eff70d9d0bb6aa25452778), [`38bc2fa`](https://github.com/bluesky-social/atproto/commit/38bc2faa142d42f95c5b89b5a10bf8ed607fe39f)]:
50
+ - @atproto/api@0.19.19
51
+ - @atproto/pds@0.4.223
52
+ - @atproto/lex@0.0.27
53
+ - @atproto/xrpc-server@0.10.22
54
+ - @atproto/bsky@0.0.230
55
+ - @atproto/sync@0.2.4
33
56
 
34
57
  ## 0.4.8
35
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/dev-env",
3
- "version": "0.5.0-next.0",
3
+ "version": "0.5.1",
4
4
  "license": "MIT",
5
5
  "description": "Local development environment helper for atproto development",
6
6
  "keywords": [
@@ -25,19 +25,19 @@
25
25
  "multiformats": "^13.0.0",
26
26
  "uint8arrays": "^5.0.0",
27
27
  "undici": "^6.14.1",
28
- "@atproto/api": "^0.20.0-next.0",
29
- "@atproto/bsky": "^0.0.230-next.0",
30
- "@atproto/bsync": "^0.0.26-next.0",
31
- "@atproto/common-web": "^0.5.0-next.0",
32
- "@atproto/crypto": "^0.5.0-next.0",
33
- "@atproto/identity": "^0.5.0-next.0",
34
- "@atproto/lex": "^0.1.0-next.0",
35
- "@atproto/ozone": "^0.1.175-next.0",
36
- "@atproto/lexicon": "^0.7.0-next.0",
37
- "@atproto/pds": "^0.4.223-next.0",
38
- "@atproto/sync": "^0.3.0-next.0",
39
- "@atproto/syntax": "^0.6.0-next.0",
40
- "@atproto/xrpc-server": "^0.11.0-next.0"
28
+ "@atproto/api": "^0.20.1",
29
+ "@atproto/bsky": "^0.0.232",
30
+ "@atproto/bsync": "^0.0.27",
31
+ "@atproto/common-web": "^0.5.0",
32
+ "@atproto/crypto": "^0.5.0",
33
+ "@atproto/identity": "^0.5.0",
34
+ "@atproto/lex": "^0.1.1",
35
+ "@atproto/lexicon": "^0.7.1",
36
+ "@atproto/ozone": "^0.1.176",
37
+ "@atproto/pds": "^0.4.225",
38
+ "@atproto/sync": "^0.3.1",
39
+ "@atproto/syntax": "^0.6.1",
40
+ "@atproto/xrpc-server": "^0.11.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/express": "^4.17.13",