Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/odoo] Release 28.0.0 #29820

Merged
merged 3 commits into from
Oct 8, 2024
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: 4 additions & 4 deletions .vib/odoo/cypress/cypress/e2e/odoo.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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');
});
8 changes: 6 additions & 2 deletions bitnami/odoo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))

## <small>27.0.1 (2024-10-05)</small>

* [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)

Expand Down
6 changes: 3 additions & 3 deletions bitnami/odoo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion bitnami/odoo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading