diff --git a/.vib/odoo/cypress/cypress/e2e/odoo.cy.js b/.vib/odoo/cypress/cypress/e2e/odoo.cy.js index e121bb0d1fbd07..56743d23d1d3f8 100644 --- a/.vib/odoo/cypress/cypress/e2e/odoo.cy.js +++ b/.vib/odoo/cypress/cypress/e2e/odoo.cy.js @@ -23,8 +23,8 @@ it('allows installing/uninstalling an application and inviting new users', () => } }) - cy.get('[title="Home Menu"]').click(); - cy.contains('Settings').click(); + cy.get('[title="Home Menu"]').click({ force: true }); + cy.visit('odoo/settings'); cy.fixture('users').then((user) => { cy.get('.o_user_emails').type(`${random}.${user.newUser.email}`); cy.contains('button', 'Invite').click(); @@ -37,12 +37,12 @@ it('allows installing/uninstalling an application and inviting new users', () => cy.contains('a', 'Apps').click(); cy.get('[role="searchbox"]').type('Invoicing {enter}'); cy.contains('1-1'); - cy.contains('[role="article"]', 'Invoicing').within(() => { + cy.contains('article', 'Invoicing').within(() => { cy.get('button[class*="dropdown-toggle"]').click({ force: true }); }); cy.contains('Uninstall').click({ force: true }); cy.get('[name*="uninstall"]').click(); cy.reload({timeout: 300000}); - cy.get('[title="Home Menu"]').click(); + cy.get('[title="Home Menu"]').click({ force: true }); cy.contains('a', 'Invoicing').should('not.exist'); }); diff --git a/bitnami/odoo/CHANGELOG.md b/bitnami/odoo/CHANGELOG.md index a21e6323f747fc..ad24317d6bedb4 100644 --- a/bitnami/odoo/CHANGELOG.md +++ b/bitnami/odoo/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -## 27.0.1 (2024-10-05) +## 28.0.0 (2024-10-08) -* [bitnami/odoo] Release 27.0.1 ([#29781](https://github.com/bitnami/charts/pull/29781)) +* [bitnami/odoo] Release 28.0.0 ([#29820](https://github.com/bitnami/charts/pull/29820)) + +## 27.0.1 (2024-10-05) + +* [bitnami/odoo] Release 27.0.1 (#29781) ([5983725](https://github.com/bitnami/charts/commit/59837258ad474817d39f0dd747bac57556fce055)), closes [#29781](https://github.com/bitnami/charts/issues/29781) ## 27.0.0 (2024-10-03) diff --git a/bitnami/odoo/Chart.yaml b/bitnami/odoo/Chart.yaml index 67e1f7b1553619..c969001c79ad37 100644 --- a/bitnami/odoo/Chart.yaml +++ b/bitnami/odoo/Chart.yaml @@ -6,9 +6,9 @@ annotations: licenses: Apache-2.0 images: | - name: odoo - image: docker.io/bitnami/odoo:17.0.20241005-debian-12-r0 + image: docker.io/bitnami/odoo:18.0.20241005-debian-12-r0 apiVersion: v2 -appVersion: 17.0.20241005 +appVersion: 18.0.20241005 dependencies: - condition: postgresql.enabled name: postgresql @@ -34,4 +34,4 @@ maintainers: name: odoo sources: - https://github.com/bitnami/charts/tree/main/bitnami/odoo -version: 27.0.1 +version: 28.0.0 diff --git a/bitnami/odoo/values.yaml b/bitnami/odoo/values.yaml index 72439a81fb3a32..1935431b8fae12 100644 --- a/bitnami/odoo/values.yaml +++ b/bitnami/odoo/values.yaml @@ -81,7 +81,7 @@ diagnosticMode: image: registry: docker.io repository: bitnami/odoo - tag: 17.0.20241005-debian-12-r0 + tag: 18.0.20241005-debian-12-r0 digest: "" ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'