Skip to content

Commit 1933080

Browse files
committed
Merge branch 'main' into feature/agent-rework
2 parents 0676695 + 22c9590 commit 1933080

File tree

188 files changed

+2619
-1849
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+2619
-1849
lines changed

.github/workflows/common.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Common
2+
on:
3+
push:
4+
branches: ["main"]
5+
pull_request:
6+
branches: ["main"]
7+
env:
8+
CARGO_TERM_COLOR: always
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Build
15+
run: |
16+
cargo build -p atrium-common --verbose
17+
- name: Run tests
18+
run: |
19+
cargo test -p atrium-common --lib

.github/workflows/wasm.yml

+1
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,4 @@ jobs:
6767
- run: wasm-pack test --node atrium-xrpc
6868
- run: wasm-pack test --node atrium-xrpc-client
6969
- run: wasm-pack test --node atrium-oauth/identity
70+
- run: wasm-pack test --node atrium-common

Cargo.lock

+23-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
members = [
33
"atrium-api",
4+
"atrium-common",
45
"atrium-crypto",
56
"atrium-xrpc",
67
"atrium-xrpc-client",
@@ -25,11 +26,12 @@ keywords = ["atproto", "bluesky"]
2526

2627
[workspace.dependencies]
2728
# Intra-workspace dependencies
28-
atrium-api = { version = "0.24.7", path = "atrium-api", default-features = false }
29+
atrium-api = { version = "0.24.8", path = "atrium-api", default-features = false }
30+
atrium-common = { version = "0.1.0", path = "atrium-common" }
2931
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
30-
atrium-xrpc = { version = "0.11.6", path = "atrium-xrpc" }
31-
atrium-xrpc-client = { version = "0.5.9", path = "atrium-xrpc-client" }
32-
bsky-sdk = { version = "0.1.12", path = "bsky-sdk" }
32+
atrium-xrpc = { version = "0.12.0", path = "atrium-xrpc" }
33+
atrium-xrpc-client = { version = "0.5.10", path = "atrium-xrpc-client" }
34+
bsky-sdk = { version = "0.1.13", path = "bsky-sdk" }
3335

3436
# DAG-CBOR codec
3537
ipld-core = { version = "0.4.1", default-features = false, features = ["std"] }

atrium-api/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.24.8](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.7...atrium-api-v0.24.8) - 2024-11-19
10+
11+
### Added
12+
13+
- Update API, based on the latest lexicon schemas ([#256](https://github.com/sugyan/atrium/pull/256))
14+
- Update XrpcClient, add AuthorizationToken ([#248](https://github.com/sugyan/atrium/pull/248))
15+
- Replace OnceCell with static OnceLock for regex compilation ([#250](https://github.com/sugyan/atrium/pull/250))
16+
917
## [0.24.7](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.6...atrium-api-v0.24.7) - 2024-10-28
1018

1119
### Added

atrium-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atrium-api"
3-
version = "0.24.7"
3+
version = "0.24.8"
44
authors = ["sugyan <[email protected]>"]
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)