@atproto/pds 0.5.8 → 0.5.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/pds",
3
- "version": "0.5.8",
3
+ "version": "0.5.10",
4
4
  "license": "MIT",
5
5
  "description": "Reference implementation of atproto Personal Data Server (PDS)",
6
6
  "keywords": [
@@ -36,32 +36,32 @@
36
36
  "nodemailer": "^6.8.0",
37
37
  "nodemailer-html-to-text": "^3.2.0",
38
38
  "p-queue": "^8.0.0",
39
- "pino": "^8.21.0",
40
- "pino-http": "^8.2.1",
39
+ "pino": "^10.3.1",
40
+ "pino-http": "^11.0.0",
41
41
  "typed-emitter": "^2.1.0",
42
42
  "uint8arrays": "^5.0.0",
43
43
  "undici": "^8.5.0",
44
44
  "zod": "^3.23.8",
45
- "@atproto-labs/simple-store": "^0.4.1",
46
- "@atproto-labs/simple-store-redis": "^0.1.1",
47
- "@atproto/common": "^0.6.3",
48
- "@atproto/aws": "^0.3.1",
49
- "@atproto-labs/fetch-node": "^0.3.2",
50
- "@atproto-labs/xrpc-utils": "^0.1.1",
51
- "@atproto/crypto": "^0.5.1",
52
- "@atproto-labs/simple-store-memory": "^0.2.1",
53
- "@atproto/did": "^0.5.1",
54
- "@atproto/identity": "^0.5.1",
55
- "@atproto/lex-data": "^0.1.2",
56
- "@atproto/lex-cbor": "^0.1.1",
57
- "@atproto/lex-json": "^0.1.1",
58
- "@atproto/oauth-provider": "^0.19.2",
59
- "@atproto/lex": "^0.1.4",
60
- "@atproto/repo": "^0.10.1",
61
- "@atproto/oauth-scopes": "^0.5.1",
62
- "@atproto/syntax": "^0.6.2",
63
- "@atproto/xrpc": "^0.8.1",
64
- "@atproto/xrpc-server": "^0.11.2"
45
+ "@atproto-labs/fetch-node": "^0.3.3",
46
+ "@atproto/common": "^0.6.4",
47
+ "@atproto/aws": "^0.3.2",
48
+ "@atproto/crypto": "^0.5.2",
49
+ "@atproto-labs/simple-store": "^0.4.2",
50
+ "@atproto/did": "^0.5.2",
51
+ "@atproto-labs/simple-store-memory": "^0.2.2",
52
+ "@atproto/identity": "^0.5.2",
53
+ "@atproto/lex": "^0.1.5",
54
+ "@atproto-labs/xrpc-utils": "^0.1.2",
55
+ "@atproto/lex-cbor": "^0.1.2",
56
+ "@atproto-labs/simple-store-redis": "^0.1.2",
57
+ "@atproto/lex-json": "^0.1.2",
58
+ "@atproto/oauth-provider": "^0.19.6",
59
+ "@atproto/oauth-scopes": "^0.5.2",
60
+ "@atproto/lex-data": "^0.1.3",
61
+ "@atproto/repo": "^0.10.2",
62
+ "@atproto/xrpc": "^0.8.2",
63
+ "@atproto/xrpc-server": "^0.11.3",
64
+ "@atproto/syntax": "^0.6.3"
65
65
  },
66
66
  "devDependencies": {
67
67
  "@did-plc/server": "^0.0.1",
@@ -78,10 +78,10 @@
78
78
  "puppeteer": "^23.11.1",
79
79
  "ts-node": "^10.8.2",
80
80
  "ws": "^8.12.0",
81
- "@atproto/api": "^0.20.19",
82
- "@atproto/bsky": "^0.0.247",
83
- "@atproto/lex-document": "^0.1.1",
84
- "@atproto/oauth-client-browser-example": "^0.1.1"
81
+ "@atproto/api": "^0.20.22",
82
+ "@atproto/bsky": "^0.0.249",
83
+ "@atproto/lex-document": "^0.1.2",
84
+ "@atproto/oauth-client-browser-example": "^0.1.2"
85
85
  },
86
86
  "type": "module",
87
87
  "exports": {
@@ -690,9 +690,13 @@ export class OAuthStore
690
690
  }
691
691
  }
692
692
 
693
- async deactivateAccount({ did }: DeactivateAccountData): Promise<Account> {
693
+ async deactivateAccount({
694
+ did,
695
+ deleteAfter,
696
+ }: DeactivateAccountData): Promise<Account> {
694
697
  const { account } = await this.accountManager.deactivateAccount(did, {
695
698
  deleteCredentials: true,
699
+ deleteAfter,
696
700
  })
697
701
 
698
702
  return this.buildAccount(account)
@@ -134,7 +134,7 @@ export class ActorStore {
134
134
  store.repo.blob.getBlobCids(),
135
135
  )
136
136
  await blobstore.deleteMany(cids).catch((err) => {
137
- blobStoreLogger.error('Failed to delete blobs', { did, cids, err })
137
+ blobStoreLogger.error({ did, cids, err }, 'Failed to delete blobs')
138
138
  })
139
139
  }
140
140