diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e3be82d8..d57c8c4aa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.17.1](https://github.com/bcgov/cas-cif/compare/1.17.0...1.17.1) (2024-06-03) + +### Bug Fixes + +- updating sentry packages ([dab7419](https://github.com/bcgov/cas-cif/commit/dab7419816164ca1c5f0f2c9d266ae4833b2bba7)) + # [1.17.0](https://github.com/bcgov/cas-cif/compare/1.16.5...1.17.0) (2024-05-24) ### Features diff --git a/app/cypress/e2e/cif/project-revision/create-subsequent-project-revision.cy.js b/app/cypress/e2e/cif/project-revision/create-subsequent-project-revision.cy.js index 56cb8c5a95..281bf45f28 100644 --- a/app/cypress/e2e/cif/project-revision/create-subsequent-project-revision.cy.js +++ b/app/cypress/e2e/cif/project-revision/create-subsequent-project-revision.cy.js @@ -54,7 +54,9 @@ describe("the project amendment and revisions page", () => { cy.findByRole("button", { name: /^submit/i }).click(); // edit managers -- delete a manager - cy.findByText(/project details/i).click(); + cy.get("button") + .contains(/project details/i) + .click(); cy.findByText(/edit project managers/i).click(); cy.url().should("include", "/form/1"); cy.get("label") diff --git a/app/cypress/e2e/cif/project-revision/discard-project-revision.cy.js b/app/cypress/e2e/cif/project-revision/discard-project-revision.cy.js index d905d953ea..c0bae1c955 100644 --- a/app/cypress/e2e/cif/project-revision/discard-project-revision.cy.js +++ b/app/cypress/e2e/cif/project-revision/discard-project-revision.cy.js @@ -12,7 +12,9 @@ describe("when discarding a project revision, the project page", () => { it("discards a revision when the user clicks the Discard Revision button", () => { cy.navigateToFirstProjectEditRevisionPage(); - cy.findByText(/Amendment 2/i).should("be.visible"); + cy.get("header") + .contains(/Amendment 2/i) + .should("be.visible"); cy.findByText(/1. Project Overview/i).click(); cy.findByText(/Edit Project Overview/i).click(); cy.url().should("include", "/form/0"); diff --git a/package.json b/package.json index 46225e6db6..77df333d38 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cas-cif", - "version": "1.17.0", + "version": "1.17.1", "main": "index.js", "repository": "https://github.com/bcgov/cas-cif.git", "author": "ggircs@gov.bc.ca", diff --git a/schema/sqitch.plan b/schema/sqitch.plan index bef95abbc9..07da6e3731 100644 --- a/schema/sqitch.plan +++ b/schema/sqitch.plan @@ -375,4 +375,5 @@ mutations/commit_form_change [mutations/commit_form_change@1.15.0] 2023-11-22T19 @1.16.5 2024-05-22T23:00:27Z Mike Vesprini # release v1.16.5 @1.17.0 2024-05-24T21:29:42Z Mike Vesprini # release v1.17.0 -tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz # Add 2024 funding streams values to funding_stream_rfp table +tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz # Add 2024 funding streams values to funding_stream_rfp table +@1.17.1 2024-06-03T23:17:40Z Pierre Bastianelli # release v1.17.1