Skip to content

Commit 4e91c2c

Browse files
committed
Version 0.1.1
--- Signed-off-by: Guillaume Moutier <[email protected]> Co-authored-by: Claude
1 parent c1d6e9f commit 4e91c2c

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,46 @@ All notable changes to this project are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.1] - 2025-10-17
9+
10+
This patch release improves test reliability, server startup performance, and handles edge cases in database migrations.
11+
12+
### Fixed
13+
14+
- **Orphaned API Key Handling**: Backend now gracefully handles API keys that exist in the database but were deleted in LiteLLM
15+
- Database migration marks orphaned keys with `orphaned_` prefix instead of failing
16+
- Eliminates verbose error logging during backfill operations
17+
- Prevents migration failures due to missing keys in LiteLLM
18+
- Improved error handling for 404 responses during key synchronization
19+
20+
- **Server Startup Performance**: Backend initialization is now faster and more resilient
21+
- Moved LiteLLM-dependent operations to background tasks using `setImmediate`
22+
- Server starts immediately without waiting for external service operations
23+
- Non-blocking initialization prevents startup delays
24+
- Better handling of external service availability during boot
25+
26+
- **Frontend Test Reliability**: Fixed missing mock endpoint causing test failures
27+
- Added `/api/v1/banners` mock endpoint to test handlers
28+
- BannerProvider now works correctly in Layout component tests
29+
- Eliminated test failures related to banner initialization
30+
31+
- **Configuration**: Minor backend configuration adjustments
32+
- Updated admin analytics configuration handling
33+
- Package dependency updates
34+
35+
### Documentation
36+
37+
- Updated deployment version examples in OpenShift configuration
38+
- `deployment/openshift/README.md` updated with v0.1.0 reference
39+
- `deployment/openshift/user-values.env.example` synchronized
40+
41+
### Contributors
42+
43+
- Guillaume Moutier
44+
- Co-authored-by: Claude (AI pair programming assistant)
45+
46+
---
47+
848
## [0.1.0] - 2025-10-17
949

1050
This is a significant milestone release introducing three major enterprise-grade features that fundamentally expand the platform's capabilities for model governance, system observability, and operational efficiency.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "litemaas",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "LiteLLM User Application - Model subscription and management platform",
55
"private": true,
66
"workspaces": [

0 commit comments

Comments
 (0)