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

Backport #1940

Merged
merged 22 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
32f5f52
Bump send and express in /alcs-frontend
dependabot[bot] Sep 11, 2024
2ad4f26
Bump rollup from 4.21.0 to 4.22.4 in /portal-frontend
dependabot[bot] Sep 24, 2024
332d3a3
Bump rollup from 4.21.0 to 4.24.0 in /alcs-frontend
dependabot[bot] Oct 7, 2024
ab7852a
Bump find-my-way from 8.2.0 to 8.2.2 in /services
dependabot[bot] Oct 7, 2024
be9049b
Bump vite and @angular-devkit/build-angular in /alcs-frontend
dependabot[bot] Oct 7, 2024
0085cb9
Bump cookie and @nestjs/platform-fastify in /services
dependabot[bot] Oct 20, 2024
e0bf894
Merge pull request #1921 from bcgov/dependabot/npm_and_yarn/services/…
Abradat Oct 22, 2024
d37e837
Bump cookie and express in /portal-frontend
dependabot[bot] Oct 22, 2024
e4653f8
Merge pull request #1912 from bcgov/dependabot/npm_and_yarn/portal-fr…
Abradat Oct 22, 2024
4746755
Merge pull request #1897 from bcgov/dependabot/npm_and_yarn/alcs-fron…
Abradat Oct 22, 2024
470a88f
Merge pull request #1896 from bcgov/dependabot/npm_and_yarn/services/…
Abradat Oct 22, 2024
10935c9
Merge pull request #1895 from bcgov/dependabot/npm_and_yarn/alcs-fron…
Abradat Oct 22, 2024
65549bd
Merge pull request #1865 from bcgov/dependabot/npm_and_yarn/portal-fr…
Abradat Oct 22, 2024
89ade8e
Merge pull request #1850 from bcgov/dependabot/npm_and_yarn/alcs-fron…
Abradat Oct 22, 2024
24f3861
Bump micromatch and s3-streamlogger in /services
dependabot[bot] Oct 22, 2024
40d7c37
Bump webpack and @nestjs/cli in /services
dependabot[bot] Oct 22, 2024
14e152b
Merge pull request #1825 from bcgov/dependabot/npm_and_yarn/services/…
Abradat Oct 22, 2024
08df1f5
Bump webpack and @angular-devkit/build-angular in /portal-frontend
dependabot[bot] Oct 22, 2024
10b5fc9
Merge pull request #1933 from bcgov/dependabot/npm_and_yarn/services/…
Abradat Oct 22, 2024
2219465
Merge pull request #1934 from bcgov/dependabot/npm_and_yarn/portal-fr…
Abradat Oct 22, 2024
0504330
Fix selected ETL missed review deletions
trslater Oct 28, 2024
b53a438
Merge pull request #1938 from bcgov/hotfix/ALCS-2335
trslater Oct 28, 2024
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
452 changes: 276 additions & 176 deletions alcs-frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion alcs-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^17.3.3",
"@angular-devkit/build-angular": "^17.3.10",
"@angular-eslint/builder": "^17.3.0",
"@angular-eslint/eslint-plugin": "^17.3.0",
"@angular-eslint/eslint-plugin-template": "^17.3.0",
Expand Down
458 changes: 279 additions & 179 deletions portal-frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion portal-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^17.3.3",
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "~17.3.3",
"@angular/compiler-cli": "^17.3.3",
"@golevelup/ts-jest": "^0.4.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class FixEtlMissedDeletingLfgnReviews1730144741773
implements MigrationInterface
{
public async up(queryRunner: QueryRunner): Promise<void> {
queryRunner.query(`
delete from alcs.application_submission_review asr
where asr.application_file_number in ('61301', '67497')
`);
}

public async down(queryRunner: QueryRunner): Promise<void> {}
}
Loading
Loading