@atproto/lex-cli 0.5.0-rc.0 → 0.5.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 +7 -23
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,37 +1,21 @@
|
|
|
1
1
|
# @atproto/lex-cli
|
|
2
2
|
|
|
3
|
-
## 0.5.0
|
|
3
|
+
## 0.5.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
- [#
|
|
7
|
+
- [#2707](https://github.com/bluesky-social/atproto/pull/2707) [`2bdf75d7a`](https://github.com/bluesky-social/atproto/commit/2bdf75d7a63924c10e7a311f16cb447d595b933e) Thanks [@matthieusieben](https://github.com/matthieusieben)! - The generated client implementation uses the new `XrpcClient` class from `@atproto/xrpc`, instead of the deprecated `Client` and `ServiceClient` class.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
dispatcher into a distinct class. This means cleaner code organization and
|
|
11
|
-
better clarity on responsibilities.
|
|
12
|
-
2. Enhanced Evolutivity: With this refactor, the XRPC client is now more
|
|
13
|
-
adaptable to various use cases. You can easily extend and customize the
|
|
14
|
-
dispatcher perform session management, retries, and more.
|
|
15
|
-
|
|
16
|
-
**Compatibility**:
|
|
9
|
+
### Patch Changes
|
|
17
10
|
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
- Updated dependencies [[`b934b396b`](https://github.com/bluesky-social/atproto/commit/b934b396b13ba32bf2bf7e75ecdf6871e5f310dd), [`2bdf75d7a`](https://github.com/bluesky-social/atproto/commit/2bdf75d7a63924c10e7a311f16cb447d595b933e)]:
|
|
12
|
+
- @atproto/lexicon@0.4.1
|
|
20
13
|
|
|
21
|
-
|
|
22
|
-
XRPC Client and AtpAgent classes has been modified. Please review your code if
|
|
23
|
-
you rely on custom fetch handlers.
|
|
24
|
-
- Managing Sessions: Previously, you had the ability to manage sessions directly
|
|
25
|
-
through AtpAgent instances. Now, session management must be handled through a
|
|
26
|
-
dedicated `SessionManager` instance. If you were making authenticated
|
|
27
|
-
requests, you'll need to update your code to use explicit session management.
|
|
28
|
-
- The `fetch()` method, as well as WhatWG compliant `Request` and `Headers`
|
|
29
|
-
constructors, must be globally available in your environment.
|
|
14
|
+
## 0.4.1
|
|
30
15
|
|
|
31
16
|
### Patch Changes
|
|
32
17
|
|
|
33
|
-
-
|
|
34
|
-
- @atproto/lexicon@0.4.1-rc.0
|
|
18
|
+
- [#2691](https://github.com/bluesky-social/atproto/pull/2691) [`08ef309c9`](https://github.com/bluesky-social/atproto/commit/08ef309c9c1f35f0e7093cb845321e876133d23e) Thanks [@dholms](https://github.com/dholms)! - Fix use of prettier.format for codegen
|
|
35
19
|
|
|
36
20
|
## 0.4.0
|
|
37
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/lex-cli",
|
|
3
|
-
"version": "0.5.0
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "TypeScript codegen tool for atproto Lexicon schemas",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"ts-morph": "^16.0.0",
|
|
26
26
|
"yesno": "^0.4.0",
|
|
27
27
|
"zod": "^3.23.8",
|
|
28
|
-
"@atproto/lexicon": "^0.4.1
|
|
28
|
+
"@atproto/lexicon": "^0.4.1",
|
|
29
29
|
"@atproto/syntax": "^0.3.0"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|