diff --git a/.vib/appsmith/cypress/cypress/integration/appsmith_spec.js b/.vib/appsmith/cypress/cypress/integration/appsmith_spec.js index 94b98f9a97..b35d2500a9 100644 --- a/.vib/appsmith/cypress/cypress/integration/appsmith_spec.js +++ b/.vib/appsmith/cypress/cypress/integration/appsmith_spec.js @@ -31,14 +31,14 @@ it('allows to create a new project', () => { cy.contains('Edit App'); }); -it('allows to change admin settings', () => { +it('allows to change workspace settings', () => { cy.login(); - cy.visit(`/settings/general`); + cy.get('span[class*="workspace-name"]').click(); + cy.get('[data-cy*="workspace-setting"]').click(); cy.fixture('user-settings').then(($us) => { - cy.get('[name*="INSTANCE_NAME"]') + cy.get('input[placeholder="Workspace Name"]') .clear() .type(`${$us.instanceName}-${random}`, { force: true }); - cy.contains('button', 'Save').should('be.enabled').click(); - cy.contains('Successfully'); + cy.get('h2').contains(`${$us.instanceName}-${random}`); }); }); diff --git a/bitnami/appsmith/Chart.lock b/bitnami/appsmith/Chart.lock index a283512d9c..2dc99e4d82 100644 --- a/bitnami/appsmith/Chart.lock +++ b/bitnami/appsmith/Chart.lock @@ -1,12 +1,12 @@ dependencies: - name: redis repository: https://charts.bitnami.com/bitnami - version: 17.6.0 + version: 17.7.3 - name: mongodb repository: https://charts.bitnami.com/bitnami - version: 13.6.4 + version: 13.6.7 - name: common repository: https://charts.bitnami.com/bitnami - version: 2.2.2 -digest: sha256:7f7237db327b2a6fa65479636a53186fd81e492037f3a2d026352103d7b2018b -generated: "2023-01-24T17:38:17.697038502Z" + version: 2.2.3 +digest: sha256:33c07d5950fc50f5614295eda183b6bd25d90238403514fb67c9ea9c4e6fc3f6 +generated: "2023-02-13T19:19:03.377313112Z" diff --git a/bitnami/appsmith/Chart.yaml b/bitnami/appsmith/Chart.yaml index b425e383e9..ef1be64b4d 100644 --- a/bitnami/appsmith/Chart.yaml +++ b/bitnami/appsmith/Chart.yaml @@ -2,7 +2,7 @@ annotations: category: CMS licenses: Apache-2.0 apiVersion: v2 -appVersion: 1.9.4 +appVersion: 1.9.7 dependencies: - condition: redis.enabled name: redis @@ -30,4 +30,4 @@ name: appsmith sources: - https://github.com/bitnami/containers/tree/main/bitnami/appsmith - https://github.com/appsmithorg/appsmith/ -version: 0.1.11 +version: 0.1.12 diff --git a/bitnami/appsmith/README.md b/bitnami/appsmith/README.md index d5b68dacbc..f7a4b1f083 100644 --- a/bitnami/appsmith/README.md +++ b/bitnami/appsmith/README.md @@ -83,7 +83,7 @@ The command removes all the Kubernetes components associated with the chart and | `diagnosticMode.args` | Args to override all containers in the deployment | `["infinity"]` | | `image.registry` | Appsmith image registry | `docker.io` | | `image.repository` | Appsmith image repository | `bitnami/appsmith` | -| `image.tag` | Appsmith image tag (immutable tags are recommended) | `1.9.4-debian-11-r1` | +| `image.tag` | Appsmith image tag (immutable tags are recommended) | `1.9.7-debian-11-r2` | | `image.digest` | Appsmith image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended) | `""` | | `image.pullPolicy` | Appsmith image pull policy | `IfNotPresent` | | `image.pullSecrets` | Appsmith image pull secrets | `[]` | @@ -381,7 +381,7 @@ The command removes all the Kubernetes components associated with the chart and | `volumePermissions.enabled` | Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` | `false` | | `volumePermissions.image.registry` | Bitnami Shell image registry | `docker.io` | | `volumePermissions.image.repository` | Bitnami Shell image repository | `bitnami/bitnami-shell` | -| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r75` | +| `volumePermissions.image.tag` | Bitnami Shell image tag (immutable tags are recommended) | `11-debian-11-r82` | | `volumePermissions.image.pullPolicy` | Bitnami Shell image pull policy | `IfNotPresent` | | `volumePermissions.image.pullSecrets` | Bitnami Shell image pull secrets | `[]` | | `volumePermissions.resources.limits` | The resources limits for the init container | `{}` | diff --git a/bitnami/appsmith/values.yaml b/bitnami/appsmith/values.yaml index 3ee9f13e0a..3590272710 100644 --- a/bitnami/appsmith/values.yaml +++ b/bitnami/appsmith/values.yaml @@ -73,7 +73,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/appsmith - tag: 1.9.4-debian-11-r1 + tag: 1.9.7-debian-11-r2 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' @@ -1114,7 +1114,7 @@ volumePermissions: image: registry: docker.io repository: bitnami/bitnami-shell - tag: 11-debian-11-r75 + tag: 11-debian-11-r82 pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace.