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
8 changes: 7 additions & 1 deletion .vib/kibana/cypress/cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')")) {
Expand All @@ -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
})
6 changes: 5 additions & 1 deletion bitnami/kibana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

## <small>11.5.3 (2025-03-25)</small>

Expand Down
8 changes: 4 additions & 4 deletions bitnami/kibana/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions bitnami/kibana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down