diff --git a/CHANGELOG.md b/CHANGELOG.md index 7989d69a09e62f07f9959cdb201c6aafcd717422..e0e64ee8bea6844c6083103a7e4f1ec9f5498b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.73.0-bb.1] - 2025-03-06 +### Changed + +- Changed cypress test to use data-testid + ## [0.73.0-bb.0] - 2025-01-22 ### Changed diff --git a/README.md b/README.md index da1937b54840107300a5fec2c3f0d22f9997ce5d..920ffac103e460af036721f9077a57198604bf09 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ <!-- Warning: Do not manually edit this file. See notes on gluon + helm-docs at the end of this file for more information. --> # gitlab-runner -   +   GitLab Runner @@ -62,6 +62,7 @@ helm install gitlab-runner chart/ | sessionServer.ingress.enabled | bool | `false` | | | sessionServer.ingress.className | string | `""` | | | sessionServer.ingress.annotations | object | `{}` | | +| sessionServer.ingress.tls[0].secretName | string | `"gitlab-runner-session-server"` | | | rbac.create | bool | `true` | | | rbac.generatedServiceAccountName | string | `""` | | | rbac.rules | list | `[]` | | diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 54de61fc50f442ee17168c81784a06c2a1e40b2b..43b4ca19bc8e0ff7ae1cb66010d8ec3ee08c2a93 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: gitlab-runner -version: 0.73.0-bb.0 +version: 0.73.0-bb.1 appVersion: 17.8.0 description: GitLab Runner keywords: diff --git a/chart/tests/cypress/e2e/01-run-pipeline.spec.cy.js b/chart/tests/cypress/e2e/01-run-pipeline.spec.cy.js index 205ff0b7a8650319943d0240a3c0108a5107a79d..03823e95a065b116a71b77ce78abe2cf86c0015e 100644 --- a/chart/tests/cypress/e2e/01-run-pipeline.spec.cy.js +++ b/chart/tests/cypress/e2e/01-run-pipeline.spec.cy.js @@ -35,7 +35,8 @@ describe('Gitlab Runner: Run Pipeline', () => { cy.get('div[class="view-line"]').click().type('pipeline-test:{enter}{backspace} stage: test{enter}{backspace} script:{enter}{backspace}{backspace} - echo The pipeline test is successful!{enter}') // commit file and start pipeline cy.scrollTo('bottom') - cy.get('button[id="commit-changes"]').click() + cy.get('button[data-testid="blob-edit-header-commit-button"]').click() + cy.get('button[data-testid="commit-change-modal-commit-button').click() }) // Go to pipelines page cy.url().should('eq', `${Cypress.env('url')}/root/${Cypress.env('gitlab_project')}/-/blob/main/.gitlab-ci.yml`)