diff --git a/.vib/kibana/cypress/cypress/support/commands.js b/.vib/kibana/cypress/cypress/support/commands.js index f5824ef9318d92..539f2aeb96ba4c 100644 --- a/.vib/kibana/cypress/cypress/support/commands.js +++ b/.vib/kibana/cypress/cypress/support/commands.js @@ -23,7 +23,7 @@ Cypress.Commands.add('forceClick', { prevSubject: 'element' }, (subject) => { cy.wrap(subject).click({ force: true }); }); -Cypress.on('uncaught:exception', (err) => { +Cypress.on('uncaught:exception', (err, runnable, promise) => { // We expect an error "Cannot read properties of undefined (reading 'includes')" // during the installation of a template so we add an exception if (err.message.includes("Cannot read properties of undefined (reading 'includes')")) { @@ -32,6 +32,12 @@ Cypress.on('uncaught:exception', (err) => { if(err.message.includes("ResizeObserver loop")){ return false; } + // when the exception originated from an unhandled promise + // rejection, the promise is provided as a third argument + // you can turn off failing the test in this case + if (promise) { + return false + } // we still want to ensure there are no other unexpected // errors, so we let them fail the test }) diff --git a/bitnami/kibana/CHANGELOG.md b/bitnami/kibana/CHANGELOG.md index 64e60a55224bfe..a49c974814e591 100644 --- a/bitnami/kibana/CHANGELOG.md +++ b/bitnami/kibana/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog +## 12.0.0 (2025-04-29) + +* [bitnami/kibana] Release 12.0.0 ([#33244](https://github.com/bitnami/charts/pull/33244)) + ## 11.6.0 (2025-04-04) -* [bitnami/kibana] Set `usePasswordFiles=true` by default ([#32636](https://github.com/bitnami/charts/pull/32636)) +* [bitnami/kibana] Set `usePasswordFiles=true` by default (#32636) ([5ee2a7e](https://github.com/bitnami/charts/commit/5ee2a7edaf8731c0590c65b47b9bd5d9201386fa)), closes [#32636](https://github.com/bitnami/charts/issues/32636) ## 11.5.3 (2025-03-25) diff --git a/bitnami/kibana/Chart.yaml b/bitnami/kibana/Chart.yaml index 08eff25c241e70..d16caec0e72d42 100644 --- a/bitnami/kibana/Chart.yaml +++ b/bitnami/kibana/Chart.yaml @@ -7,11 +7,11 @@ annotations: licenses: Apache-2.0 images: | - name: kibana - image: docker.io/bitnami/kibana:8.17.4-debian-12-r0 + image: docker.io/bitnami/kibana:9.0.0-debian-12-r0 - name: os-shell - image: docker.io/bitnami/os-shell:12-debian-12-r40 + image: docker.io/bitnami/os-shell:12-debian-12-r43 apiVersion: v2 -appVersion: 8.17.4 +appVersion: 9.0.0 dependencies: - name: common repository: oci://registry-1.docker.io/bitnamicharts @@ -33,4 +33,4 @@ maintainers: name: kibana sources: - https://github.com/bitnami/charts/tree/main/bitnami/kibana -version: 11.6.0 +version: 12.0.0 diff --git a/bitnami/kibana/values.yaml b/bitnami/kibana/values.yaml index 2fc3fc2cd6d25f..a22c454cfeab36 100644 --- a/bitnami/kibana/values.yaml +++ b/bitnami/kibana/values.yaml @@ -89,7 +89,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/kibana - tag: 8.17.4-debian-12-r0 + tag: 9.0.0-debian-12-r0 digest: "" ## Specify a imagePullPolicy ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images @@ -213,7 +213,7 @@ volumePermissions: image: registry: docker.io repository: bitnami/os-shell - tag: 12-debian-12-r40 + tag: 12-debian-12-r43 digest: "" pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets.