Skip to content

Commit 5a548b7

Browse files
authored
security fix: tracing-subscriber upgraded to prevent CVE-2025-58160 (#98)
* security fix: tracing-subscriber upgraded to prevent CVE-2025-58160 * chore: updated CI to Rust v1.89 * chore: updated deny config
1 parent ca145a7 commit 5a548b7

File tree

9 files changed

+478
-542
lines changed

9 files changed

+478
-542
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: EmbarkStudios/cargo-deny-action@v2
1818
with:
19-
rust-version: "1.85"
19+
rust-version: "1.89"
2020

2121
cargo-fmt-clippy:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/checkout@v4
25-
- name: Update the Rust toolchain to the latest stable version
26-
run: rustup default 1.85 && rustup component add rustfmt && rustup component add clippy && rustc --version
25+
- name: Update the Rust toolchain
26+
run: rustup default 1.89 && rustup component add rustfmt && rustup component add clippy && rustc --version
2727
- name: Cargo formatting check
2828
run: cargo fmt --all -- --check
2929
- name: Cargo clippy check
@@ -35,16 +35,16 @@ jobs:
3535
- uses: actions/checkout@v4
3636
- name: Build and run the docker services
3737
run: docker compose up -d
38-
- name: Update the Rust toolchain to the latest stable version
39-
run: rustup default 1.85 && rustc --version
38+
- name: Update the Rust toolchain
39+
run: rustup default 1.89 && rustc --version
4040
- name: Run tests
4141
run: cargo test --verbose
4242

4343
build:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- uses: actions/checkout@v4
47-
- name: Update the Rust toolchain to the latest stable version
48-
run: rustup default 1.85 && rustc --version
47+
- name: Update the Rust toolchain
48+
run: rustup default 1.89 && rustc --version
4949
- name: Build
5050
run: cargo build --verbose

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.1.5 (2025-09-17)
6+
7+
* security fix: tracing-subscriber upgraded to prevent CVE-2025-58160
8+
* refactor: upgrade to Rust v1.89
9+
* chore: updated dependencies
10+
511
## 0.1.4 (2025-04-09)
612

713
* chore: updated dependencies

0 commit comments

Comments
 (0)