Bump 1.2.0

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-07-04 00:43:33 +00:00
parent b68cff3b2f
commit 3d88767977
4 changed files with 28 additions and 26 deletions

16
Cargo.lock generated
View File

@@ -4793,7 +4793,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]] [[package]]
name = "tuwunel" name = "tuwunel"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"clap", "clap",
"const-str", "const-str",
@@ -4822,7 +4822,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_admin" name = "tuwunel_admin"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"clap", "clap",
"const-str", "const-str",
@@ -4845,7 +4845,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_api" name = "tuwunel_api"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum", "axum",
@@ -4878,7 +4878,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_core" name = "tuwunel_core"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"argon2", "argon2",
"arrayvec", "arrayvec",
@@ -4937,7 +4937,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_database" name = "tuwunel_database"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"async-channel", "async-channel",
"const-str", "const-str",
@@ -4956,7 +4956,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_macros" name = "tuwunel_macros"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"itertools 0.14.0", "itertools 0.14.0",
"proc-macro2", "proc-macro2",
@@ -4966,7 +4966,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_router" name = "tuwunel_router"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"axum", "axum",
"axum-client-ip", "axum-client-ip",
@@ -5000,7 +5000,7 @@ dependencies = [
[[package]] [[package]]
name = "tuwunel_service" name = "tuwunel_service"
version = "1.1.0" version = "1.2.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"base64", "base64",

View File

@@ -29,7 +29,7 @@ license = "Apache-2.0"
readme = "README.md" readme = "README.md"
repository = "https://github.com/matrix-construct/tuwunel" repository = "https://github.com/matrix-construct/tuwunel"
rust-version = "1.86.0" rust-version = "1.86.0"
version = "1.1.0" version = "1.2.0"
[workspace.metadata.crane] [workspace.metadata.crane]
name = "tuwunel" name = "tuwunel"

View File

@@ -1,4 +1,4 @@
# Tuwunel <sup>💕</sup> # Tuwunel<sup>💕</sup>
![GitHub License](https://img.shields.io/github/license/matrix-construct/tuwunel?style=flat&color=%238A2BE2) ![GitHub License](https://img.shields.io/github/license/matrix-construct/tuwunel?style=flat&color=%238A2BE2)
![GitHub Created At](https://img.shields.io/github/created-at/matrix-construct/tuwunel?style=flat&color=%238A2BE2) ![GitHub Created At](https://img.shields.io/github/created-at/matrix-construct/tuwunel?style=flat&color=%238A2BE2)
@@ -160,7 +160,7 @@ and not all project staff will be present there. There will be at least some pre
offer assistance so long as the room remains in minimally good standing. offer assistance so long as the room remains in minimally good standing.
## Tuwunel <sup>💕</sup> ## Tuwunel<sup>💕</sup>
Tuwunel's theme is **empathy** in communication defined by the works of Tuwunel's theme is **empathy** in communication defined by the works of
[Edith Stein](https://plato.stanford.edu/entries/stein/). Empathy is the basis for how we approach [Edith Stein](https://plato.stanford.edu/entries/stein/). Empathy is the basis for how we approach

View File

@@ -1,25 +1,27 @@
# Tuwunel 1.1.0 # Tuwunel 1.2.0
June 19, 2025 July 3, 2025
All dependencies have been fully upgraded for the first time since the conduwuit transition. RocksDB is now synchronized to 10.2.1-tuwunel for all builders. The Nix build itself has now been fully migrated from conduwuit; special thanks to @wkordalski for making this happen. Thanks to @Askhalion for opening a NixOS package request which you can [vote for here](https://github.com/NixOS/nixpkgs/issues/415469). An [Arch package](https://aur.archlinux.org/packages/tuwunel) has also been created in the AUR courtesy of @drrossum in addition to the transitional package setup by @Kimiblock which we failed to acknowledge during the first release. The RPM package now has systemd and proper installation added thanks to a report by @alythemonk. Appservices can now be declared in the config file. Thanks to @teidesu for this idea. Each appservice can be configured using a TOML section. For example `[global.appservice.mautrix-telegram]` will create an appservice identified as mautrix-telegram. The configuration is similar to the standard Matrix registration.yaml. The appservice will be inactive when commented out. Thanks to @obioma for helping to get the TOML syntax right.
ARMv8 builds are now supported and bundled with this release. Thanks to @zaninime and @clement-escolano for reminding us. Optimized builds are now available with this release. Multi-platform docker images are available for these optimized builds for everyone using the special-tags like `:latest`, `:preview` or `:main`. The performance boost will be automatic for most users. The standalone binaries, Deb and RPM packages are also built with optimized variants. **Please note the naming scheme has changed and links may be different.**
JSON Web Token logins are now supported. This feature was commissioned and made public by an enterprise sponsor. The type `org.matrix.login.jwt` is now recognized.
### New Features ### New Features
- JWT login support. - Declarative Appservices.
### Follow-up Features - Optimized packages & Multi-platform docker images.
- aarch64 build and packages.
- NixOS build support. (thanks @wkordalski and @coolGi69)
- Dependency upgrades, including Axum 0.8. (thanks @dasha_uwu)
- RPM package systemd and proper installation scripts.
### Bug Fixes ### Bug Fixes
- Changing passwords for pre-migration users was precluded by an error. - Special thanks to @orhtej2 for fixing several bugs with LDAP login related to the admin feature. An `admin_base_dn` issue was fixed in https://github.com/matrix-construct/tuwunel/pull/92 and an admin filter issue in https://github.com/matrix-construct/tuwunel/pull/93.
Special thanks to @teidesu for making a superb report about this.
- We owe a lot of gratitude to the effort of @meovary150 for figuring out that using the same `as_token` for more than one appservice can cause obscure bugs. Configurations are now checked to prevent this.
- Thanks to @SKFE396 for reporting that LZ4 support for RocksDB was missing from the built release packages and images. This has now been added back.
- Thanks to @syobocat for debugging a compile error on FreeBSD where our proc-macros were provided empty values for `std::env::args()`.
- Thanks to @k3-cat and @periodic for identifying compression-related issues for the OCI images which failed to load in Podman.
- Thanks to @dasha_uwu for perhaps the third week in a row now, this time for pointing out that `ldap3` was being included as a default Cargo dependency. It's now been properly isolated under its feature-gate.