@atproto/pds 0.4.43 → 0.4.45

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atproto/pds
2
2
 
3
+ ## 0.4.45
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2676](https://github.com/bluesky-social/atproto/pull/2676) [`951a3df15`](https://github.com/bluesky-social/atproto/commit/951a3df15aa9c1f5b0a2b66cfb0e2eaf6198fe41) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Remove `app.bsky.feed.detach` record, to be replaced by `app.bsky.feed.postgate` record in a future release.
8
+
9
+ - Updated dependencies [[`951a3df15`](https://github.com/bluesky-social/atproto/commit/951a3df15aa9c1f5b0a2b66cfb0e2eaf6198fe41)]:
10
+ - @atproto/api@0.12.28
11
+
12
+ ## 0.4.44
13
+
14
+ ### Patch Changes
15
+
16
+ - [#2664](https://github.com/bluesky-social/atproto/pull/2664) [`ff803fd2b`](https://github.com/bluesky-social/atproto/commit/ff803fd2bfad92eec5f88ee9b347c174731ef4ec) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Adds `app.bsky.feed.detach` record lexicons.
17
+
18
+ - Updated dependencies [[`ff803fd2b`](https://github.com/bluesky-social/atproto/commit/ff803fd2bfad92eec5f88ee9b347c174731ef4ec)]:
19
+ - @atproto/api@0.12.27
20
+
3
21
  ## 0.4.43
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/pds",
3
- "version": "0.4.43",
3
+ "version": "0.4.45",
4
4
  "license": "MIT",
5
5
  "description": "Reference implementation of atproto Personal Data Server (PDS)",
6
6
  "keywords": [
@@ -44,7 +44,7 @@
44
44
  "uint8arrays": "3.0.0",
45
45
  "zod": "^3.23.8",
46
46
  "@atproto-labs/fetch-node": "0.1.0",
47
- "@atproto/api": "^0.12.26",
47
+ "@atproto/api": "^0.12.28",
48
48
  "@atproto/aws": "^0.2.1",
49
49
  "@atproto/common": "^0.4.1",
50
50
  "@atproto/crypto": "^0.4.0",
@@ -72,8 +72,8 @@
72
72
  "jest": "^28.1.2",
73
73
  "ts-node": "^10.8.2",
74
74
  "ws": "^8.12.0",
75
- "@atproto/api": "^0.12.26",
76
- "@atproto/bsky": "^0.0.70",
75
+ "@atproto/api": "^0.12.28",
76
+ "@atproto/bsky": "^0.0.72",
77
77
  "@atproto/lex-cli": "^0.4.0"
78
78
  },
79
79
  "scripts": {
@@ -85,7 +85,7 @@
85
85
  "test:sqlite": "jest",
86
86
  "test:sqlite-only": "jest --testPathIgnorePatterns /tests/proxied/*",
87
87
  "test:log": "tail -50 test.log | pino-pretty",
88
- "test:updateSnapshot": "jest --updateSnapshot",
88
+ "test:updateSnapshot": "../dev-infra/with-test-redis-and-db.sh jest --updateSnapshot",
89
89
  "migration:create": "ts-node ./bin/migration-create.ts"
90
90
  }
91
91
  }