mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-06-27 16:35:59 +00:00
Merge branch 'release-0.10.3' into 'next'
chore(/versions): declare support for matrix <= v1.12 See merge request famedly/conduit!749
This commit is contained in:
commit
30c2428d24
3 changed files with 9 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -460,7 +460,7 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "conduit"
|
name = "conduit"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"axum",
|
"axum",
|
||||||
|
|
|
@ -16,7 +16,7 @@ license = "Apache-2.0"
|
||||||
name = "conduit"
|
name = "conduit"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://gitlab.com/famedly/conduit"
|
repository = "https://gitlab.com/famedly/conduit"
|
||||||
version = "0.10.2"
|
version = "0.10.3"
|
||||||
|
|
||||||
# See also `rust-toolchain.toml`
|
# See also `rust-toolchain.toml`
|
||||||
rust-version = "1.83.0"
|
rust-version = "1.83.0"
|
||||||
|
|
|
@ -26,6 +26,13 @@ pub async fn get_supported_versions_route(
|
||||||
"v1.3".to_owned(),
|
"v1.3".to_owned(),
|
||||||
"v1.4".to_owned(),
|
"v1.4".to_owned(),
|
||||||
"v1.5".to_owned(),
|
"v1.5".to_owned(),
|
||||||
|
"v1.6".to_owned(),
|
||||||
|
"v1.7".to_owned(),
|
||||||
|
"v1.8".to_owned(),
|
||||||
|
"v1.9".to_owned(),
|
||||||
|
"v1.10".to_owned(),
|
||||||
|
"v1.11".to_owned(), // Needed for Element-* to use authenticated media endpoints
|
||||||
|
"v1.12".to_owned(), // Clarifies that guests can use auth media, which Element-* might depend on support being declared
|
||||||
],
|
],
|
||||||
unstable_features: BTreeMap::from_iter([
|
unstable_features: BTreeMap::from_iter([
|
||||||
("org.matrix.e2e_cross_signing".to_owned(), true),
|
("org.matrix.e2e_cross_signing".to_owned(), true),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue