mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/kibana] Release 12.0.0 (#33244)
* [bitnami/kibana] Release 12.0.0 updating components versions Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> * cypress: skip promise error Signed-off-by: Miguel Ruiz <miguel.ruiz@broadcom.com> --------- Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com> Signed-off-by: Miguel Ruiz <miguel.ruiz@broadcom.com> Co-authored-by: Miguel Ruiz <miguel.ruiz@broadcom.com>
This commit is contained in:
co-authored by
Miguel Ruiz
parent
5397041481
commit
389d46f68a
@@ -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
|
||||
})
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user