diff --git a/CHANGELOG.md b/CHANGELOG.md index 7435461..5347e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [qdrant-1.15.0](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.15.0) (2025-07-18) + +- Update Qdrant to v1.15.0 +- Use correct value in readOnlyApiKey check [#340](https://github.com/qdrant/qdrant-helm/pull/340) +- Ensure that open file descriptor limit is set correctly on startup [#355](https://github.com/qdrant/qdrant-helm/pull/355) +- Fix fsGroup and runAsUser not being int64 type [#354](https://github.com/qdrant/qdrant-helm/pull/354), [#357](https://github.com/qdrant/qdrant-helm/pull/357) + ## [qdrant-1.14.1](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.14.1) (2025-05-23) - Update Qdrant to v1.14.1 diff --git a/charts/qdrant/CHANGELOG.md b/charts/qdrant/CHANGELOG.md index 510759e..7554fdf 100644 --- a/charts/qdrant/CHANGELOG.md +++ b/charts/qdrant/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## [qdrant-1.14.1](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.14.1) (2025-05-23) +## [qdrant-1.15.0](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.15.0) (2025-07-18) -- Update Qdrant to v1.14.1 -- Fix typo in README [#323](https://github.com/qdrant/qdrant-helm/pull/323) +- Update Qdrant to v1.15.0 +- Use correct value in readOnlyApiKey check [#340](https://github.com/qdrant/qdrant-helm/pull/340) +- Ensure that open file descriptor limit is set correctly on startup [#355](https://github.com/qdrant/qdrant-helm/pull/355) +- Fix fsGroup and runAsUser not being int64 type [#354](https://github.com/qdrant/qdrant-helm/pull/354), [#357](https://github.com/qdrant/qdrant-helm/pull/357) diff --git a/charts/qdrant/Chart.yaml b/charts/qdrant/Chart.yaml index 46ca1ef..cfe8453 100644 --- a/charts/qdrant/Chart.yaml +++ b/charts/qdrant/Chart.yaml @@ -13,15 +13,27 @@ maintainers: url: https://github.com/qdrant icon: https://qdrant.github.io/qdrant-helm/logo_with_text.svg type: application -version: 1.14.1 -appVersion: v1.14.1 +version: 1.15.0 +appVersion: v1.15.0 annotations: artifacthub.io/category: database artifacthub.io/changes: | - kind: added - description: Update Qdrant to v1.14.1 + description: Update Qdrant to v1.15.0 - kind: fixed - description: Fix typo in README + description: Use correct value in readOnlyApiKey check links: - name: Github Issue - url: https://github.com/qdrant/qdrant-helm/pull/323 + url: https://github.com/qdrant/qdrant-helm/pull/340 + - kind: fixed + description: Ensure that open file descriptor limit is set correctly on startup + links: + - name: Github Issue + url: https://github.com/qdrant/qdrant-helm/pull/355 + - kind: fixed + description: Fix fsGroup and runAsUser not being int64 type + links: + - name: Github Issue + url: https://github.com/qdrant/qdrant-helm/pull/354 + - name: Github Issue + url: https://github.com/qdrant/qdrant-helm/pull/357