Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ad6f61b
feat: KMS column-encryption rotation
Jul 28, 2026
94eb4cf
test: add test:kms-rotation script and 100% test coverage for KMS rot…
Jul 28, 2026
1ae63d1
fix: completion status determination in ColumnEncryptionRotator batch…
Jul 28, 2026
d644e99
test: achieve 100% statement and line test coverage for KMS column en…
Jul 28, 2026
33a96a2
test: add coverage for all KMS provider & rotator edge case branches
Jul 28, 2026
14b58d5
fix: update package-lock.json to sync with package.json for CI
Fash004 Jul 28, 2026
b80e34f
Merge branch 'feat/kms-column-rotation' of https://github.com/Fash004…
Fash004 Jul 28, 2026
26196b6
fix: update package-lock.json for CI build
Fash004 Jul 28, 2026
69c9e9b
fix: sync package-lock.json with package.json for npm ci
Fash004 Jul 28, 2026
75a1ea0
ix: update package-lock.json for CI
Fash004 Jul 28, 2026
fec9775
ci: use --legacy-peer-deps for npm ci in GitHub Actions workflows
Jul 28, 2026
0126214
fix: update in package-lock.json
Fash004 Jul 28, 2026
8b0af92
ci: use npm install --legacy-peer-deps in workflows to prevent npm ci…
Jul 28, 2026
6b71fae
deps: add @emnapi dependencies to package.json for CI lockfile resolu…
Jul 28, 2026
5d901a3
ci: revert workflows back to npm ci
Jul 28, 2026
ccd71a6
fix: align jest, @types/jest, and ts-jest versions to v27 to resolve …
Jul 28, 2026
45900db
fix: update Jest, ts-jest, and @types/jest to v29 for TypeScript 5 co…
Jul 28, 2026
37dc62f
update jest
Fash004 Jul 28, 2026
d1863f0
chore: remove openapi-types from package-lock.json
Fash004 Jul 28, 2026
93113c2
ci: use npm ci --legacy-peer-deps --omit=optional to bypass optional …
Jul 28, 2026
e565c43
fix: downgrade jest and ts-jest to compatible versions
Fash004 Jul 28, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/audit-integrity-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps --omit=optional

- name: Apply migrations
run: npm run migrate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version: '20.x'

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps --omit=optional

- name: Run dependency audit gate
run: npm run audit:ci
2 changes: 1 addition & 1 deletion .github/workflows/postmortem-required.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps --omit=optional

- name: List PR changed files
id: files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rbac-policy-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps --omit=optional

- name: Compute RBAC policy diff
id: diff
Expand Down
Loading
Loading