Merge branch 'ruma-0.7'
This commit is contained in:
commit
3c3c6f388f
@ -20,7 +20,7 @@ client = []
|
||||
server = []
|
||||
|
||||
[dependencies]
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
||||
|
@ -20,12 +20,16 @@ Improvements:
|
||||
* Send CORP headers by default for media responses (MSC3828 / Matrix 1.4)
|
||||
* Add support for read receipts for threads (MSC3771 / Matrix 1.4)
|
||||
|
||||
# 0.15.2
|
||||
# 0.15.3
|
||||
|
||||
Bug fixes:
|
||||
|
||||
* Don't include sensitive information in `Debug`-format of types from the `login` module
|
||||
|
||||
# 0.15.2
|
||||
|
||||
Yanked since it the minimum version for the `ruma-common` dependency was wrong.
|
||||
|
||||
# 0.15.1
|
||||
|
||||
Improvements:
|
||||
|
@ -7,7 +7,7 @@ license = "MIT"
|
||||
name = "ruma-client-api"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
version = "0.15.2"
|
||||
version = "0.15.3"
|
||||
edition = "2021"
|
||||
rust-version = "1.62"
|
||||
|
||||
@ -37,7 +37,7 @@ http = "0.2.2"
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
maplit = "1.0.2"
|
||||
percent-encoding = "2.1.0"
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
||||
|
@ -44,12 +44,12 @@ hyper-rustls = { version = "0.23.0", optional = true, default-features = false }
|
||||
hyper-tls = { version = "0.5.0", optional = true }
|
||||
isahc = { version = "1.3.1", optional = true }
|
||||
reqwest = { version = "0.11.4", optional = true, default-features = false }
|
||||
ruma-client-api = { version = "0.15.2", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api"] }
|
||||
ruma-client-api = { version = "0.15.3", path = "../ruma-client-api", optional = true, features = ["client"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
tracing = { version = "0.1.30", default-features = false, features = ["std"] }
|
||||
|
||||
[dev-dependencies]
|
||||
ruma-client-api = { version = "0.15.2", path = "../ruma-client-api", features = ["client"] }
|
||||
ruma-client-api = { version = "0.15.3", path = "../ruma-client-api", features = ["client"] }
|
||||
tokio-stream = "0.1.8"
|
||||
|
@ -24,6 +24,12 @@ Improvements:
|
||||
* Stabilize support for event replacements (edits)
|
||||
* Add support for read receipts for threads (MSC3771 / Matrix 1.4)
|
||||
|
||||
# 0.10.5
|
||||
|
||||
Improvements:
|
||||
|
||||
* Add support for `#[incoming_derive(!Debug)]` to the `Incoming` derive macro
|
||||
|
||||
# 0.10.4
|
||||
|
||||
Bug fixes:
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "ruma-common"
|
||||
version = "0.10.4"
|
||||
version = "0.10.5"
|
||||
description = "Common types for other ruma crates."
|
||||
homepage = "https://www.ruma.io/"
|
||||
keywords = ["matrix", "chat", "messaging", "ruma"]
|
||||
@ -63,7 +63,7 @@ pulldown-cmark = { version = "0.9.1", default-features = false, optional = true
|
||||
rand = { version = "0.8.3", optional = true }
|
||||
regex = { version = "1.5.6", default-features = false, features = ["std", "perf"] }
|
||||
ruma-identifiers-validation = { version = "0.9.0", path = "../ruma-identifiers-validation", default-features = false }
|
||||
ruma-macros = { version = "0.10.4", path = "../ruma-macros" }
|
||||
ruma-macros = { version = "0.10.5", path = "../ruma-macros" }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = { version = "1.0.64", features = ["raw_value"] }
|
||||
thiserror = { version = "1.0.26", optional = true }
|
||||
|
@ -27,7 +27,7 @@ unstable-unspecified = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
||||
|
@ -20,7 +20,7 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -7,7 +7,7 @@ license = "MIT"
|
||||
name = "ruma-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/ruma/ruma"
|
||||
version = "0.10.4"
|
||||
version = "0.10.5"
|
||||
edition = "2021"
|
||||
rust-version = "1.62"
|
||||
|
||||
|
@ -21,6 +21,6 @@ server = []
|
||||
|
||||
[dependencies]
|
||||
js_int = { version = "0.2.0", features = ["serde"] }
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["api", "events"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["api", "events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.61"
|
||||
|
@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
headers = "0.3"
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common" }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common" }
|
||||
tracing = "0.1.25"
|
||||
yap = "0.7.2"
|
||||
|
||||
|
@ -23,7 +23,7 @@ ed25519-dalek = "1.0.1"
|
||||
pkcs8 = { version = "0.9.0", features = ["alloc"] }
|
||||
# because dalek uses an older version of rand_core
|
||||
rand = { version = "0.7", features = ["getrandom"] }
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["canonical-json"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["canonical-json"] }
|
||||
serde_json = "1.0.60"
|
||||
sha2 = "0.9.5"
|
||||
subslice = { version = "0.2.3", optional = true }
|
||||
|
@ -20,7 +20,7 @@ unstable-exhaustive-types = []
|
||||
[dependencies]
|
||||
itertools = "0.10.0"
|
||||
js_int = "0.2.0"
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["events"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["events"] }
|
||||
serde = { version = "1.0.118", features = ["derive"] }
|
||||
serde_json = "1.0.60"
|
||||
thiserror = "1.0.26"
|
||||
@ -32,7 +32,7 @@ criterion = { version = "0.3.3", optional = true }
|
||||
[dev-dependencies]
|
||||
maplit = "1.0.2"
|
||||
rand = "0.8.3"
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common", features = ["unstable-pdu"] }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common", features = ["unstable-pdu"] }
|
||||
tracing-subscriber = "0.3.3"
|
||||
|
||||
[[bench]]
|
||||
|
@ -188,14 +188,14 @@ assign = "1.1.1"
|
||||
js_int = "0.2.0"
|
||||
js_option = "0.1.1"
|
||||
|
||||
ruma-common = { version = "0.10.4", path = "../ruma-common" }
|
||||
ruma-common = { version = "0.10.5", path = "../ruma-common" }
|
||||
|
||||
ruma-client = { version = "0.10.0", path = "../ruma-client", optional = true }
|
||||
ruma-signatures = { version = "0.12.0", path = "../ruma-signatures", optional = true }
|
||||
ruma-state-res = { version = "0.8.0", path = "../ruma-state-res", optional = true }
|
||||
|
||||
ruma-appservice-api = { version = "0.7.0", path = "../ruma-appservice-api", optional = true }
|
||||
ruma-client-api = { version = "0.15.2", path = "../ruma-client-api", optional = true }
|
||||
ruma-client-api = { version = "0.15.3", path = "../ruma-client-api", optional = true }
|
||||
ruma-federation-api = { version = "0.6.0", path = "../ruma-federation-api", optional = true }
|
||||
ruma-identity-service-api = { version = "0.6.0", path = "../ruma-identity-service-api", optional = true }
|
||||
ruma-push-gateway-api = { version = "0.6.0", path = "../ruma-push-gateway-api", optional = true }
|
||||
|
Loading…
x
Reference in New Issue
Block a user