@atproto/oauth-client 0.0.0-spaces-alpha-20260818021221

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 (112) hide show
  1. package/CHANGELOG.md +810 -0
  2. package/LICENSE.txt +7 -0
  3. package/README.md +387 -0
  4. package/dist/constants.d.ts +5 -0
  5. package/dist/constants.d.ts.map +1 -0
  6. package/dist/constants.js +5 -0
  7. package/dist/constants.js.map +1 -0
  8. package/dist/errors/auth-method-unsatisfiable-error.d.ts +3 -0
  9. package/dist/errors/auth-method-unsatisfiable-error.d.ts.map +1 -0
  10. package/dist/errors/auth-method-unsatisfiable-error.js +3 -0
  11. package/dist/errors/auth-method-unsatisfiable-error.js.map +1 -0
  12. package/dist/errors/token-invalid-error.d.ts +7 -0
  13. package/dist/errors/token-invalid-error.d.ts.map +1 -0
  14. package/dist/errors/token-invalid-error.js +7 -0
  15. package/dist/errors/token-invalid-error.js.map +1 -0
  16. package/dist/errors/token-refresh-error.d.ts +7 -0
  17. package/dist/errors/token-refresh-error.d.ts.map +1 -0
  18. package/dist/errors/token-refresh-error.js +7 -0
  19. package/dist/errors/token-refresh-error.js.map +1 -0
  20. package/dist/errors/token-revoked-error.d.ts +7 -0
  21. package/dist/errors/token-revoked-error.d.ts.map +1 -0
  22. package/dist/errors/token-revoked-error.js +7 -0
  23. package/dist/errors/token-revoked-error.js.map +1 -0
  24. package/dist/fetch-dpop.d.ts +20 -0
  25. package/dist/fetch-dpop.d.ts.map +1 -0
  26. package/dist/fetch-dpop.js +176 -0
  27. package/dist/fetch-dpop.js.map +1 -0
  28. package/dist/identity-resolver.d.ts +2 -0
  29. package/dist/identity-resolver.d.ts.map +1 -0
  30. package/dist/identity-resolver.js +21 -0
  31. package/dist/identity-resolver.js.map +1 -0
  32. package/dist/index.d.ts +25 -0
  33. package/dist/index.d.ts.map +1 -0
  34. package/dist/index.js +25 -0
  35. package/dist/index.js.map +1 -0
  36. package/dist/lock.d.ts +3 -0
  37. package/dist/lock.d.ts.map +1 -0
  38. package/dist/lock.js +29 -0
  39. package/dist/lock.js.map +1 -0
  40. package/dist/oauth-authorization-server-metadata-resolver.d.ts +25 -0
  41. package/dist/oauth-authorization-server-metadata-resolver.d.ts.map +1 -0
  42. package/dist/oauth-authorization-server-metadata-resolver.js +54 -0
  43. package/dist/oauth-authorization-server-metadata-resolver.js.map +1 -0
  44. package/dist/oauth-callback-error.d.ts +7 -0
  45. package/dist/oauth-callback-error.d.ts.map +1 -0
  46. package/dist/oauth-callback-error.js +14 -0
  47. package/dist/oauth-callback-error.js.map +1 -0
  48. package/dist/oauth-client-auth.d.ts +23 -0
  49. package/dist/oauth-client-auth.d.ts.map +1 -0
  50. package/dist/oauth-client-auth.js +126 -0
  51. package/dist/oauth-client-auth.js.map +1 -0
  52. package/dist/oauth-client.d.ts +338 -0
  53. package/dist/oauth-client.d.ts.map +1 -0
  54. package/dist/oauth-client.js +274 -0
  55. package/dist/oauth-client.js.map +1 -0
  56. package/dist/oauth-protected-resource-metadata-resolver.d.ts +25 -0
  57. package/dist/oauth-protected-resource-metadata-resolver.d.ts.map +1 -0
  58. package/dist/oauth-protected-resource-metadata-resolver.js +54 -0
  59. package/dist/oauth-protected-resource-metadata-resolver.js.map +1 -0
  60. package/dist/oauth-resolver-error.d.ts +7 -0
  61. package/dist/oauth-resolver-error.d.ts.map +1 -0
  62. package/dist/oauth-resolver-error.js +19 -0
  63. package/dist/oauth-resolver-error.js.map +1 -0
  64. package/dist/oauth-resolver.d.ts +73 -0
  65. package/dist/oauth-resolver.d.ts.map +1 -0
  66. package/dist/oauth-resolver.js +99 -0
  67. package/dist/oauth-resolver.js.map +1 -0
  68. package/dist/oauth-response-error.d.ts +11 -0
  69. package/dist/oauth-response-error.d.ts.map +1 -0
  70. package/dist/oauth-response-error.js +22 -0
  71. package/dist/oauth-response-error.js.map +1 -0
  72. package/dist/oauth-server-agent.d.ts +55 -0
  73. package/dist/oauth-server-agent.d.ts.map +1 -0
  74. package/dist/oauth-server-agent.js +189 -0
  75. package/dist/oauth-server-agent.js.map +1 -0
  76. package/dist/oauth-server-factory.d.ts +33 -0
  77. package/dist/oauth-server-factory.d.ts.map +1 -0
  78. package/dist/oauth-server-factory.js +31 -0
  79. package/dist/oauth-server-factory.js.map +1 -0
  80. package/dist/oauth-session.d.ts +34 -0
  81. package/dist/oauth-session.d.ts.map +1 -0
  82. package/dist/oauth-session.js +120 -0
  83. package/dist/oauth-session.js.map +1 -0
  84. package/dist/runtime-implementation.d.ts +17 -0
  85. package/dist/runtime-implementation.d.ts.map +1 -0
  86. package/dist/runtime-implementation.js +2 -0
  87. package/dist/runtime-implementation.js.map +1 -0
  88. package/dist/runtime.d.ts +26 -0
  89. package/dist/runtime.d.ts.map +1 -0
  90. package/dist/runtime.js +100 -0
  91. package/dist/runtime.js.map +1 -0
  92. package/dist/session-getter.d.ts +44 -0
  93. package/dist/session-getter.d.ts.map +1 -0
  94. package/dist/session-getter.js +265 -0
  95. package/dist/session-getter.js.map +1 -0
  96. package/dist/state-store.d.ts +23 -0
  97. package/dist/state-store.d.ts.map +1 -0
  98. package/dist/state-store.js +2 -0
  99. package/dist/state-store.js.map +1 -0
  100. package/dist/types.d.ts +430 -0
  101. package/dist/types.d.ts.map +1 -0
  102. package/dist/types.js +9 -0
  103. package/dist/types.js.map +1 -0
  104. package/dist/util.d.ts +20 -0
  105. package/dist/util.d.ts.map +1 -0
  106. package/dist/util.js +68 -0
  107. package/dist/util.js.map +1 -0
  108. package/dist/validate-client-metadata.d.ts +5 -0
  109. package/dist/validate-client-metadata.d.ts.map +1 -0
  110. package/dist/validate-client-metadata.js +76 -0
  111. package/dist/validate-client-metadata.js.map +1 -0
  112. package/package.json +55 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,810 @@
1
+ # @atproto/oauth-client
2
+
3
+ ## 0.0.0-spaces-alpha-20260818021221
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atproto/xrpc@0.0.0-spaces-alpha-20260818021221
9
+
10
+ ## 0.8.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - @atproto/xrpc@0.8.10
16
+
17
+ ## 0.8.2
18
+
19
+ ### Patch Changes
20
+
21
+ - [#5295](https://github.com/bluesky-social/atproto/pull/5295) [`6a3d607`](https://github.com/bluesky-social/atproto/commit/6a3d6073cb66c527b5b109242049c85c36b9658c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Update vitest dependencies
22
+
23
+ - Updated dependencies [[`6a3d607`](https://github.com/bluesky-social/atproto/commit/6a3d6073cb66c527b5b109242049c85c36b9658c)]:
24
+ - @atproto-labs/handle-resolver@0.4.8
25
+ - @atproto-labs/simple-store@0.5.1
26
+ - @atproto-labs/identity-resolver@0.4.7
27
+ - @atproto-labs/did-resolver@0.3.7
28
+ - @atproto-labs/simple-store-memory@0.2.6
29
+ - @atproto/xrpc@0.8.9
30
+
31
+ ## 0.8.1
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies []:
36
+ - @atproto/xrpc@0.8.8
37
+
38
+ ## 0.8.0
39
+
40
+ ### Minor Changes
41
+
42
+ - [#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:** Rename `SessionHooks` into `SessionGetterOptions`. `onUpdate` and `onDelete` hooks are now named `onSessionUpdated` and `onSessionDeleted`, respectively.
43
+
44
+ ### Patch Changes
45
+
46
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - `SessionGetter`'s private properties are now really private.
47
+
48
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove implicit `any` types in internal utilities (`runtime`, `oauth-response-error`, `fetch-dpop`) so the package type-checks under `noImplicitAny`. No runtime behavior change.
49
+
50
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add `AtprotoDid` as part of exported types
51
+
52
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The `SessionGetter` now propagates the `AbortSignal` when fetching the Authorization Server metadata, allowing it to abort the request earlier.
53
+
54
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Throw an `AggregateError` containing every error that occurred while saving session data from the `SessionGetter` to the `SessionStore`.
55
+
56
+ - [#5266](https://github.com/bluesky-social/atproto/pull/5266) [`f136380`](https://github.com/bluesky-social/atproto/commit/f136380964a8ea52ef031a9732d3d1f1f1ab0c4a) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Errors thrown by the metadata caches (authorization server & protected resource) are now logged (previously they were silently ignored on read) while continuing to degrade to a cache miss and a refetch. A new `onCacheError` config option on both metadata resolvers allows overriding how these errors are handled.
57
+
58
+ - 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)]:
59
+ - @atproto-labs/handle-resolver@0.4.7
60
+ - @atproto-labs/simple-store@0.5.0
61
+ - @atproto-labs/fetch@0.3.5
62
+ - @atproto-labs/did-resolver@0.3.6
63
+ - @atproto-labs/identity-resolver@0.4.6
64
+ - @atproto-labs/simple-store-memory@0.2.5
65
+ - @atproto/xrpc@0.8.7
66
+
67
+ ## 0.7.11
68
+
69
+ ### Patch Changes
70
+
71
+ - Updated dependencies [[`ce386ee`](https://github.com/bluesky-social/atproto/commit/ce386eed324f813601db57f873fbb3b987492001)]:
72
+ - @atproto-labs/handle-resolver@0.4.6
73
+ - @atproto-labs/identity-resolver@0.4.5
74
+
75
+ ## 0.7.10
76
+
77
+ ### Patch Changes
78
+
79
+ - Updated dependencies []:
80
+ - @atproto/xrpc@0.8.6
81
+
82
+ ## 0.7.9
83
+
84
+ ### Patch Changes
85
+
86
+ - [#5197](https://github.com/bluesky-social/atproto/pull/5197) [`a0c49d9`](https://github.com/bluesky-social/atproto/commit/a0c49d9e8bc685c5a747a8d3b2775c73c63fdb6f) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Rewrite import statements to be compatible with TypeScript's `verbatimModuleSyntax` config.
87
+
88
+ - Updated dependencies [[`a0c49d9`](https://github.com/bluesky-social/atproto/commit/a0c49d9e8bc685c5a747a8d3b2775c73c63fdb6f)]:
89
+ - @atproto-labs/simple-store-memory@0.2.4
90
+ - @atproto-labs/identity-resolver@0.4.4
91
+ - @atproto-labs/handle-resolver@0.4.5
92
+ - @atproto-labs/did-resolver@0.3.5
93
+ - @atproto-labs/simple-store@0.4.4
94
+ - @atproto/oauth-types@0.7.5
95
+ - @atproto-labs/fetch@0.3.4
96
+ - @atproto/jwk@0.7.4
97
+ - @atproto/xrpc@0.8.5
98
+ - @atproto/did@0.5.4
99
+
100
+ ## 0.7.8
101
+
102
+ ### Patch Changes
103
+
104
+ - Updated dependencies []:
105
+ - @atproto/xrpc@0.8.4
106
+
107
+ ## 0.7.7
108
+
109
+ ### Patch Changes
110
+
111
+ - [#5099](https://github.com/bluesky-social/atproto/pull/5099) [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Update TypeScript build to rely on references to composite internal projects
112
+
113
+ - [#5099](https://github.com/bluesky-social/atproto/pull/5099) [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Bundle only necessary files in the NPM tarball, including the `CHANGELOG.md` and `README.md` files (if present).
114
+
115
+ - Updated dependencies [[`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07), [`b43ec31`](https://github.com/bluesky-social/atproto/commit/b43ec31f247f4461725b01226885f88bd430ca07)]:
116
+ - @atproto-labs/simple-store-memory@0.2.3
117
+ - @atproto-labs/identity-resolver@0.4.3
118
+ - @atproto-labs/handle-resolver@0.4.4
119
+ - @atproto-labs/did-resolver@0.3.4
120
+ - @atproto-labs/simple-store@0.4.3
121
+ - @atproto/oauth-types@0.7.4
122
+ - @atproto-labs/fetch@0.3.3
123
+ - @atproto/jwk@0.7.3
124
+ - @atproto/xrpc@0.8.3
125
+ - @atproto/did@0.5.3
126
+
127
+ ## 0.7.6
128
+
129
+ ### Patch Changes
130
+
131
+ - [#5157](https://github.com/bluesky-social/atproto/pull/5157) [`8bcba69`](https://github.com/bluesky-social/atproto/commit/8bcba69cf1f02d09e07b51ce091918312029df63) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Minor syntax fix in tests
132
+
133
+ ## 0.7.5
134
+
135
+ ### Patch Changes
136
+
137
+ - [#5151](https://github.com/bluesky-social/atproto/pull/5151) [`a51c45d`](https://github.com/bluesky-social/atproto/commit/a51c45d38f6bd7b8765f640e564cf921d52162e7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Update dependencies
138
+
139
+ - Updated dependencies [[`60e9b83`](https://github.com/bluesky-social/atproto/commit/60e9b8391f212c274b1f21991ee2a3a2d14f2f88), [`60e9b83`](https://github.com/bluesky-social/atproto/commit/60e9b8391f212c274b1f21991ee2a3a2d14f2f88), [`a51c45d`](https://github.com/bluesky-social/atproto/commit/a51c45d38f6bd7b8765f640e564cf921d52162e7)]:
140
+ - @atproto-labs/fetch@0.3.2
141
+ - @atproto/did@0.5.2
142
+ - @atproto-labs/did-resolver@0.3.3
143
+ - @atproto-labs/handle-resolver@0.4.3
144
+ - @atproto-labs/identity-resolver@0.4.2
145
+ - @atproto-labs/simple-store@0.4.2
146
+ - @atproto-labs/simple-store-memory@0.2.2
147
+ - @atproto/jwk@0.7.2
148
+ - @atproto/oauth-types@0.7.3
149
+ - @atproto/xrpc@0.8.2
150
+
151
+ ## 0.7.4
152
+
153
+ ### Patch Changes
154
+
155
+ - [#5101](https://github.com/bluesky-social/atproto/pull/5101) [`9cc6b33`](https://github.com/bluesky-social/atproto/commit/9cc6b3369878fe46554727f2ae9342376f2e41b6) Thanks [@ryanda9910](https://github.com/ryanda9910)! - Avoid relying on `AbortSignal.timeout`, which is not implemented in every runtime this package targets (notably React Native / Expo) and caused `TypeError: AbortSignal.timeout is not a function` during the OAuth login flow. A `timeoutSignal` helper now feature-detects the native static method and falls back to an `AbortController` + `setTimeout` when it is missing.
156
+
157
+ ## 0.7.3
158
+
159
+ ### Patch Changes
160
+
161
+ - [#4967](https://github.com/bluesky-social/atproto/pull/4967) [`9fc720c`](https://github.com/bluesky-social/atproto/commit/9fc720ce75f3ee88a5e48a9be919b07c7647f6f5) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use TypeScript 7 to build package
162
+
163
+ - Updated dependencies [[`9fc720c`](https://github.com/bluesky-social/atproto/commit/9fc720ce75f3ee88a5e48a9be919b07c7647f6f5)]:
164
+ - @atproto-labs/simple-store-memory@0.2.1
165
+ - @atproto-labs/identity-resolver@0.4.1
166
+ - @atproto-labs/handle-resolver@0.4.2
167
+ - @atproto-labs/did-resolver@0.3.2
168
+ - @atproto-labs/simple-store@0.4.1
169
+ - @atproto/oauth-types@0.7.2
170
+ - @atproto-labs/fetch@0.3.1
171
+ - @atproto/jwk@0.7.1
172
+ - @atproto/xrpc@0.8.1
173
+ - @atproto/did@0.5.1
174
+
175
+ ## 0.7.2
176
+
177
+ ### Patch Changes
178
+
179
+ - Updated dependencies [[`622d365`](https://github.com/bluesky-social/atproto/commit/622d365aeb240133f40763a3b1c43981112837fc)]:
180
+ - @atproto/did@0.5.0
181
+ - @atproto-labs/did-resolver@0.3.1
182
+ - @atproto-labs/handle-resolver@0.4.1
183
+ - @atproto/oauth-types@0.7.1
184
+
185
+ ## 0.7.1
186
+
187
+ ### Patch Changes
188
+
189
+ - [#4954](https://github.com/bluesky-social/atproto/pull/4954) [`e6c6343`](https://github.com/bluesky-social/atproto/commit/e6c6343bd3727455bd0da12300bb4929a944e4f1) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Allow custom `RuntimeImplementation` to return a `SharedArrayBuffer`-backed `Uint8Array` from the `digest()` method. Input to this function will always be `Uint8Array<ArrayBuffer>`.
190
+
191
+ ## 0.7.0
192
+
193
+ ### Minor Changes
194
+
195
+ - [#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.
196
+
197
+ - [#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.
198
+
199
+ Node.js 22's `require()` compatibility layer can still load these packages in CommonJS code.
200
+
201
+ - [`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.
202
+
203
+ - [#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.
204
+
205
+ ### Patch Changes
206
+
207
+ - 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)]:
208
+ - @atproto/did@0.4.0
209
+ - @atproto/jwk@0.7.0
210
+ - @atproto/oauth-types@0.7.0
211
+ - @atproto/xrpc@0.8.0
212
+ - @atproto-labs/did-resolver@0.3.0
213
+ - @atproto-labs/fetch@0.3.0
214
+ - @atproto-labs/handle-resolver@0.4.0
215
+ - @atproto-labs/identity-resolver@0.4.0
216
+ - @atproto-labs/simple-store@0.4.0
217
+ - @atproto-labs/simple-store-memory@0.2.0
218
+
219
+ ## 0.6.1
220
+
221
+ ### Patch Changes
222
+
223
+ - [#4896](https://github.com/bluesky-social/atproto/pull/4896) [`087515e`](https://github.com/bluesky-social/atproto/commit/087515e6a414aedbf0b7bd36139ed020dc7e0dae) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Allow using an oauth provider (e.g. Entryway) instead of a PDS url to initiate an OAuth sign-in/sign-up
224
+
225
+ ## 0.6.0
226
+
227
+ ### Minor Changes
228
+
229
+ - [#4642](https://github.com/bluesky-social/atproto/pull/4642) [`a23d132`](https://github.com/bluesky-social/atproto/commit/a23d13268ccfd51a54d21256469b8cb43f7b07df) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove support for legacy session data that does not contain `authMethod`.
230
+
231
+ - [#4642](https://github.com/bluesky-social/atproto/pull/4642) [`a23d132`](https://github.com/bluesky-social/atproto/commit/a23d13268ccfd51a54d21256469b8cb43f7b07df) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove dependency on `EventTarget` (missing in some environments)
232
+
233
+ ### Patch Changes
234
+
235
+ - [#4642](https://github.com/bluesky-social/atproto/pull/4642) [`a23d132`](https://github.com/bluesky-social/atproto/commit/a23d13268ccfd51a54d21256469b8cb43f7b07df) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Delete any pre-existing OAuth session when a new one is created (for a given `sub`)
236
+
237
+ - [#4642](https://github.com/bluesky-social/atproto/pull/4642) [`a23d132`](https://github.com/bluesky-social/atproto/commit/a23d13268ccfd51a54d21256469b8cb43f7b07df) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Avoid throwing errors when trying to revoke a missing or invalid session
238
+
239
+ ## 0.5.14
240
+
241
+ ### Patch Changes
242
+
243
+ - Updated dependencies [[`d54d707`](https://github.com/bluesky-social/atproto/commit/d54d7077eb32041e1f61c312efa1dd0d768c774e), [`d54d707`](https://github.com/bluesky-social/atproto/commit/d54d7077eb32041e1f61c312efa1dd0d768c774e)]:
244
+ - @atproto/did@0.3.0
245
+ - @atproto-labs/did-resolver@0.2.6
246
+ - @atproto-labs/handle-resolver@0.3.6
247
+ - @atproto/oauth-types@0.6.2
248
+ - @atproto-labs/identity-resolver@0.3.6
249
+
250
+ ## 0.5.13
251
+
252
+ ### Patch Changes
253
+
254
+ - Updated dependencies [[`2f78893`](https://github.com/bluesky-social/atproto/commit/2f78893ace3bbf14d4bac36837820ddb46658c98), [`2f78893`](https://github.com/bluesky-social/atproto/commit/2f78893ace3bbf14d4bac36837820ddb46658c98)]:
255
+ - @atproto-labs/identity-resolver@0.3.5
256
+ - @atproto/did@0.2.4
257
+ - @atproto-labs/did-resolver@0.2.5
258
+ - @atproto-labs/handle-resolver@0.3.5
259
+ - @atproto/oauth-types@0.6.1
260
+
261
+ ## 0.5.12
262
+
263
+ ### Patch Changes
264
+
265
+ - Updated dependencies [[`95ef3c2`](https://github.com/bluesky-social/atproto/commit/95ef3c24e8072e9d49412950b033cb8607764ee0), [`5d8e7a6`](https://github.com/bluesky-social/atproto/commit/5d8e7a6588fc9e57e15d83d47bb45103205e3e41)]:
266
+ - @atproto/oauth-types@0.6.0
267
+
268
+ ## 0.5.11
269
+
270
+ ### Patch Changes
271
+
272
+ - Updated dependencies []:
273
+ - @atproto/xrpc@0.7.7
274
+
275
+ ## 0.5.10
276
+
277
+ ### Patch Changes
278
+
279
+ - Updated dependencies [[`8012627`](https://github.com/bluesky-social/atproto/commit/8012627a1226cb2f1c753385ad2497b6b43ffd2e), [`d396de0`](https://github.com/bluesky-social/atproto/commit/d396de016d1d55d08cfad1dabd3ffd9eaeea76ea)]:
280
+ - @atproto/did@0.2.3
281
+ - @atproto-labs/did-resolver@0.2.4
282
+ - @atproto-labs/handle-resolver@0.3.4
283
+ - @atproto/oauth-types@0.5.2
284
+ - @atproto-labs/identity-resolver@0.3.4
285
+
286
+ ## 0.5.9
287
+
288
+ ### Patch Changes
289
+
290
+ - Updated dependencies [[`261968fd6`](https://github.com/bluesky-social/atproto/commit/261968fd65014ded613e2bf085d61a7864b8fba7), [`261968fd6`](https://github.com/bluesky-social/atproto/commit/261968fd65014ded613e2bf085d61a7864b8fba7), [`261968fd6`](https://github.com/bluesky-social/atproto/commit/261968fd65014ded613e2bf085d61a7864b8fba7), [`261968fd6`](https://github.com/bluesky-social/atproto/commit/261968fd65014ded613e2bf085d61a7864b8fba7)]:
291
+ - @atproto-labs/identity-resolver@0.3.3
292
+ - @atproto-labs/handle-resolver@0.3.3
293
+ - @atproto-labs/did-resolver@0.2.3
294
+ - @atproto/did@0.2.2
295
+ - @atproto/oauth-types@0.5.1
296
+ - @atproto/xrpc@0.7.6
297
+
298
+ ## 0.5.8
299
+
300
+ ### Patch Changes
301
+
302
+ - Updated dependencies [[`8ff5ec4ca`](https://github.com/bluesky-social/atproto/commit/8ff5ec4caa9a1f5c1e453a416ba2af22d1ee4f58), [`8ff5ec4ca`](https://github.com/bluesky-social/atproto/commit/8ff5ec4caa9a1f5c1e453a416ba2af22d1ee4f58), [`8ff5ec4ca`](https://github.com/bluesky-social/atproto/commit/8ff5ec4caa9a1f5c1e453a416ba2af22d1ee4f58)]:
303
+ - @atproto/oauth-types@0.5.0
304
+
305
+ ## 0.5.7
306
+
307
+ ### Patch Changes
308
+
309
+ - [#4220](https://github.com/bluesky-social/atproto/pull/4220) [`fefe70126`](https://github.com/bluesky-social/atproto/commit/fefe70126d0ea82507ac750f669b3478290f186b) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use `core-js` to polyfill `Symbol.dispose`
310
+
311
+ - [#4216](https://github.com/bluesky-social/atproto/pull/4216) [`09439d7d6`](https://github.com/bluesky-social/atproto/commit/09439d7d688294ad1a0c78a74b901ba2f7c5f4c3) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use `AbortSignal.timeout` to generate timeout based signals
312
+
313
+ - Updated dependencies [[`09439d7d6`](https://github.com/bluesky-social/atproto/commit/09439d7d688294ad1a0c78a74b901ba2f7c5f4c3), [`f560cf226`](https://github.com/bluesky-social/atproto/commit/f560cf2266715666ce5852ab095fcfb3876ae815), [`fefe70126`](https://github.com/bluesky-social/atproto/commit/fefe70126d0ea82507ac750f669b3478290f186b), [`f560cf226`](https://github.com/bluesky-social/atproto/commit/f560cf2266715666ce5852ab095fcfb3876ae815), [`f560cf226`](https://github.com/bluesky-social/atproto/commit/f560cf2266715666ce5852ab095fcfb3876ae815), [`09439d7d6`](https://github.com/bluesky-social/atproto/commit/09439d7d688294ad1a0c78a74b901ba2f7c5f4c3), [`f560cf226`](https://github.com/bluesky-social/atproto/commit/f560cf2266715666ce5852ab095fcfb3876ae815), [`09439d7d6`](https://github.com/bluesky-social/atproto/commit/09439d7d688294ad1a0c78a74b901ba2f7c5f4c3), [`09439d7d6`](https://github.com/bluesky-social/atproto/commit/09439d7d688294ad1a0c78a74b901ba2f7c5f4c3)]:
314
+ - @atproto/oauth-types@0.4.2
315
+ - @atproto/jwk@0.6.0
316
+ - @atproto/did@0.2.1
317
+ - @atproto-labs/did-resolver@0.2.2
318
+ - @atproto-labs/handle-resolver@0.3.2
319
+ - @atproto-labs/identity-resolver@0.3.2
320
+
321
+ ## 0.5.6
322
+
323
+ ### Patch Changes
324
+
325
+ - Updated dependencies []:
326
+ - @atproto/xrpc@0.7.5
327
+
328
+ ## 0.5.5
329
+
330
+ ### Patch Changes
331
+
332
+ - [#4150](https://github.com/bluesky-social/atproto/pull/4150) [`86c4699da`](https://github.com/bluesky-social/atproto/commit/86c4699da8cf184c251e58c0a3a2612dd676f0ea) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove `redirect_uri` validation on the client because it does not properly match loopback redirect uris
333
+
334
+ - Updated dependencies [[`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d), [`f9dc9aa4c`](https://github.com/bluesky-social/atproto/commit/f9dc9aa4c9eaf2f82d140fbf011a9015e7f1a00d)]:
335
+ - @atproto/did@0.2.0
336
+ - @atproto-labs/simple-store@0.3.0
337
+ - @atproto/xrpc@0.7.4
338
+ - @atproto-labs/did-resolver@0.2.1
339
+ - @atproto-labs/handle-resolver@0.3.1
340
+ - @atproto-labs/simple-store-memory@0.1.4
341
+ - @atproto-labs/identity-resolver@0.3.1
342
+
343
+ ## 0.5.4
344
+
345
+ ### Patch Changes
346
+
347
+ - [#4139](https://github.com/bluesky-social/atproto/pull/4139) [`6231c8730`](https://github.com/bluesky-social/atproto/commit/6231c8730adb3a4c17dec417e5332b2be61070e5) Thanks [@ThisIsMissEm](https://github.com/ThisIsMissEm)! - Fix support for multiple redirect URIs in `@atproto/oauth-client`
348
+
349
+ Previously the callback method assumed a singular `redirect_uris` value, and enforced only performing the callback with the first registered redirect URI. This change allows passing the actual redirect URI to the `callback` method, much like the `authorize` method supports.
350
+
351
+ - Updated dependencies []:
352
+ - @atproto/xrpc@0.7.3
353
+
354
+ ## 0.5.3
355
+
356
+ ### Patch Changes
357
+
358
+ - Updated dependencies []:
359
+ - @atproto/xrpc@0.7.2
360
+
361
+ ## 0.5.2
362
+
363
+ ### Patch Changes
364
+
365
+ - Updated dependencies [[`8a88e2c15`](https://github.com/bluesky-social/atproto/commit/8a88e2c15451f5e8239400eeb277ad31d178b8e6), [`8a88e2c15`](https://github.com/bluesky-social/atproto/commit/8a88e2c15451f5e8239400eeb277ad31d178b8e6)]:
366
+ - @atproto/jwk@0.5.0
367
+ - @atproto/oauth-types@0.4.1
368
+
369
+ ## 0.5.1
370
+
371
+ ### Patch Changes
372
+
373
+ - Updated dependencies []:
374
+ - @atproto/xrpc@0.7.1
375
+
376
+ ## 0.5.0
377
+
378
+ ### Minor Changes
379
+
380
+ - [#3982](https://github.com/bluesky-social/atproto/pull/3982) [`4c2d49917`](https://github.com/bluesky-social/atproto/commit/4c2d499178c61eb8a9d7f658e89fe68fa07f81e7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - `didResolver` and `handleResolver` no longer exposed on `OAuthClient` class
381
+
382
+ ### Patch Changes
383
+
384
+ - [#3982](https://github.com/bluesky-social/atproto/pull/3982) [`4c2d49917`](https://github.com/bluesky-social/atproto/commit/4c2d499178c61eb8a9d7f658e89fe68fa07f81e7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Allow providing custom `identityProvider` implementation as `OAuthClient` constructor option
385
+
386
+ - Updated dependencies [[`4c2d49917`](https://github.com/bluesky-social/atproto/commit/4c2d499178c61eb8a9d7f658e89fe68fa07f81e7), [`4c2d49917`](https://github.com/bluesky-social/atproto/commit/4c2d499178c61eb8a9d7f658e89fe68fa07f81e7), [`3a1e010e1`](https://github.com/bluesky-social/atproto/commit/3a1e010e148476bfdc0028c37cafbce85a46605a), [`4c2d49917`](https://github.com/bluesky-social/atproto/commit/4c2d499178c61eb8a9d7f658e89fe68fa07f81e7), [`3a1e010e1`](https://github.com/bluesky-social/atproto/commit/3a1e010e148476bfdc0028c37cafbce85a46605a)]:
387
+ - @atproto-labs/identity-resolver@0.3.0
388
+ - @atproto/oauth-types@0.4.0
389
+
390
+ ## 0.4.2
391
+
392
+ ### Patch Changes
393
+
394
+ - Updated dependencies [[`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47), [`9dac8b0c6`](https://github.com/bluesky-social/atproto/commit/9dac8b0c600520ecb0066ac104787b27668dea47)]:
395
+ - @atproto-labs/handle-resolver@0.3.0
396
+ - @atproto-labs/identity-resolver@0.2.0
397
+
398
+ ## 0.4.1
399
+
400
+ ### Patch Changes
401
+
402
+ - [#3976](https://github.com/bluesky-social/atproto/pull/3976) [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Re-export all types & utilities needed to instantiate an OAuth client
403
+
404
+ - [#3976](https://github.com/bluesky-social/atproto/pull/3976) [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Allow `OAuthClient` to be instantiated with custom `didResolver` instance
405
+
406
+ - Updated dependencies [[`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee), [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee), [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee), [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee), [`90b4775fc`](https://github.com/bluesky-social/atproto/commit/90b4775fc9c6959171bc12b961ce9421cc14d6ee)]:
407
+ - @atproto-labs/handle-resolver@0.2.0
408
+ - @atproto-labs/did-resolver@0.2.0
409
+ - @atproto/jwk@0.4.0
410
+ - @atproto-labs/identity-resolver@0.1.19
411
+ - @atproto/oauth-types@0.3.1
412
+
413
+ ## 0.4.0
414
+
415
+ ### Minor Changes
416
+
417
+ - [#3847](https://github.com/bluesky-social/atproto/pull/3847) [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Bind the OAuth session to the kid that was used to authenticate the client (private_key_jwt)
418
+
419
+ ### Patch Changes
420
+
421
+ - [#3847](https://github.com/bluesky-social/atproto/pull/3847) [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add missing `exp` claim in client attestation JWT
422
+
423
+ - Updated dependencies [[`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6), [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6), [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6), [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6), [`349b59175`](https://github.com/bluesky-social/atproto/commit/349b59175e82ceb9500ae7c6a9a0b9b6aec9d1b6)]:
424
+ - @atproto/oauth-types@0.3.0
425
+ - @atproto/jwk@0.3.0
426
+
427
+ ## 0.3.22
428
+
429
+ ### Patch Changes
430
+
431
+ - [#3933](https://github.com/bluesky-social/atproto/pull/3933) [`192f3ab89`](https://github.com/bluesky-social/atproto/commit/192f3ab89c943216683541f42cc1332e9c305eee) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use resolved handle or did instead of raw input as "login_hint"
432
+
433
+ - [#3926](https://github.com/bluesky-social/atproto/pull/3926) [`4e96e2c7b`](https://github.com/bluesky-social/atproto/commit/4e96e2c7b7cc0231607d3065c95704069c4ca2a2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove `iss` claim from DPoP proofs
434
+
435
+ - Updated dependencies [[`192f3ab89`](https://github.com/bluesky-social/atproto/commit/192f3ab89c943216683541f42cc1332e9c305eee)]:
436
+ - @atproto-labs/identity-resolver@0.1.18
437
+
438
+ ## 0.3.21
439
+
440
+ ### Patch Changes
441
+
442
+ - [#3935](https://github.com/bluesky-social/atproto/pull/3935) [`cd4bed3c9`](https://github.com/bluesky-social/atproto/commit/cd4bed3c9e68878c3f79620fe19f6994ebcb932e) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Cache new DPoP nonces from successful retries
443
+
444
+ ## 0.3.20
445
+
446
+ ### Patch Changes
447
+
448
+ - [#3919](https://github.com/bluesky-social/atproto/pull/3919) [`a3b24ca77`](https://github.com/bluesky-social/atproto/commit/a3b24ca77ca24ac19b17cf9ee2a5ca9612ccf96c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use `application/x-www-form-urlencoded` content instead of JSON for OAuth requests
449
+
450
+ - Updated dependencies [[`3fa2ee3b6`](https://github.com/bluesky-social/atproto/commit/3fa2ee3b6a382709b10921da53e69a901bccbb05), [`a3b24ca77`](https://github.com/bluesky-social/atproto/commit/a3b24ca77ca24ac19b17cf9ee2a5ca9612ccf96c)]:
451
+ - @atproto/jwk@0.2.0
452
+ - @atproto/oauth-types@0.2.8
453
+
454
+ ## 0.3.19
455
+
456
+ ### Patch Changes
457
+
458
+ - [#3877](https://github.com/bluesky-social/atproto/pull/3877) [`a03f0b906`](https://github.com/bluesky-social/atproto/commit/a03f0b906b108f8c766a5700f0d68b55748f23bd) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove un-necessary validation of `alg` on every dpop token creation
459
+
460
+ ## 0.3.18
461
+
462
+ ### Patch Changes
463
+
464
+ - [`36d0d370c`](https://github.com/bluesky-social/atproto/commit/36d0d370c24498f74c243ebfb01564e5050c672d) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove query & fragment from DPoP proof `htu` claim
465
+
466
+ ## 0.3.17
467
+
468
+ ### Patch Changes
469
+
470
+ - Updated dependencies [[`5050b6550`](https://github.com/bluesky-social/atproto/commit/5050b6550e07e71b0a524eda0b71b837583294d4)]:
471
+ - @atproto-labs/fetch@0.2.3
472
+ - @atproto-labs/did-resolver@0.1.13
473
+ - @atproto-labs/identity-resolver@0.1.17
474
+
475
+ ## 0.3.16
476
+
477
+ ### Patch Changes
478
+
479
+ - Updated dependencies [[`a48b093f0`](https://github.com/bluesky-social/atproto/commit/a48b093f0ba3cf67b7abc50d309afcb336d8ead8), [`f36ab48d9`](https://github.com/bluesky-social/atproto/commit/f36ab48d910fc4a3afcd22138ba014c814beb93b), [`f36ab48d9`](https://github.com/bluesky-social/atproto/commit/f36ab48d910fc4a3afcd22138ba014c814beb93b), [`f36ab48d9`](https://github.com/bluesky-social/atproto/commit/f36ab48d910fc4a3afcd22138ba014c814beb93b)]:
480
+ - @atproto/oauth-types@0.2.7
481
+ - @atproto/xrpc@0.7.0
482
+
483
+ ## 0.3.15
484
+
485
+ ### Patch Changes
486
+
487
+ - Updated dependencies [[`0d77d1b55`](https://github.com/bluesky-social/atproto/commit/0d77d1b550a58117aee8f7f1e2be24d255ade9e4), [`30f9b6690`](https://github.com/bluesky-social/atproto/commit/30f9b6690e0e2c5810772e94e631322b9d89c65a), [`30f9b6690`](https://github.com/bluesky-social/atproto/commit/30f9b6690e0e2c5810772e94e631322b9d89c65a), [`0d77d1b55`](https://github.com/bluesky-social/atproto/commit/0d77d1b550a58117aee8f7f1e2be24d255ade9e4)]:
488
+ - @atproto-labs/simple-store@0.2.0
489
+ - @atproto/oauth-types@0.2.6
490
+ - @atproto-labs/did-resolver@0.1.12
491
+ - @atproto-labs/handle-resolver@0.1.8
492
+ - @atproto-labs/simple-store-memory@0.1.3
493
+ - @atproto-labs/identity-resolver@0.1.16
494
+
495
+ ## 0.3.14
496
+
497
+ ### Patch Changes
498
+
499
+ - Updated dependencies [[`371e04aad`](https://github.com/bluesky-social/atproto/commit/371e04aad2a3e8ae3fe185ce15fc8eb051cab78e), [`26a077716`](https://github.com/bluesky-social/atproto/commit/26a07771673bf1090a61efb7c970235f0b2509fc)]:
500
+ - @atproto/oauth-types@0.2.5
501
+ - @atproto/jwk@0.1.5
502
+
503
+ ## 0.3.13
504
+
505
+ ### Patch Changes
506
+
507
+ - Updated dependencies []:
508
+ - @atproto/xrpc@0.6.12
509
+
510
+ ## 0.3.12
511
+
512
+ ### Patch Changes
513
+
514
+ - Updated dependencies []:
515
+ - @atproto-labs/identity-resolver@0.1.15
516
+ - @atproto/xrpc@0.6.11
517
+
518
+ ## 0.3.11
519
+
520
+ ### Patch Changes
521
+
522
+ - [#2945](https://github.com/bluesky-social/atproto/pull/2945) [`850e39843`](https://github.com/bluesky-social/atproto/commit/850e39843cb0ec9ea716675f7568c0c601f45e29) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Minor code optimizations
523
+
524
+ - Updated dependencies [[`850e39843`](https://github.com/bluesky-social/atproto/commit/850e39843cb0ec9ea716675f7568c0c601f45e29), [`850e39843`](https://github.com/bluesky-social/atproto/commit/850e39843cb0ec9ea716675f7568c0c601f45e29), [`850e39843`](https://github.com/bluesky-social/atproto/commit/850e39843cb0ec9ea716675f7568c0c601f45e29)]:
525
+ - @atproto-labs/fetch@0.2.2
526
+ - @atproto/oauth-types@0.2.4
527
+ - @atproto/jwk@0.1.4
528
+ - @atproto-labs/did-resolver@0.1.11
529
+ - @atproto-labs/identity-resolver@0.1.14
530
+ - @atproto/xrpc@0.6.10
531
+
532
+ ## 0.3.10
533
+
534
+ ### Patch Changes
535
+
536
+ - Updated dependencies []:
537
+ - @atproto-labs/identity-resolver@0.1.13
538
+ - @atproto/xrpc@0.6.9
539
+
540
+ ## 0.3.9
541
+
542
+ ### Patch Changes
543
+
544
+ - [#3220](https://github.com/bluesky-social/atproto/pull/3220) [`61dc0d60e`](https://github.com/bluesky-social/atproto/commit/61dc0d60e19b88c6427a54c6d95a391b5f4da7bd) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Apply new linting rules regarding import order
545
+
546
+ - Updated dependencies [[`61dc0d60e`](https://github.com/bluesky-social/atproto/commit/61dc0d60e19b88c6427a54c6d95a391b5f4da7bd), [`61dc0d60e`](https://github.com/bluesky-social/atproto/commit/61dc0d60e19b88c6427a54c6d95a391b5f4da7bd)]:
547
+ - @atproto-labs/simple-store-memory@0.1.2
548
+ - @atproto-labs/identity-resolver@0.1.12
549
+ - @atproto-labs/handle-resolver@0.1.7
550
+ - @atproto-labs/did-resolver@0.1.10
551
+ - @atproto-labs/simple-store@0.1.2
552
+ - @atproto/oauth-types@0.2.3
553
+ - @atproto-labs/fetch@0.2.1
554
+ - @atproto/jwk@0.1.3
555
+ - @atproto/xrpc@0.6.8
556
+ - @atproto/did@0.1.5
557
+
558
+ ## 0.3.8
559
+
560
+ ### Patch Changes
561
+
562
+ - Updated dependencies [[`cc2a1222b`](https://github.com/bluesky-social/atproto/commit/cc2a1222bd2b8ddd70d70dad174c1c63246a2d87), [`cc2a1222b`](https://github.com/bluesky-social/atproto/commit/cc2a1222bd2b8ddd70d70dad174c1c63246a2d87), [`fb64d50ee`](https://github.com/bluesky-social/atproto/commit/fb64d50ee220316b9f1183e5c3259629489734c9)]:
563
+ - @atproto-labs/did-resolver@0.1.9
564
+ - @atproto/did@0.1.4
565
+ - @atproto/xrpc@0.6.7
566
+ - @atproto-labs/identity-resolver@0.1.11
567
+ - @atproto-labs/handle-resolver@0.1.6
568
+
569
+ ## 0.3.7
570
+
571
+ ### Patch Changes
572
+
573
+ - Updated dependencies [[`2889c7699`](https://github.com/bluesky-social/atproto/commit/2889c76995ce3c569f595ac3c678218e9ce659f0), [`2889c7699`](https://github.com/bluesky-social/atproto/commit/2889c76995ce3c569f595ac3c678218e9ce659f0), [`5ece8c6ae`](https://github.com/bluesky-social/atproto/commit/5ece8c6aeab9c5c3f51295d93ed6e27c3c6095c2), [`2889c7699`](https://github.com/bluesky-social/atproto/commit/2889c76995ce3c569f595ac3c678218e9ce659f0), [`2889c7699`](https://github.com/bluesky-social/atproto/commit/2889c76995ce3c569f595ac3c678218e9ce659f0), [`5ece8c6ae`](https://github.com/bluesky-social/atproto/commit/5ece8c6aeab9c5c3f51295d93ed6e27c3c6095c2)]:
574
+ - @atproto/jwk@0.1.2
575
+ - @atproto-labs/fetch@0.2.0
576
+ - @atproto/oauth-types@0.2.2
577
+ - @atproto-labs/did-resolver@0.1.8
578
+ - @atproto-labs/identity-resolver@0.1.10
579
+
580
+ ## 0.3.6
581
+
582
+ ### Patch Changes
583
+
584
+ - Updated dependencies [[`72eba67af`](https://github.com/bluesky-social/atproto/commit/72eba67af1af8320b5400bcb9319d5c3c8407d99)]:
585
+ - @atproto-labs/did-resolver@0.1.7
586
+ - @atproto-labs/identity-resolver@0.1.9
587
+ - @atproto/xrpc@0.6.6
588
+
589
+ ## 0.3.5
590
+
591
+ ### Patch Changes
592
+
593
+ - Updated dependencies [[`a200e5095`](https://github.com/bluesky-social/atproto/commit/a200e50951d297c3f9670e96027262196bc29b0b)]:
594
+ - @atproto-labs/handle-resolver@0.1.5
595
+ - @atproto-labs/identity-resolver@0.1.8
596
+
597
+ ## 0.3.4
598
+
599
+ ### Patch Changes
600
+
601
+ - Updated dependencies []:
602
+ - @atproto/xrpc@0.6.5
603
+
604
+ ## 0.3.3
605
+
606
+ ### Patch Changes
607
+
608
+ - Updated dependencies [[`622654672`](https://github.com/bluesky-social/atproto/commit/6226546725d1bb0375e3c9e0d71af173e8253c4f)]:
609
+ - @atproto-labs/fetch@0.1.2
610
+ - @atproto-labs/did-resolver@0.1.6
611
+ - @atproto-labs/identity-resolver@0.1.7
612
+
613
+ ## 0.3.2
614
+
615
+ ### Patch Changes
616
+
617
+ - [#3066](https://github.com/bluesky-social/atproto/pull/3066) [`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Verify authorization_endpoint URL protocol
618
+
619
+ - [#3066](https://github.com/bluesky-social/atproto/pull/3066) [`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Ensure that client-id is a web url
620
+
621
+ - [#3066](https://github.com/bluesky-social/atproto/pull/3066) [`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Improve message of OAuthResolverError in case of metadata validation error
622
+
623
+ - Updated dependencies [[`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3), [`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3), [`5ddd51235`](https://github.com/bluesky-social/atproto/commit/5ddd51235c7e064bddcad2dd218df05d144d18d3)]:
624
+ - @atproto/oauth-types@0.2.1
625
+
626
+ ## 0.3.1
627
+
628
+ ### Patch Changes
629
+
630
+ - Updated dependencies []:
631
+ - @atproto-labs/identity-resolver@0.1.6
632
+ - @atproto/xrpc@0.6.4
633
+
634
+ ## 0.3.0
635
+
636
+ ### Minor Changes
637
+
638
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use `"auto"` instead of `undefined` to descibe the refresh mechanism to use in various methods.
639
+
640
+ ### Patch Changes
641
+
642
+ - [#2874](https://github.com/bluesky-social/atproto/pull/2874) [`7f26b1765`](https://github.com/bluesky-social/atproto/commit/7f26b176526b9856a8f61faca6f065f0afd43abf) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add `allowHttp` OAuthClient construction option to allow working with "http:" oauth providers (for development & testing purposes).
643
+
644
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Perform issuer validation _before_ refreshing tokens.
645
+
646
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Ensure token response is properly typed according to the atproto OAuth spec
647
+
648
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use fetch()'s "cache" option instead of headers to force caching behavior
649
+
650
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Do not use cache when checking sub authority
651
+
652
+ - [#2871](https://github.com/bluesky-social/atproto/pull/2871) [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Allow all oauth request parameters to be used as authorize() options
653
+
654
+ - Updated dependencies [[`7f26b1765`](https://github.com/bluesky-social/atproto/commit/7f26b176526b9856a8f61faca6f065f0afd43abf), [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2), [`7f26b1765`](https://github.com/bluesky-social/atproto/commit/7f26b176526b9856a8f61faca6f065f0afd43abf), [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2), [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2), [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2), [`7f26b1765`](https://github.com/bluesky-social/atproto/commit/7f26b176526b9856a8f61faca6f065f0afd43abf), [`9d40ccbb6`](https://github.com/bluesky-social/atproto/commit/9d40ccbb69103fae9aae7e3cec31e9b3116f3ba2), [`7f26b1765`](https://github.com/bluesky-social/atproto/commit/7f26b176526b9856a8f61faca6f065f0afd43abf)]:
655
+ - @atproto/oauth-types@0.2.0
656
+ - @atproto-labs/did-resolver@0.1.5
657
+ - @atproto-labs/handle-resolver@0.1.4
658
+ - @atproto/did@0.1.3
659
+ - @atproto-labs/identity-resolver@0.1.5
660
+
661
+ ## 0.2.2
662
+
663
+ ### Patch Changes
664
+
665
+ - [#2755](https://github.com/bluesky-social/atproto/pull/2755) [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Improve client side validation of client metadata
666
+
667
+ - [#2755](https://github.com/bluesky-social/atproto/pull/2755) [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Use scope from client metadata as default value
668
+
669
+ - Updated dependencies [[`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`a07b21151`](https://github.com/bluesky-social/atproto/commit/a07b21151f1850340c4b7797ebb11521b1a6cdf3), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`a07b21151`](https://github.com/bluesky-social/atproto/commit/a07b21151f1850340c4b7797ebb11521b1a6cdf3), [`ed325d863`](https://github.com/bluesky-social/atproto/commit/ed325d863ce8ea5986c5a45c3188aaa35288b7a8), [`a07b21151`](https://github.com/bluesky-social/atproto/commit/a07b21151f1850340c4b7797ebb11521b1a6cdf3), [`a07b21151`](https://github.com/bluesky-social/atproto/commit/a07b21151f1850340c4b7797ebb11521b1a6cdf3)]:
670
+ - @atproto/oauth-types@0.1.5
671
+ - @atproto/xrpc@0.6.3
672
+ - @atproto-labs/fetch@0.1.1
673
+ - @atproto-labs/did-resolver@0.1.4
674
+ - @atproto-labs/identity-resolver@0.1.4
675
+
676
+ ## 0.2.1
677
+
678
+ ### Patch Changes
679
+
680
+ - Updated dependencies [[`cb4abbb67`](https://github.com/bluesky-social/atproto/commit/cb4abbb673c69a8a89b49dca5c038f3da2153c6c), [`cb4abbb67`](https://github.com/bluesky-social/atproto/commit/cb4abbb673c69a8a89b49dca5c038f3da2153c6c), [`cb4abbb67`](https://github.com/bluesky-social/atproto/commit/cb4abbb673c69a8a89b49dca5c038f3da2153c6c), [`98711a147`](https://github.com/bluesky-social/atproto/commit/98711a147a8674337f605c6368f39fc10c2fae93)]:
681
+ - @atproto/did@0.1.2
682
+ - @atproto/xrpc@0.6.2
683
+ - @atproto-labs/did-resolver@0.1.3
684
+ - @atproto-labs/handle-resolver@0.1.3
685
+ - @atproto-labs/identity-resolver@0.1.3
686
+
687
+ ## 0.2.0
688
+
689
+ ### Minor Changes
690
+
691
+ - [#2714](https://github.com/bluesky-social/atproto/pull/2714) [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The `OAuthClient` (and runtime specific sub-classes) no longer return @atproto/api `Agent` instances. Instead, they return `OAuthSession` instances that can be used to instantiate the `Agent` class.
692
+
693
+ - [#2734](https://github.com/bluesky-social/atproto/pull/2734) [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove "nonce" from authorization request
694
+
695
+ - [#2734](https://github.com/bluesky-social/atproto/pull/2734) [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Mandate the use of "atproto" scope
696
+
697
+ - [#2734](https://github.com/bluesky-social/atproto/pull/2734) [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove "openid" compatibility. The reason is that although we were technically "openid" compatible, ATProto identifiers are distributed identifiers. When a client relies on OpenID to authenticate users, it will use the auth provider in combination with the identifier to uniquely identify the user. Since ATProto identifiers are meant to be able to move from one provider to the other, OpenID compatibility could break authentication after a user was migrated to a different provider.
698
+
699
+ The way OpenID compliant clients would adapt to this particularity would typically be to remove the provider + identifier combination and use the identifier alone. While this is indeed the right way to handle ATProto identifiers, it requires more work to avoid impersonation. In particular, when obtaining a user identifier, the client **must** verify that the issuer of the identity token is indeed the server responsible for that user. This mechanism being not enforced by the OpenID standard, OpenID compatibility could lead to security issues. For this reason, we decided to remove OpenID compatibility from the OAuth provider.
700
+
701
+ Note that a trusted central authority could still offer OpenID compatibility by relying on ATProto's regular OAuth flow under the hood. This capability is out of the scope of this library.
702
+
703
+ - [#2714](https://github.com/bluesky-social/atproto/pull/2714) [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Rename OAuthAgent into OAuthSession
704
+
705
+ - [#2714](https://github.com/bluesky-social/atproto/pull/2714) [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Rename `OAuthSession`'s `request` method to `fetchHandler`. The goal of this change is to allow `OAuthSession` to be used in order to instantiate `XrpcClient` by implementing the `FetchHandlerObject` interface.
706
+
707
+ ### Patch Changes
708
+
709
+ - [#2714](https://github.com/bluesky-social/atproto/pull/2714) [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add `getTokenInfo()` method to `OAuthSession`.
710
+
711
+ - [#2734](https://github.com/bluesky-social/atproto/pull/2734) [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Do not remove scopes not advertised in the AS's "scopes_supported" when building the authorization request.
712
+
713
+ - [#2714](https://github.com/bluesky-social/atproto/pull/2714) [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Make `getTokenSet()` method public in `OAuthSession`.
714
+
715
+ - Updated dependencies [[`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c), [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7), [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7), [`dee817b6e`](https://github.com/bluesky-social/atproto/commit/dee817b6e0fc02351d51ce310b5e65239b7c5ed7), [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c), [`d9ffa3c46`](https://github.com/bluesky-social/atproto/commit/d9ffa3c460924010d7002b616cb7a0c66111cc6c)]:
716
+ - @atproto/xrpc@0.6.1
717
+ - @atproto/oauth-types@0.1.4
718
+
719
+ ## 0.1.7
720
+
721
+ ### Patch Changes
722
+
723
+ - Updated dependencies [[`4ab248354`](https://github.com/bluesky-social/atproto/commit/4ab2483547d5dabfba88ed4419a4f374bbd7cae7)]:
724
+ - @atproto/api@0.13.3
725
+
726
+ ## 0.1.6
727
+
728
+ ### Patch Changes
729
+
730
+ - Updated dependencies [[`2a0c088cc`](https://github.com/bluesky-social/atproto/commit/2a0c088cc5d502ca70da9612a261186aa2f2e1fb), [`aba664fbd`](https://github.com/bluesky-social/atproto/commit/aba664fbdfbaddba321e96db2478e0bc8fc72d27)]:
731
+ - @atproto/api@0.13.2
732
+
733
+ ## 0.1.5
734
+
735
+ ### Patch Changes
736
+
737
+ - [#2729](https://github.com/bluesky-social/atproto/pull/2729) [`35a126429`](https://github.com/bluesky-social/atproto/commit/35a1264297bc22acaa6e5ed3f4aed8c351be8bbb) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The non-standard `introspection_endpoint_auth_method`, and `introspection_endpoint_auth_signing_alg` client metadata properties were removed. The client's `token_endpoint_auth_method`, and `token_endpoint_auth_signing_alg` properties are now used as the only indication of how a client must authenticate at the introspection endpoint.
738
+
739
+ - [#2729](https://github.com/bluesky-social/atproto/pull/2729) [`35a126429`](https://github.com/bluesky-social/atproto/commit/35a1264297bc22acaa6e5ed3f4aed8c351be8bbb) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The non-standard `revocation_endpoint_auth_method`, and `revocation_endpoint_auth_signing_alg` client metadata properties were removed. The client's `token_endpoint_auth_method`, and `token_endpoint_auth_signing_alg` properties are now used as the only indication of how a client must authenticate at the revocation endpoint.
740
+
741
+ - [#2727](https://github.com/bluesky-social/atproto/pull/2727) [`3ebcd4e61`](https://github.com/bluesky-social/atproto/commit/3ebcd4e6161291d3649d7f8a9c5ee4ac26d590a2) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Remove "exp" from dpop proof
742
+
743
+ - [#2729](https://github.com/bluesky-social/atproto/pull/2729) [`35a126429`](https://github.com/bluesky-social/atproto/commit/35a1264297bc22acaa6e5ed3f4aed8c351be8bbb) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The non-standard `pushed_authorization_request_endpoint_auth_method`, and `pushed_authorization_request_endpoint_auth_signing_alg` client metadata properties were removed. The client's `token_endpoint_auth_method`, and `token_endpoint_auth_signing_alg` properties are now used as the only indication of how a client must authenticate at the introspection endpoint.
744
+
745
+ - Updated dependencies [[`35a126429`](https://github.com/bluesky-social/atproto/commit/35a1264297bc22acaa6e5ed3f4aed8c351be8bbb)]:
746
+ - @atproto/oauth-types@0.1.3
747
+
748
+ ## 0.1.4
749
+
750
+ ### Patch Changes
751
+
752
+ - [#2710](https://github.com/bluesky-social/atproto/pull/2710) [`04112783d`](https://github.com/bluesky-social/atproto/commit/04112783db17f865c9e2b673190f77dd0b7461e3) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add CustomEvent ponyfill for enviroments that don't provide it
753
+
754
+ ## 0.1.3
755
+
756
+ ### Patch Changes
757
+
758
+ - Updated dependencies [[`22af354a5`](https://github.com/bluesky-social/atproto/commit/22af354a5db595d7cbc0e65f02601de3565337e1)]:
759
+ - @atproto/api@0.13.1
760
+
761
+ ## 0.1.2
762
+
763
+ ### Patch Changes
764
+
765
+ - [#2483](https://github.com/bluesky-social/atproto/pull/2483) [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Misc fixes for confidential client usage
766
+
767
+ - [#2483](https://github.com/bluesky-social/atproto/pull/2483) [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Better implement aptroto OAuth spec
768
+
769
+ - Updated dependencies [[`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd)]:
770
+ - @atproto/oauth-types@0.1.2
771
+ - @atproto-labs/handle-resolver@0.1.2
772
+ - @atproto/did@0.1.1
773
+ - @atproto/xrpc@0.6.0
774
+ - @atproto/api@0.13.0
775
+ - @atproto-labs/identity-resolver@0.1.2
776
+ - @atproto-labs/did-resolver@0.1.2
777
+
778
+ ## 0.1.1
779
+
780
+ ### Patch Changes
781
+
782
+ - [#2633](https://github.com/bluesky-social/atproto/pull/2633) [`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add event emitting capability to OAuthClient
783
+
784
+ - Updated dependencies [[`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10), [`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10), [`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10), [`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10)]:
785
+ - @atproto/oauth-types@0.1.1
786
+ - @atproto/jwk@0.1.1
787
+ - @atproto-labs/identity-resolver@0.1.1
788
+ - @atproto-labs/handle-resolver@0.1.1
789
+ - @atproto-labs/did-resolver@0.1.1
790
+ - @atproto-labs/simple-store@0.1.1
791
+ - @atproto-labs/simple-store-memory@0.1.1
792
+
793
+ ## 0.1.0
794
+
795
+ ### Minor Changes
796
+
797
+ - [#2482](https://github.com/bluesky-social/atproto/pull/2482) [`a8d6c1123`](https://github.com/bluesky-social/atproto/commit/a8d6c112359f5c4c0cfbe2df63443ed275f2a646) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add OAuth provider capability & support for DPoP signed tokens
798
+
799
+ ### Patch Changes
800
+
801
+ - Updated dependencies [[`a8d6c1123`](https://github.com/bluesky-social/atproto/commit/a8d6c112359f5c4c0cfbe2df63443ed275f2a646)]:
802
+ - @atproto-labs/simple-store-memory@0.1.0
803
+ - @atproto-labs/identity-resolver@0.1.0
804
+ - @atproto-labs/handle-resolver@0.1.0
805
+ - @atproto-labs/did-resolver@0.1.0
806
+ - @atproto-labs/simple-store@0.1.0
807
+ - @atproto/oauth-types@0.1.0
808
+ - @atproto-labs/fetch@0.1.0
809
+ - @atproto/jwk@0.1.0
810
+ - @atproto/did@0.1.0