You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Changed several methods in `KodeBridgeError` to `const fn` for improved performance.
- Updated `Response` struct methods in `http_client.rs` to `const fn`.
- Modified `HttpResponse` and `StreamResponse` constructors to `const fn`.
- Enhanced IPC client and server code for better clarity and performance.
- Refactored connection pool methods to use `Arc::clone` for thread safety.
- Improved retry logic with `const fn` where applicable.
- Adjusted parser cache to use boxed slices for headers.
- General code cleanup and consistency improvements across multiple files.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
9
+
## [0.3.5] - 2025-12-15
10
+
11
+
### Fixed
12
+
- Avoid large stack arrays in `ipc_http_server` by allocating HTTP header storage on the heap (fixes Clippy `large-stack-arrays`).
13
+
- Replace `.clone()` on `Arc<T>` with `Arc::clone(&...)` across tests and examples to satisfy Clippy `clone_on_ref_ptr`.
14
+
- Address explicit auto-deref and other small Clippy warnings in `ipc_http_server` and related modules.
15
+
- Improve benches/examples error handling to address `unwrap_used`/`expect_used` lints; where appropriate, replace `unwrap()` with `expect()` and add targeted `#[allow(...)]` for benign bench/example code.
16
+
- Minor example fixes (e.g., replace `vec!` with array in `examples/stream_server.rs`) and other cleanup.
17
+
18
+
### Changed
19
+
- Code hygiene and small refactors to satisfy clippy and improve robustness across tests, benches, and examples.
20
+
21
+
### Internal
22
+
- Updated examples and benches: `examples/stream_server.rs`, `examples/traffic_monitor.rs`, `examples/metrics_demo.rs`, `examples/concurrent_proxy_test.rs`, and `benches/bench_version.rs`.
23
+
- Re-ran `cargo clippy` and iterated until the workspace was clean of the reported lints.
0 commit comments