From 9359376b6997369b206faefa27a6e6fdca5cffeb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 14:13:46 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 4 ++-- packages/loro-websocket/CHANGELOG.md | 13 +++++++++++++ packages/loro-websocket/package.json | 2 +- rust/loro-protocol/CHANGELOG.md | 8 ++++++++ rust/loro-protocol/Cargo.toml | 2 +- 5 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 rust/loro-protocol/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 57bfe16..4fd4dca 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "packages/loro-adaptors": "0.6.1", "packages/loro-protocol": "0.3.0", - "packages/loro-websocket": "0.6.2", - "rust/loro-protocol": "0.3.0" + "packages/loro-websocket": "0.6.3", + "rust/loro-protocol": "0.3.1" } diff --git a/packages/loro-websocket/CHANGELOG.md b/packages/loro-websocket/CHANGELOG.md index c4e781f..b9d6672 100644 --- a/packages/loro-websocket/CHANGELOG.md +++ b/packages/loro-websocket/CHANGELOG.md @@ -6,6 +6,19 @@ * Flock client/server adaptors now emit binary-encoded version vectors using `@loro-dev/flock`'s `encodeVersionVector`; prior JSON encoding is no longer supported. +## [0.6.3](https://github.com/loro-dev/protocol/compare/loro-websocket-v0.6.2...loro-websocket-v0.6.3) (2026-06-15) + + +### Features + +* Support cookies when authenticating websockets ([#44](https://github.com/loro-dev/protocol/issues/44)) ([903eb9c](https://github.com/loro-dev/protocol/commit/903eb9c2312caa71b883166281ef3a3076517022)) + + +### Bug Fixes + +* Emit room error before cleanup of room on js client ([#55](https://github.com/loro-dev/protocol/issues/55)) ([1f8a0fa](https://github.com/loro-dev/protocol/commit/1f8a0fa07bab5320ae154ae7cfa4add8b3b8c4fc)) +* resolve lint errors in handshake-auth.test.ts and simple-server.ts ([#49](https://github.com/loro-dev/protocol/issues/49)) ([206fa93](https://github.com/loro-dev/protocol/commit/206fa93b93cfedf25f7b40d60d667ef5ce9ef619)) + ## [0.6.2](https://github.com/loro-dev/protocol/compare/loro-websocket-v0.6.1...loro-websocket-v0.6.2) (2026-01-04) diff --git a/packages/loro-websocket/package.json b/packages/loro-websocket/package.json index 6cabe17..4f1a778 100644 --- a/packages/loro-websocket/package.json +++ b/packages/loro-websocket/package.json @@ -1,6 +1,6 @@ { "name": "@karstenda/loro-websocket", - "version": "0.6.2", + "version": "0.6.3", "private": false, "description": "WebSocket client and SimpleServer for syncing CRDTs base on loro-protocol", "author": "Loro Team", diff --git a/rust/loro-protocol/CHANGELOG.md b/rust/loro-protocol/CHANGELOG.md new file mode 100644 index 0000000..30eaae0 --- /dev/null +++ b/rust/loro-protocol/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.3.1](https://github.com/loro-dev/protocol/compare/loro-protocol-v0.3.0...loro-protocol-v0.3.1) (2026-06-15) + + +### Bug Fixes + +* publish rust loro-protocol 0.3.0 ([89d06fd](https://github.com/loro-dev/protocol/commit/89d06fdd52915df3c201339c9922999343cf5050)) diff --git a/rust/loro-protocol/Cargo.toml b/rust/loro-protocol/Cargo.toml index 087938d..90478ec 100644 --- a/rust/loro-protocol/Cargo.toml +++ b/rust/loro-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "loro-protocol" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Rust implementation of the Loro Syncing Protocol encoder/decoder" license = "MIT"