Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2.1 #78

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
## 0.2.1 - 2025-02-21

### Added

* Updated to `[email protected]`

### Fixed

* Fix an issue with the FsStorage implementation which could cause
data loss during compaction. (`b3df2f43`)

## 0.2.0 - 2024-11-28

### Added

* Add `Repo::peer_state` which returns information about how in-sync we are
* Add `Repo::peer_state` which returns information about how in-sync we are
with another peer. (`469a3556`)

### Fixed

* Fix an issue where the Repo could fail to respond to sync messages for a
* Fix an issue where the Repo could fail to respond to sync messages for a
document which is authorized. (`a5b19f79`)


15 changes: 9 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "automerge_repo"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "MIT"
authors = ["Alex Good <[email protected]>", "Gregory Terzian"]
Expand Down Expand Up @@ -35,13 +35,13 @@ tungstenite = ["dep:tungstenite"]
[dependencies]
automerge = { version = "0.6.0" }
axum = { version = "0.6.18", features = ["ws"], optional = true }
uuid = { version = "1.2.2"}
uuid = { version = "1.2.2" }
crossbeam-channel = { version = "0.5.8" }
parking_lot = { version = "0.12.1" }
futures = { version = "0.3.28" }
serde = { version = "1.0.160", features = ["derive"]}
serde = { version = "1.0.160", features = ["derive"] }
tokio = { version = "1.27", features = ["rt"], optional = true }
tokio-util = { version = "0.7.8", features = ["codec", "net" ], optional = true }
tokio-util = { version = "0.7.8", features = ["codec", "net"], optional = true }
bytes = { version = "1.4.0" }
thiserror = "1.0.38"
minicbor = { version = "0.19.0", features = ["alloc"] }
Expand All @@ -54,12 +54,15 @@ bs58 = { version = "0.5.0", features = ["check"] }

[dev-dependencies]
clap = { version = "4.2.5", features = ["derive"] }
reqwest = { version = "0.11.17", features = ["json", "blocking"], default-features = false }
reqwest = { version = "0.11.17", features = [
"json",
"blocking",
], default-features = false }
axum = { version = "0.6.18", features = ["ws"] }
axum-macros = "0.3.7"
tokio = { version = "1.27", features = ["full"] }
tokio-stream = { version = "0.1" }
tokio-serde = {version = "0.8.0", features = ["json"]}
tokio-serde = { version = "0.8.0", features = ["json"] }
tokio-tungstenite = { version = "0.21", features = ["connect"] }
serde_json = "1.0.96"
test_utils = { path = "test_utils" }
Expand Down
Loading