diff --git a/.vib/ghost/cypress/cypress/integration/ghost_spec.js b/.vib/ghost/cypress/cypress/integration/ghost_spec.js index 44f1dc20e7..832479c6eb 100644 --- a/.vib/ghost/cypress/cypress/integration/ghost_spec.js +++ b/.vib/ghost/cypress/cypress/integration/ghost_spec.js @@ -9,16 +9,16 @@ import { random } from '../support/utils'; it('allows to create and publish a new post with an image', () => { cy.login(); cy.visit('/ghost/#/posts'); - cy.contains('New post').click(); - cy.get('[type="file"]').selectFile( - 'cypress/fixtures/images/test_image.jpeg', - { force: true } - ); + cy.get('span').contains('New post').click(); cy.fixture('posts').then((posts) => { cy.get('textarea[placeholder="Post title"]').type( `${posts.newPost.title}-${random}` ); - cy.get('article div[contenteditable="true"]').type(posts.newPost.content, { + cy.get('div[contenteditable="true"]').type(posts.newPost.content, { + force: true, + }); + cy.get('[type="file"]').selectFile( + 'cypress/fixtures/images/test_image.jpeg', { force: true, }); }); diff --git a/bitnami/ghost/Chart.lock b/bitnami/ghost/Chart.lock index 714235717c..610ed83ab0 100644 --- a/bitnami/ghost/Chart.lock +++ b/bitnami/ghost/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: mysql repository: oci://registry-1.docker.io/bitnamicharts - version: 9.12.3 + version: 9.12.4 - name: common repository: oci://registry-1.docker.io/bitnamicharts - version: 2.13.1 -digest: sha256:4f645e94ac6870a910a5c05a4b54bbc7a426d96c80a02583427099a22687e22f -generated: "2023-10-04T19:34:06.048411809Z" + version: 2.13.2 +digest: sha256:ee0514afb41293fcee7c138ce91e6367314d1a92e1b655e29d5f405984f1c6d5 +generated: "2023-10-09T17:10:34.918418651Z" diff --git a/bitnami/ghost/Chart.yaml b/bitnami/ghost/Chart.yaml index c5af3e543f..66d95cba00 100644 --- a/bitnami/ghost/Chart.yaml +++ b/bitnami/ghost/Chart.yaml @@ -6,11 +6,11 @@ annotations: licenses: Apache-2.0 images: | - name: ghost - image: docker.io/bitnami/ghost:5.67.0-debian-11-r0 + image: docker.io/bitnami/ghost:5.68.0-debian-11-r0 - name: os-shell image: docker.io/bitnami/os-shell:11-debian-11-r86 apiVersion: v2 -appVersion: 5.67.0 +appVersion: 5.68.0 dependencies: - condition: mysql.enabled name: mysql @@ -40,4 +40,4 @@ maintainers: name: ghost sources: - https://github.com/bitnami/charts/tree/main/bitnami/ghost -version: 19.5.12 +version: 19.5.13 diff --git a/bitnami/ghost/README.md b/bitnami/ghost/README.md index 8f1e9d200f..93b4260c88 100644 --- a/bitnami/ghost/README.md +++ b/bitnami/ghost/README.md @@ -84,7 +84,7 @@ The command removes all the Kubernetes components associated with the chart and | ------------------- | ----------------------------------------------------------------------------------------------------- | --------------------- | | `image.registry` | Ghost image registry | `docker.io` | | `image.repository` | Ghost image repository | `bitnami/ghost` | -| `image.tag` | Ghost image tag (immutable tags are recommended) | `5.67.0-debian-11-r0` | +| `image.tag` | Ghost image tag (immutable tags are recommended) | `5.68.0-debian-11-r0` | | `image.digest` | Ghost image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` | | `image.pullPolicy` | Ghost image pull policy | `IfNotPresent` | | `image.pullSecrets` | Ghost image pull secrets | `[]` | diff --git a/bitnami/ghost/values.yaml b/bitnami/ghost/values.yaml index 7bb80fff24..84dd71a933 100644 --- a/bitnami/ghost/values.yaml +++ b/bitnami/ghost/values.yaml @@ -73,7 +73,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/ghost - tag: 5.67.0-debian-11-r0 + tag: 5.68.0-debian-11-r0 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'