diff --git a/CHANGELOG.md b/CHANGELOG.md index 64eba43..b9abfd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [qdrant-0.8.5](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.5) (2024-04-25) + +- Update Qdrant to v1.9.0 +- Allow ports to be configured as NodePort [#165](https://github.com/qdrant/qdrant-helm/pull/165) + ## [qdrant-0.8.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.4) (2024-04-03) - Update Qdrant to v1.8.4 diff --git a/charts/qdrant/CHANGELOG.md b/charts/qdrant/CHANGELOG.md index 12cec67..38d2d50 100644 --- a/charts/qdrant/CHANGELOG.md +++ b/charts/qdrant/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [qdrant-0.8.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.4) (2024-04-03) +## [qdrant-0.8.5](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.5) (2024-04-25) -- Update Qdrant to v1.8.4 -- Allow configurable podManagementPolicy [#158](https://github.com/qdrant/qdrant-helm/pull/158) +- Update Qdrant to v1.9.0 +- Allow ports to be configured as NodePort [#165](https://github.com/qdrant/qdrant-helm/pull/165) diff --git a/charts/qdrant/Chart.yaml b/charts/qdrant/Chart.yaml index 7e2241f..ebc4c9e 100644 --- a/charts/qdrant/Chart.yaml +++ b/charts/qdrant/Chart.yaml @@ -13,15 +13,15 @@ maintainers: url: https://github.com/qdrant icon: https://qdrant.github.io/qdrant-helm/logo_with_text.svg type: application -version: 0.8.4 -appVersion: v1.8.4 +version: 0.8.5 +appVersion: v1.9.0 annotations: artifacthub.io/category: database artifacthub.io/changes: | - kind: added - description: Update Qdrant to v1.8.4 + description: Update Qdrant to v1.9.0 - kind: added - description: Allow configurable podManagementPolicy + description: Allow ports to be configured as NodePort links: - name: Github Issue - url: https://github.com/qdrant/qdrant-helm/pull/158 + url: https://github.com/qdrant/qdrant-helm/pull/165 diff --git a/test/integration/api_key.bats b/test/integration/api_key.bats index 305c7f5..fbf2454 100644 --- a/test/integration/api_key.bats +++ b/test/integration/api_key.bats @@ -11,10 +11,10 @@ setup_file() { @test "api key authentication fails with no key" { run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections - [ "${output}" = "Must provide an API key or an Authorization bearer token - 403" ] + [ "${output}" = "Must provide an API key or an Authorization bearer token - 401" ] } @test "api key authentication fails with wrong key" { run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections -H 'api-key: invalid' - [ "${output}" = "Invalid API key or JWT token - 403" ] + [ "${output}" = "Invalid API key or JWT - 401" ] } diff --git a/test/integration/read_only_api_key.bats b/test/integration/read_only_api_key.bats index 63f719e..3304afc 100644 --- a/test/integration/read_only_api_key.bats +++ b/test/integration/read_only_api_key.bats @@ -11,10 +11,10 @@ setup_file() { @test "read-only api key authentication fails with no key" { run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections - [ "${output}" = "Must provide an API key or an Authorization bearer token - 403" ] + [ "${output}" = "Must provide an API key or an Authorization bearer token - 401" ] } @test "read-only api key authentication fails with wrong key" { run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections -H 'api-key: invalid' - [ "${output}" = "Invalid API key or JWT token - 403" ] + [ "${output}" = "Invalid API key or JWT - 401" ] }