diff --git a/CHANGELOG.md b/CHANGELOG.md index 972443edc..a29de988b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.18.1](https://github.com/bcgov/cas-cif/compare/1.18.0...1.18.1) (2024-12-17) + +### Reverts + +- Revert "chore: install oc" ([f6db743](https://github.com/bcgov/cas-cif/commit/f6db7436626dba58b33a0be41455ce9ffda0a0df)) + # [1.18.0](https://github.com/bcgov/cas-cif/compare/1.17.3...1.18.0) (2024-12-16) ## [1.17.3](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.3) (2024-12-13) diff --git a/chart/cas-cif/Chart.lock b/chart/cas-cif/Chart.lock index b82534374..bd39a957e 100644 --- a/chart/cas-cif/Chart.lock +++ b/chart/cas-cif/Chart.lock @@ -11,5 +11,5 @@ dependencies: - name: certbot repository: https://bcdevops.github.io/certbot version: 0.1.3 -digest: sha256:22a3c8a861907a570a2415e8c4b5c0a5c7f6ae164207507f093b0bfaa752c8cf -generated: "2024-02-23T14:03:27.259123-08:00" +digest: sha256:d2da5fb2e1380ca061fdadb0e4cbe54137f1e3d43f90afe245339ddb320a771b +generated: "2024-12-16T11:23:41.617911-08:00" diff --git a/package.json b/package.json index 128de2dac..7a415039c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cas-cif", - "version": "1.18.0", + "version": "1.18.1", "main": "index.js", "repository": "https://github.com/bcgov/cas-cif.git", "author": "ggircs@gov.bc.ca", diff --git a/schema/deploy/create_roles.sql b/schema/deploy/create_roles.sql index 5ad396b87..1a341b59b 100644 --- a/schema/deploy/create_roles.sql +++ b/schema/deploy/create_roles.sql @@ -12,7 +12,7 @@ begin from pg_catalog.pg_roles where rolname = 'cif_internal') then - create role cif_internal; + create role cif_internal with admin current_user; end if; if not exists ( @@ -20,7 +20,7 @@ begin from pg_catalog.pg_roles where rolname = 'cif_external') then - create role cif_external; + create role cif_external with admin current_user; end if; if not exists ( @@ -28,7 +28,7 @@ begin from pg_catalog.pg_roles where rolname = 'cif_admin') then - create role cif_admin; + create role cif_admin with admin current_user; end if; if not exists ( @@ -36,7 +36,7 @@ begin from pg_catalog.pg_roles where rolname = 'cif_guest') then - create role cif_guest; + create role cif_guest with admin current_user; end if; if not exists ( @@ -44,7 +44,7 @@ begin from pg_catalog.pg_roles where rolname = 'cifapp') then - create user cifapp; + create user cifapp with admin current_user; end if; grant cif_admin, cif_internal, cif_external, cif_guest to cifapp; diff --git a/schema/sqitch.plan b/schema/sqitch.plan index a5fc01ae4..145a92b03 100644 --- a/schema/sqitch.plan +++ b/schema/sqitch.plan @@ -382,3 +382,4 @@ tables/funding_stream_rfp_002 2024-05-28T22:41:57Z Brianna Cerkiewicz # dropping regprocedure type for column in favour of varchar to allow postgres version upgrade @1.17.3 2024-12-13T19:33:09Z Pierre Bastianelli # release v1.17.3 @1.18.0 2024-12-16T18:54:31Z Pierre Bastianelli # release v1.18.0 +@1.18.1 2024-12-17T22:43:51Z Pierre Bastianelli # release v1.18.1