Skip to content

Commit 13a4f03

Browse files
author
Shinya Kato
authored
Merge pull request myConsciousness#1844 from myConsciousness/1839-feature-request-cant-xrpc-update-web_socket_channel
myConsciousness#1839
2 parents 2de9327 + e64fc7d commit 13a4f03

File tree

13 files changed

+33
-21
lines changed

13 files changed

+33
-21
lines changed

packages/atproto/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Note
22

3+
## v0.13.3
4+
5+
- Bump `xrpc`.
6+
37
## v0.13.2
48

59
- Expose `JwtExtension`.

packages/atproto/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: atproto
22
description: The most famous and powerful Dart/Flutter library for AT Protocol.
3-
version: 0.13.2
3+
version: 0.13.3
44
homepage: https://atprotodart.com
55
documentation: https://atprotodart.com/docs/packages/atproto
66
repository: https://github.com/myConsciousness/atproto.dart/tree/main/packages/atproto
@@ -17,7 +17,7 @@ topics:
1717
- api
1818

1919
dependencies:
20-
atproto_core: ^0.11.1
20+
atproto_core: ^0.11.2
2121
freezed_annotation: ^2.4.1
2222
json_annotation: ^4.8.1
2323

packages/atproto_core/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Note
22

3+
## v0.11.2
4+
5+
- Bump `xrpc`.
6+
37
## v0.11.1
48

59
- Retry if a DPoP nonce error occurs during the execution of `OAuthClient.refresh`.

packages/atproto_core/pubspec.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: atproto_core
22
description: Core library for clients and tools. This package is mainly used by https://atprotodart.com packages.
3-
version: 0.11.1
3+
version: 0.11.2
44
homepage: https://atprotodart.com
55
documentation: https://atprotodart.com/docs/intro
66
repository: https://github.com/myConsciousness/atproto.dart/tree/main/packages/atproto_core
@@ -18,7 +18,7 @@ topics:
1818
- core
1919

2020
dependencies:
21-
xrpc: ^0.6.0
21+
xrpc: ^0.6.1
2222
at_uri: ^0.4.0
2323
freezed_annotation: ^2.4.1
2424
json_annotation: ^4.8.1
@@ -40,7 +40,3 @@ dev_dependencies:
4040

4141
import_sorter:
4242
emojis: true
43-
44-
screenshots:
45-
- description: The atproto_core package and atproto.dart logo.
46-
path: screenshots/logo.png
-437 KB
Binary file not shown.

packages/bluesky/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Note
22

3+
## v0.18.6
4+
5+
- Bump `xrpc`.
6+
37
## v0.18.5
48

59
- Change the type of `starterPack` on `GetStarterPackOutput` from `StarterPackViewBasic` to `StarterPackView`.

packages/bluesky/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bluesky
22
description: The most famous and powerful Dart/Flutter library for Bluesky Social.
3-
version: 0.18.5
3+
version: 0.18.6
44
homepage: https://atprotodart.com
55
documentation: https://atprotodart.com/docs/packages/bluesky
66
repository: https://github.com/myConsciousness/atproto.dart/tree/main/packages/bluesky
@@ -17,8 +17,8 @@ topics:
1717
- api
1818

1919
dependencies:
20-
atproto_core: ^0.11.1
21-
atproto: ^0.13.2
20+
atproto_core: ^0.11.2
21+
atproto: ^0.13.3
2222
freezed_annotation: ^2.4.1
2323
json_annotation: ^4.8.1
2424
characters: ^1.3.0

packages/bluesky_cli/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ topics:
2020
- cli
2121

2222
dependencies:
23-
xrpc: ^0.6.0
23+
xrpc: ^0.6.1
2424
at_uri: ^0.4.0
2525
ansi_styles: ^0.3.1
2626
args: ^2.0.0
2727
cli_launcher: ^0.3.0
2828
cli_util: ^0.3.0
29-
bluesky_text: ^0.7.1
29+
bluesky_text: ^0.7.2
3030

3131
dev_dependencies:
3232
lints: ^2.0.1

packages/bluesky_text/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Note
22

3+
## v0.7.2
4+
5+
- Bump `xrpc`.
6+
37
## v0.7.1
48

59
- Exposed `bluesky_text/regex.dart`.

packages/bluesky_text/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bluesky_text
22
description: Provides the easiest and most powerful way to analyze the text for Bluesky Social.
3-
version: 0.7.1
3+
version: 0.7.2
44
homepage: https://atprotodart.com
55
repository: https://github.com/myConsciousness/atproto.dart/tree/main/packages/bluesky_text
66
issue_tracker: https://github.com/myConsciousness/atproto.dart/issues
@@ -16,7 +16,7 @@ topics:
1616
- util
1717

1818
dependencies:
19-
xrpc: ^0.6.0
19+
xrpc: ^0.6.1
2020
characters: ^1.3.0
2121
freezed_annotation: ^2.4.1
2222
json_annotation: ^4.8.1

packages/xrpc/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Note
22

3+
## v0.6.1
4+
5+
- Use `web_socket_channel: ^3.0.0`.
6+
37
## v0.6.0
48

59
- Add parameter `headerBuilder` on `query` and `procedure` functions.

packages/xrpc/pubspec.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: xrpc
22
description: Core library for XRPC communication. This is a wrapped HTTP client for AT Protocol.
3-
version: 0.6.0
3+
version: 0.6.1
44
homepage: https://atprotodart.com
55
documentation: https://atprotodart.com/docs/intro
66
repository: https://github.com/myConsciousness/atproto.dart/tree/main/packages/xrpc
@@ -23,7 +23,7 @@ dependencies:
2323
freezed_annotation: ^2.4.1
2424
json_annotation: ^4.8.1
2525
mime: ^1.0.5
26-
web_socket_channel: ^2.4.4
26+
web_socket_channel: ^3.0.0
2727

2828
dev_dependencies:
2929
lints: ^2.0.1
@@ -35,7 +35,3 @@ dev_dependencies:
3535

3636
import_sorter:
3737
emojis: true
38-
39-
screenshots:
40-
- description: The xrpc package and atproto.dart logo.
41-
path: screenshots/logo.png

packages/xrpc/screenshots/logo.png

-437 KB
Binary file not shown.

0 commit comments

Comments
 (0)