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

Chore/release #1921

Merged
merged 2 commits into from
Jun 3, 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 2 additions & 1 deletion schema/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -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 <mike@button.is> # release v1.16.5
@1.17.0 2024-05-24T21:29:42Z Mike Vesprini <mike@button.is> # release v1.17.0

tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz <briannacerkiewicz@pop-os> # Add 2024 funding streams values to funding_stream_rfp table
tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz <briannacerkiewicz@pop-os> # Add 2024 funding streams values to funding_stream_rfp table
@1.17.1 2024-06-03T23:17:40Z Pierre Bastianelli <pierre.bastianelli@gov.bc.ca> # release v1.17.1
Loading