Skip to content

Commit ef1eae8

Browse files
authored
Fix: bump hiqlite for WAL cleanup (#1233)
* bump hiqlite to fix WAL cleanup * update changelog
1 parent 5132c85 commit ef1eae8

File tree

3 files changed

+64
-29
lines changed

3 files changed

+64
-29
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.32.6
4+
5+
### Bugfix
6+
7+
- In `hiqlite` as an external dependency, it was possible to get into a situation where the WAL cleanup of not anymore
8+
needed logs / files was not working as expected. This could lead to an endlessly filling up volume. This version
9+
bumps `hiqlite` to the latest, fixed version. With the next snapshot creation (by default every 10k logs), all old
10+
WAL files will be cleaned up.
11+
[]()
12+
313
## v0.32.5
414

515
### Bugfix

Cargo.lock

Lines changed: 50 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["src/*"]
44
exclude = ["rauthy-client"]
55

66
[workspace.package]
7-
version = "0.32.5"
7+
version = "0.32.6"
88
edition = "2024"
99
authors = ["Sebastian Dobe <sebastiandobe@mailbox.org>"]
1010
license = "Apache-2.0"
@@ -66,10 +66,10 @@ futures-util = "0.3"
6666
gethostname = "1"
6767
hex = { version = "0.4", features = ["serde"] }
6868
hickory-resolver = "0.25.2"
69-
hiqlite = { version = "0.10.1", features = [
69+
hiqlite = { version = "0.11.0", features = [
7070
"cache", "counters", "dashboard", "listen_notify_local", "webpki-roots"
7171
] }
72-
hiqlite-macros = { version = "0.10" }
72+
hiqlite-macros = { version = "0.11" }
7373
hmac-sha256 = { version = "1.1.7", features = ["traits010"] }
7474
hmac-sha512 = { version = "1.1.5", features = ["traits010", "sha384"] }
7575
image = { version = "0.25.1", default-features = false, features = [
@@ -107,7 +107,7 @@ rust-embed = "8.5.0"
107107
rustls = { version = "0.23", default-features = false, features = ["logging", "std", "tls12", "ring"] }
108108
rustls-pki-types = "1.4.1"
109109
rustls-pemfile = "2.1.2"
110-
s3-simple = "0.5"
110+
s3-simple = "0.6"
111111
semver = { version = "1.0.19", features = ["serde"] }
112112
serde = { version = "1", features = ["derive"] }
113113
serde_json = "1"

0 commit comments

Comments
 (0)