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 #1945

Merged
merged 5 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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.3](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.3) (2024-12-13)

### Bug Fixes

- don't show archived attachments on the project attachment list ([5f14e11](https://github.com/bcgov/cas-cif/commit/5f14e112838d1d88127ba8dafa597cee37dd8c3d))

## [1.17.2](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.2) (2024-08-08)

### Bug Fixes
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.2",
"version": "1.17.3",
"main": "index.js",
"repository": "https://github.com/bcgov/cas-cif.git",
"author": "[email protected]",
Expand Down
8 changes: 8 additions & 0 deletions schema/deploy/tables/form_002.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Deploy cif:tables/form_002 to pg

begin;

alter table cif.form
alter column json_schema_generator type varchar(10000);

commit;
8 changes: 8 additions & 0 deletions schema/revert/tables/form_002.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- Revert cif:tables/form_002 from pg

begin;

-- No reverting json_schema_generator back to regprocedure. Cannot change varchar back to regprocedure without error.
-- Table will be dropped in original revert file.

commit;
3 changes: 3 additions & 0 deletions schema/sqitch.plan
Original file line number Diff line number Diff line change
Expand Up @@ -378,3 +378,6 @@ mutations/commit_form_change [mutations/[email protected]] 2023-11-22T19
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 <[email protected]> # release v1.17.1
@1.17.2 2024-08-08T20:46:52Z Sepehr Sobhani <[email protected]> # release v1.17.2

tables/form_002 [tables/form_001] 2024-12-13T19:25:15Z Pierre Bastianelli <[email protected]> # dropping regprocedure type for column in favour of varchar to allow postgres version upgrade
@1.17.3 2024-12-13T19:33:09Z Pierre Bastianelli <[email protected]> # release v1.17.3
15 changes: 15 additions & 0 deletions schema/verify/tables/form_002.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-- Verify cif:tables/form_002 on pg

begin;

-- Assess that the table exists with the right privileges

select pg_catalog.has_table_privilege('cif.form', 'select');

-- cif_internal Grants
select cif_private.verify_grant('select', 'form', 'cif_internal');

-- cif_admin Grants
select cif_private.verify_grant('select', 'form', 'cif_admin');

rollback;
Loading