Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## [0.21.0] - 2026-09-01

### 🚀 Features

- *(logging)* Remove Kafka log support and migrate to VictoriaLogs exclusively
- *(logging)* Remove VictoriaLogs feature flag and make support always enabled
- *(memory)* Classify denied memory growth as out-of-memory during instantiation
- *(logging)* Revert Kafka log variant to Log enum
- *(metrics)* Add live/peak gauges for concurrent WASM instances
- *(redis)* Implement connection pooling for Redis backend
- *(kvrocks)* Add pool size limits for RedisStore connections

### 🐛 Bug Fixes

- Filter out cdn-loop header and ensure content-type fallback behavior
- *(hostnames)* Enhance hostname validation to reject loopback and cloud metadata addresses
- *(instances)* Update peak gauge description and logic for accurate scraping
- *(http)* Classify execution errors and update timeout handling
- *(tracing)* Change span type from info to error for better logging
- *(tracing)* Ensure proper span context during async request processing
- Unify timeout handling for elapsed deadlines

### 🚜 Refactor

- *(tests)* Improve readability of assertions in test cases

### ⚡ Performance

- Selective executor cache invalidation and non-blocking cold starts

### ⚙️ Miscellaneous Tasks

- *(dependencies)* Update various crate versions in Cargo.lock
- *(metrics)* Remove redundant tokio metrics, add client/kind labels, fix docs
- Remove FOSSA configuration file
## [0.20.0] - 2026-07-13

### 🚀 Features
Expand All @@ -8,6 +43,10 @@
### 🚜 Refactor

- Improve Redis error tracing with detailed context and adjust instrumentation annotations

### ⚙️ Miscellaneous Tasks

- Release
## [0.19.0] - 2026-06-30

### 🚀 Features
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.20.0"
version = "0.21.0"
edition = "2024"
publish = false
authors = ["FastEdge Development Team"]
Expand Down
Loading