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/sonarqube] Release 5.2.15 #29674

Merged
merged 4 commits into from
Oct 2, 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
3 changes: 2 additions & 1 deletion .vib/sonarqube/cypress/cypress/e2e/sonarqube.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ it('allows adding a project and a quality gate', () => {
cy.visit('/projects');
// Step 1: Create a project
cy.fixture('projects').then((projects) => {
// Wait for DOM content to load
cy.wait(5000);
cy.get('body').then(($body) => {
if ($body.find('#project-creation-menu-trigger').is(':visible')) {
cy.get('#project-creation-menu-trigger').click();
Expand All @@ -30,7 +32,6 @@ it('allows adding a project and a quality gate', () => {
cy.get('[type="submit"]').contains('Create').click();
cy.contains('Unlock editing').click();
cy.contains('Add Condition').click({force: true});
cy.contains('Select').click({force: true});
cy.contains('Lines to Cover').click({force: true});
cy.get('#condition-threshold').type(qualityGates.newQualityGate.threshold);
cy.get('[type="submit"]').click();
Expand Down
8 changes: 6 additions & 2 deletions bitnami/sonarqube/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 5.2.14 (2024-09-30)
## 5.2.15 (2024-10-02)

* [bitnami/sonarqube] Release 5.2.14 ([#29658](https://github.com/bitnami/charts/pull/29658))
* [bitnami/sonarqube] Release 5.2.15 ([#29674](https://github.com/bitnami/charts/pull/29674))

## <small>5.2.14 (2024-09-30)</small>

* [bitnami/sonarqube] Release 5.2.14 (#29658) ([4ede9f7](https://github.com/bitnami/charts/commit/4ede9f7579051bd78142cf62b39b5cbe42fa93a4)), closes [#29658](https://github.com/bitnami/charts/issues/29658)

## <small>5.2.13 (2024-08-30)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/sonarqube/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 15.5.36
version: 15.5.37
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.23.0
digest: sha256:457ee4ac5fe8966cc1702b39ff50087e2ca42d7c858ecb656f5f15abb8351af7
generated: "2024-09-30T07:56:28.61659155Z"
digest: sha256:a8fb5df2a7578f1ccda3b52964654422a3ee7d169fc2a5fedb19eec6fcfd3437
generated: "2024-09-30T19:16:02.899136936Z"
6 changes: 3 additions & 3 deletions bitnami/sonarqube/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ annotations:
- name: os-shell
image: docker.io/bitnami/os-shell:12-debian-12-r30
- name: sonarqube
image: docker.io/bitnami/sonarqube:10.6.0-debian-12-r7
image: docker.io/bitnami/sonarqube:10.7.0-debian-12-r0
apiVersion: v2
appVersion: 10.6.0
appVersion: 10.7.0
dependencies:
- condition: postgresql.enabled
name: postgresql
Expand All @@ -37,4 +37,4 @@ maintainers:
name: sonarqube
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/sonarqube
version: 5.2.14
version: 5.2.15
2 changes: 1 addition & 1 deletion bitnami/sonarqube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ diagnosticMode:
image:
registry: docker.io
repository: bitnami/sonarqube
tag: 10.6.0-debian-12-r7
tag: 10.7.0-debian-12-r0
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down
Loading