Skip to content

Commit c05fa08

Browse files
ci: release
1 parent b2de77a commit c05fa08

7 files changed

Lines changed: 33 additions & 30 deletions

File tree

.changeset/oauth-scope-query-form.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sync-1-1-compliance.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/sync-get-latest-commit.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/oauth-provider/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @getcirrus/oauth-provider
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- [#175](https://github.com/ascorbic/cirrus/pull/175) [`54ab459`](https://github.com/ascorbic/cirrus/commit/54ab459588393a58ea906977c1ffc8996d8d0700) Thanks [@ascorbic](https://github.com/ascorbic)! - Fix `parseScope` rejecting valid granular scopes that use the query-only form (e.g. `repo?collection=a&collection=b`) with `Unknown scope resource`. The parser previously only looked for `:` as the prefix delimiter, but per `@atproto/oauth-scopes` syntax a scope can use `prefix:positional`, `prefix?query`, or both. This affected permission sets whose `repo` permission listed multiple collections, since those expand to a single query-form token.
8+
39
## 0.4.0
410

511
### Minor Changes

packages/oauth-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getcirrus/oauth-provider",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "OAuth 2.1 Provider with AT Protocol extensions for Cloudflare Workers",
55
"type": "module",
66
"main": "dist/index.js",

packages/pds/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @getcirrus/pds
22

3+
## 0.16.0
4+
5+
### Minor Changes
6+
7+
- [#171](https://github.com/ascorbic/cirrus/pull/171) [`bf2f857`](https://github.com/ascorbic/cirrus/commit/bf2f857b0df9cc9e8eaeb7e336114107596473af) Thanks [@ascorbic](https://github.com/ascorbic)! - The firehose now emits the sync 1.1 message shape, matching what the bsky.network relay and other AT Protocol consumers expect. Existing subscribers will start seeing new fields and new event types; nothing has to change on the consumer side, but the warnings some relays were logging against Cirrus hosts (notably `missing prevData field`) will stop.
8+
9+
What changed on the wire:
10+
- `#commit` messages now include `prevData` (the prior commit's MST root CID), so relays can verify each commit inductively without re-fetching the repo. The CAR slice now also carries the MST covering-proof blocks needed for that verification.
11+
- Each `ops[]` entry on update and delete now includes `prev`, the previous CID of the touched record. Creates omit it as before.
12+
- `tooBig` is always `false`. It was previously set based on payload size, which never matched the field's meaning under sync 1.1.
13+
- New `#account` events are emitted on activation and deactivation, so relays learn about account status changes without polling. Deactivation reports `status: "deactivated"`; activation reports `active: true` with no status.
14+
- New `#sync` events are emitted on activation (after migration or initial setup), giving relays the current commit block without a diff.
15+
- `#identity` events now allow the `handle` field to be omitted, per spec.
16+
- A `#info` frame with `name: "OutdatedCursor"` is sent when a client connects with a cursor older than the retained event window. The stream continues from the oldest available event instead of disconnecting.
17+
- `applyWrites` rejects calls with more than 200 operations, matching the spec cap.
18+
19+
- [#168](https://github.com/ascorbic/cirrus/pull/168) [`71b988e`](https://github.com/ascorbic/cirrus/commit/71b988e485d5128b185fb4970aaa35011bf67e04) Thanks [@simnaut](https://github.com/simnaut)! - Implement `com.atproto.sync.getLatestCommit`.
20+
21+
This sync XRPC endpoint was previously unimplemented, so requests fell through to the XRPC proxy and returned `501 MethodNotImplemented`. Relays call `getLatestCommit` during their crawl bootstrap, so a freshly created repo could never be indexed by a fresh `requestCrawl`. The endpoint now returns the repo's head commit as `{ cid, rev }` (sourced from the same `rpcGetRepoStatus` data used by `getRepoStatus`/`listRepos`).
22+
23+
### Patch Changes
24+
25+
- Updated dependencies [[`54ab459`](https://github.com/ascorbic/cirrus/commit/54ab459588393a58ea906977c1ffc8996d8d0700)]:
26+
- @getcirrus/oauth-provider@0.4.1
27+
328
## 0.15.2
429

530
### Patch Changes

packages/pds/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getcirrus/pds",
3-
"version": "0.15.2",
3+
"version": "0.16.0",
44
"description": "Cirrus – A single-user AT Protocol PDS on Cloudflare Workers",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)