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
11 changes: 11 additions & 0 deletions core/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- feat: added compaction support for Anthropic provider
- feat: MCP config validation for configs in config.json
- feat: exposed max-open-connections for provider domains as a configurable field
- fix: include function_call items in streaming response.completed output (thanks [@majiayu000](https://github.com/majiayu000)!)
- fix: Bedrock API key authentication without requiring bedrock_key_config (thanks [@eliasbiondo](https://github.com/eliasbiondo)!)
- fix: Bedrock fallback to estimated token count when count-tokens API is unsupported (thanks [@Edward-Upton](https://github.com/Edward-Upton)!)
- fix: OpenAI-to-Anthropic-to-OpenAI thinking content conversion
- fix: Anthropic header selection across providers
- fix: Gemini flow for OpenAI-compatible integration
- fix: removed map marshals from core for improved serialization
- fix: PG query optimizations
2 changes: 1 addition & 1 deletion core/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.11
1.4.12
6 changes: 6 additions & 0 deletions framework/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- feat: added model catalog support
- feat: MCP logs flow for high-volume log ingestion
- fix: dashboard and logs list query optimizations
- fix: PG query optimizations for materialized views
- fix: truncate names exceeding 64 characters
- chore: weaviate upgrade
2 changes: 1 addition & 1 deletion framework/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.30
1.2.31
1 change: 1 addition & 0 deletions plugins/governance/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/governance/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.30
1.4.31
1 change: 1 addition & 0 deletions plugins/jsonparser/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/jsonparser/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.29
1.4.30
1 change: 1 addition & 0 deletions plugins/litellmcompat/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/litellmcompat/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.19
0.0.20
1 change: 1 addition & 0 deletions plugins/logging/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/logging/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.30
1.4.31
1 change: 1 addition & 0 deletions plugins/maxim/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/maxim/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.28
1.5.29
1 change: 1 addition & 0 deletions plugins/mocker/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/mocker/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.29
1.4.30
1 change: 1 addition & 0 deletions plugins/otel/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/otel/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.29
1.1.30
1 change: 1 addition & 0 deletions plugins/semanticcache/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- fix: deterministic tools_hash and params_hash for consistent cache lookups (thanks [@ragokan](https://github.com/ragokan)!)
2 changes: 1 addition & 1 deletion plugins/semanticcache/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.28
1.4.29
1 change: 1 addition & 0 deletions plugins/telemetry/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- chore: upgraded core to v1.4.12 and framework to v1.2.31
2 changes: 1 addition & 1 deletion plugins/telemetry/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.30
1.4.31
20 changes: 20 additions & 0 deletions transports/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## ✨ Features

- **Custom SSE Stream Reader** — Replaced fasthttp's default stream reader with a custom implementation to reduce bursts in SSE streaming
- **MCP Config Validation** — Added validation for MCP tool configurations in config.json
- **Max Open Connections** — Exposed max-open-connections for provider domains as a configurable field
- **Dashboard improvements** - Added a bunch of new tabs and new graphs to the dashboard including Model Ranking, Cache usage, MCP usage etc
- **Improved dashboard and logs performance** - We have improved LLM logs and Dashboard UI performance (~1400x faster) for large number of logs.

## 🐞 Fixed

- **Passthrough Streaming** — Fixed passthrough streaming responses being buffered instead of streamed (thanks [@jasonwells](https://github.com/jasonwells)!)
- **MCP Notifications** — Fixed MCP notifications returning incorrect status code (thanks [@tcx4c70](https://github.com/tcx4c70)!)
- **Streaming Function Calls** — Fixed function_call items not included in streaming response.completed output (thanks [@majiayu000](https://github.com/majiayu000)!)
- **Bedrock API Key Auth** — Fixed Bedrock API key authentication without requiring bedrock_key_config (thanks [@eliasbiondo](https://github.com/eliasbiondo)!)
- **Bedrock Token Count Fallback** — Added fallback to estimated token count when count-tokens API is unsupported (thanks [@Edward-Upton](https://github.com/Edward-Upton)!)
- **Anthropic Thinking Fixes** — Fixed OpenAI-to-Anthropic-to-OpenAI thinking content conversion
- **Anthropic Header Selection** — Fixed Anthropic header selection across providers
- **Gemini OpenAI Integration** — Fixed Gemini flow for OpenAI-compatible integration
- **Semantic Cache Hashing** — Fixed deterministic tools_hash and params_hash in semantic cache (thanks [@ragokan](https://github.com/ragokan)!)
- **Anthropic Compaction** — Added compaction support for Anthropic provider
2 changes: 1 addition & 1 deletion transports/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.14
1.4.15
Loading