From fec4aa6df1bd6c5ea1ca9eeb10e4bc643a16d39e Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Tue, 1 Oct 2024 17:15:53 -0300
Subject: [PATCH 01/11] Changing the bitstream title in the submission form to
use the view component title, avoiding disappearance with changes to the form
---
.../sections/upload/file/section-upload-file.component.html | 3 +--
.../upload/file/view/section-upload-file-view.component.html | 5 +++--
.../upload/file/view/section-upload-file-view.component.ts | 4 +++-
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/app/submission/sections/upload/file/section-upload-file.component.html b/src/app/submission/sections/upload/file/section-upload-file.component.html
index da83e3f9a02..4698fdf68a6 100644
--- a/src/app/submission/sections/upload/file/section-upload-file.component.html
+++ b/src/app/submission/sections/upload/file/section-upload-file.component.html
@@ -18,7 +18,7 @@
-
{{fileName}} ({{fileData?.sizeBytes | dsFileSize}})
+
@@ -43,7 +43,6 @@ {{fileName}} ({{fileData?.sizeBytes | dsFileSize}})
-
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.html b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.html
index cc12b5dea63..dc72fbdad01 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.html
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.html
@@ -2,9 +2,10 @@
-
+
{{entry.value}}
-
+ ({{fileData?.sizeBytes | dsFileSize}})
+
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 0630a28a76b..7ab21fb85bd 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -18,6 +18,7 @@ import { WorkspaceitemSectionUploadFileObject } from '../../../../../core/submis
import { isNotEmpty } from '../../../../../shared/empty.util';
import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessConditions/submission-section-upload-access-conditions.component';
+import { FileSizePipe } from "../../../../../shared/utils/file-size-pipe";
/**
* This component allow to show bitstream's metadata
@@ -31,7 +32,8 @@ import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessCo
TruncatePipe,
NgIf,
NgForOf,
- ],
+ FileSizePipe
+],
standalone: true,
})
export class SubmissionSectionUploadFileViewComponent implements OnInit {
From df24a63a464c3f88adedf982cdf540241414a86a Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Wed, 2 Oct 2024 08:38:42 -0300
Subject: [PATCH 02/11] Adjusting spacing and good rules
---
.../upload/file/view/section-upload-file-view.component.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 7ab21fb85bd..378753a1e6b 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -18,7 +18,7 @@ import { WorkspaceitemSectionUploadFileObject } from '../../../../../core/submis
import { isNotEmpty } from '../../../../../shared/empty.util';
import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessConditions/submission-section-upload-access-conditions.component';
-import { FileSizePipe } from "../../../../../shared/utils/file-size-pipe";
+import { FileSizePipe } from '../../../../../shared/utils/file-size-pipe';
/**
* This component allow to show bitstream's metadata
@@ -32,8 +32,8 @@ import { FileSizePipe } from "../../../../../shared/utils/file-size-pipe";
TruncatePipe,
NgIf,
NgForOf,
- FileSizePipe
-],
+ FileSizePipe,
+ ],
standalone: true,
})
export class SubmissionSectionUploadFileViewComponent implements OnInit {
From 762bc8ce8c5a87a1dc7ba9763916addaabe06398 Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Wed, 2 Oct 2024 08:46:37 -0300
Subject: [PATCH 03/11] Adjusting spacing
---
.../upload/file/view/section-upload-file-view.component.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 378753a1e6b..7b8e8704004 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -54,13 +54,13 @@ export class SubmissionSectionUploadFileViewComponent implements OnInit {
* The bitstream's title key
* @type {string}
*/
- public fileTitleKey = 'Title';
+ public fileTitleKey: string = 'Title';
/**
* The bitstream's description key
* @type {string}
*/
- public fileDescrKey = 'Description';
+ public fileDescrKey: string = 'Description';
public fileFormat!: string;
From 62006c00cacf7e74661d6cc3dd4b5a53f47aeb72 Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Wed, 2 Oct 2024 09:01:56 -0300
Subject: [PATCH 04/11] Fix last commit
---
.../upload/file/view/section-upload-file-view.component.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 7b8e8704004..378753a1e6b 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -54,13 +54,13 @@ export class SubmissionSectionUploadFileViewComponent implements OnInit {
* The bitstream's title key
* @type {string}
*/
- public fileTitleKey: string = 'Title';
+ public fileTitleKey = 'Title';
/**
* The bitstream's description key
* @type {string}
*/
- public fileDescrKey: string = 'Description';
+ public fileDescrKey = 'Description';
public fileFormat!: string;
From eeaac8965b8b82e8d21f712350781c3e7f627157 Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Wed, 2 Oct 2024 09:10:48 -0300
Subject: [PATCH 05/11] Import order adjustment
---
.../upload/file/view/section-upload-file-view.component.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 378753a1e6b..20e86a492dd 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -17,8 +17,8 @@ import { Metadata } from '../../../../../core/shared/metadata.utils';
import { WorkspaceitemSectionUploadFileObject } from '../../../../../core/submission/models/workspaceitem-section-upload-file.model';
import { isNotEmpty } from '../../../../../shared/empty.util';
import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
-import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessConditions/submission-section-upload-access-conditions.component';
import { FileSizePipe } from '../../../../../shared/utils/file-size-pipe';
+import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessConditions/submission-section-upload-access-conditions.component';
/**
* This component allow to show bitstream's metadata
From 2643a459b6a1213b4edb16f245732ba0a1b32bcb Mon Sep 17 00:00:00 2001
From: DanGastardelli <55243638+DanGastardelli@users.noreply.github.com>
Date: Wed, 2 Oct 2024 09:24:46 -0300
Subject: [PATCH 06/11] Import order adjustment
---
.../upload/file/view/section-upload-file-view.component.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
index 20e86a492dd..f065fc9e190 100644
--- a/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
+++ b/src/app/submission/sections/upload/file/view/section-upload-file-view.component.ts
@@ -16,8 +16,8 @@ import {
import { Metadata } from '../../../../../core/shared/metadata.utils';
import { WorkspaceitemSectionUploadFileObject } from '../../../../../core/submission/models/workspaceitem-section-upload-file.model';
import { isNotEmpty } from '../../../../../shared/empty.util';
-import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
import { FileSizePipe } from '../../../../../shared/utils/file-size-pipe';
+import { TruncatePipe } from '../../../../../shared/utils/truncate.pipe';
import { SubmissionSectionUploadAccessConditionsComponent } from '../../accessConditions/submission-section-upload-access-conditions.component';
/**
From 497f4fd8d408e259a3d16c8847a28e028d4a791c Mon Sep 17 00:00:00 2001
From: Tim Donohue
Date: Fri, 25 Oct 2024 12:57:26 -0500
Subject: [PATCH 07/11] Ensure "axe-*" is a member of the "testing" group, as
it's only used for e2e tests
---
.github/dependabot.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 0ebfc93793d..b53e501d293 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -72,6 +72,7 @@ updates:
applies-to: version-updates
patterns:
- "@cypress*"
+ - "axe-*"
- "cypress*"
- "jasmine*"
- "karma*"
@@ -84,6 +85,7 @@ updates:
applies-to: security-updates
patterns:
- "@cypress*"
+ - "axe-*"
- "cypress*"
- "jasmine*"
- "karma*"
@@ -185,6 +187,7 @@ updates:
applies-to: version-updates
patterns:
- "@cypress*"
+ - "axe-*"
- "cypress*"
- "jasmine*"
- "karma*"
@@ -262,6 +265,7 @@ updates:
applies-to: version-updates
patterns:
- "@cypress*"
+ - "axe-*"
- "cypress*"
- "jasmine*"
- "karma*"
From ec4ca74a97949482ec757a5c53ba10a7f327f07c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 25 Oct 2024 17:58:20 +0000
Subject: [PATCH 08/11] Bump sass from 1.80.3 to 1.80.4 in the sass group
Bumps the sass group with 1 update: [sass](https://github.com/sass/dart-sass).
Updates `sass` from 1.80.3 to 1.80.4
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.80.3...1.80.4)
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: sass
...
Signed-off-by: dependabot[bot]
---
package-lock.json | 8 ++++----
package.json | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 46274604660..d2b10f46154 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -142,7 +142,7 @@
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^7.4.2",
"rimraf": "^3.0.2",
- "sass": "~1.80.3",
+ "sass": "~1.80.4",
"sass-loader": "^12.6.0",
"sass-resources-loader": "^2.2.5",
"ts-node": "^8.10.2",
@@ -20413,9 +20413,9 @@
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"node_modules/sass": {
- "version": "1.80.3",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.80.3.tgz",
- "integrity": "sha512-ptDWyVmDMVielpz/oWy3YP3nfs7LpJTHIJZboMVs8GEC9eUmtZTZhMHlTW98wY4aEorDfjN38+Wr/XjskFWcfA==",
+ "version": "1.80.4",
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.80.4.tgz",
+ "integrity": "sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==",
"dependencies": {
"@parcel/watcher": "^2.4.1",
"chokidar": "^4.0.0",
diff --git a/package.json b/package.json
index d4a424e7807..0dd42ae483d 100644
--- a/package.json
+++ b/package.json
@@ -229,7 +229,7 @@
"postcss-loader": "^4.0.3",
"postcss-preset-env": "^7.4.2",
"rimraf": "^3.0.2",
- "sass": "~1.80.3",
+ "sass": "~1.80.4",
"sass-loader": "^12.6.0",
"sass-resources-loader": "^2.2.5",
"ts-node": "^8.10.2",
From 31e2bd26ea3abd7fd9f5b909f354e91bffcc51dc Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 25 Oct 2024 18:00:11 +0000
Subject: [PATCH 09/11] Bump the angular group with 3 updates
Bumps the angular group with 3 updates: [@angular/ssr](https://github.com/angular/angular-cli), [@angular-devkit/build-angular](https://github.com/angular/angular-cli) and [@angular/cli](https://github.com/angular/angular-cli).
Updates `@angular/ssr` from 17.3.10 to 17.3.11
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular-cli/compare/17.3.10...17.3.11)
Updates `@angular-devkit/build-angular` from 17.3.10 to 17.3.11
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular-cli/compare/17.3.10...17.3.11)
Updates `@angular/cli` from 17.3.10 to 17.3.11
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular-cli/compare/17.3.10...17.3.11)
---
updated-dependencies:
- dependency-name: "@angular/ssr"
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: angular
- dependency-name: "@angular-devkit/build-angular"
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: angular
- dependency-name: "@angular/cli"
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: angular
...
Signed-off-by: dependabot[bot]
---
package-lock.json | 112 ++++++++++++++++++----------------------------
package.json | 6 +--
2 files changed, 47 insertions(+), 71 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 46274604660..31cdcc16fcc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -20,7 +20,7 @@
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/platform-server": "^17.3.12",
"@angular/router": "^17.3.12",
- "@angular/ssr": "^17.3.10",
+ "@angular/ssr": "^17.3.11",
"@babel/runtime": "7.25.9",
"@kolkov/ngx-gallery": "^2.0.1",
"@ng-bootstrap/ng-bootstrap": "^11.0.0",
@@ -78,7 +78,7 @@
},
"devDependencies": {
"@angular-builders/custom-webpack": "~17.0.2",
- "@angular-devkit/build-angular": "^17.3.8",
+ "@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/bundled-angular-compiler": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
@@ -86,7 +86,7 @@
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular-eslint/utils": "^17.5.3",
- "@angular/cli": "^17.3.10",
+ "@angular/cli": "^17.3.11",
"@angular/compiler-cli": "^17.3.11",
"@angular/language-service": "^17.3.12",
"@cypress/schematic": "^1.5.0",
@@ -252,12 +252,12 @@
}
},
"node_modules/@angular-devkit/architect": {
- "version": "0.1703.10",
- "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.10.tgz",
- "integrity": "sha512-wmjx5GspSPprdUGryK5+9vNawbEO7p8h9dxgX3uoeFwPAECcHC+/KK3qPhX2NiGcM6MDsyt25SrbSktJp6PRsA==",
+ "version": "0.1703.11",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.11.tgz",
+ "integrity": "sha512-YNasVZk4rYdcM6M+KRH8PUBhVyJfqzUYLpO98GgRokW+taIDgifckSlmfDZzQRbw45qiwei1IKCLqcpC8nM5Tw==",
"dev": true,
"dependencies": {
- "@angular-devkit/core": "17.3.10",
+ "@angular-devkit/core": "17.3.11",
"rxjs": "7.8.1"
},
"engines": {
@@ -267,15 +267,15 @@
}
},
"node_modules/@angular-devkit/build-angular": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.3.10.tgz",
- "integrity": "sha512-syz7xgzmp8/0tPJWwQIKZt7KNJfp9U7hkqNacXz4XTYz6YM0oyBXlqk2claSxywWBEkc0eJVSMD9e2ArusZBuA==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.3.11.tgz",
+ "integrity": "sha512-lHX5V2dSts328yvo/9E2u9QMGcvJhbEKKDDp9dBecwvIG9s+4lTOJgi9DPUE7W+AtmPcmbbhwC2JRQ/SLQhAoA==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "2.3.0",
- "@angular-devkit/architect": "0.1703.10",
- "@angular-devkit/build-webpack": "0.1703.10",
- "@angular-devkit/core": "17.3.10",
+ "@angular-devkit/architect": "0.1703.11",
+ "@angular-devkit/build-webpack": "0.1703.11",
+ "@angular-devkit/core": "17.3.11",
"@babel/core": "7.24.0",
"@babel/generator": "7.23.6",
"@babel/helper-annotate-as-pure": "7.22.5",
@@ -286,7 +286,7 @@
"@babel/preset-env": "7.24.0",
"@babel/runtime": "7.24.0",
"@discoveryjs/json-ext": "0.5.7",
- "@ngtools/webpack": "17.3.10",
+ "@ngtools/webpack": "17.3.11",
"@vitejs/plugin-basic-ssl": "1.1.0",
"ansi-colors": "4.1.3",
"autoprefixer": "10.4.18",
@@ -298,7 +298,7 @@
"css-loader": "6.10.0",
"esbuild-wasm": "0.20.1",
"fast-glob": "3.3.2",
- "http-proxy-middleware": "2.0.6",
+ "http-proxy-middleware": "2.0.7",
"https-proxy-agent": "7.0.4",
"inquirer": "9.2.15",
"jsonc-parser": "3.2.1",
@@ -776,9 +776,9 @@
}
},
"node_modules/@angular-devkit/build-angular/node_modules/@ngtools/webpack": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.3.10.tgz",
- "integrity": "sha512-yPKmdbTJzxROAl2NS8P8eHB2mU0BqV2I0ZiKmX6oTetY2Ea4i2WzlTK39pPpG7atmdF2NPWYLXdJWAup+JxSyw==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.3.11.tgz",
+ "integrity": "sha512-SfTCbplt4y6ak5cf2IfqdoVOsnoNdh/j6Vu+wb8WWABKwZ5yfr2S/Gk6ithSKcdIZhAF8DNBOoyk1EJuf8Xkfg==",
"dev": true,
"engines": {
"node": "^18.13.0 || >=20.9.0",
@@ -951,30 +951,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@angular-devkit/build-angular/node_modules/http-proxy-middleware": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz",
- "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==",
- "dev": true,
- "dependencies": {
- "@types/http-proxy": "^1.17.8",
- "http-proxy": "^1.18.1",
- "is-glob": "^4.0.1",
- "is-plain-obj": "^3.0.0",
- "micromatch": "^4.0.2"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "@types/express": "^4.17.13"
- },
- "peerDependenciesMeta": {
- "@types/express": {
- "optional": true
- }
- }
- },
"node_modules/@angular-devkit/build-angular/node_modules/immutable": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz",
@@ -1392,12 +1368,12 @@
}
},
"node_modules/@angular-devkit/build-webpack": {
- "version": "0.1703.10",
- "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1703.10.tgz",
- "integrity": "sha512-m6dDgzKLW+c3z9/TUxYmbJEtEhrdYNQ4ogdtAgEYA/FRrKueDU0WztLNr+dVbvwNP99Skovtr8sAQfN6twproQ==",
+ "version": "0.1703.11",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1703.11.tgz",
+ "integrity": "sha512-qbCiiHuoVkD7CtLyWoRi/Vzz6nrEztpF5XIyWUcQu67An1VlxbMTE4yoSQiURjCQMnB/JvS1GPVed7wOq3SJ/w==",
"dev": true,
"dependencies": {
- "@angular-devkit/architect": "0.1703.10",
+ "@angular-devkit/architect": "0.1703.11",
"rxjs": "7.8.1"
},
"engines": {
@@ -1411,9 +1387,9 @@
}
},
"node_modules/@angular-devkit/core": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.10.tgz",
- "integrity": "sha512-czdl54yxU5DOAGy/uUPNjJruoBDTgwi/V+eOgLNybYhgrc+TsY0f7uJ11yEk/pz5sCov7xIiS7RdRv96waS7vg==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.11.tgz",
+ "integrity": "sha512-vTNDYNsLIWpYk2I969LMQFH29GTsLzxNk/0cLw5q56ARF0v5sIWfHYwGTS88jdDqIpuuettcSczbxeA7EuAmqQ==",
"dev": true,
"dependencies": {
"ajv": "8.12.0",
@@ -1438,12 +1414,12 @@
}
},
"node_modules/@angular-devkit/schematics": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.10.tgz",
- "integrity": "sha512-FHcNa1ktYRd0SKExCsNJpR75RffsyuPIV8kvBXzXnLHmXMqvl25G2te3yYJ9yYqy9OLy/58HZznZTxWRyUdHOg==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.11.tgz",
+ "integrity": "sha512-I5wviiIqiFwar9Pdk30Lujk8FczEEc18i22A5c6Z9lbmhPQdTroDnEQdsfXjy404wPe8H62s0I15o4pmMGfTYQ==",
"dev": true,
"dependencies": {
- "@angular-devkit/core": "17.3.10",
+ "@angular-devkit/core": "17.3.11",
"jsonc-parser": "3.2.1",
"magic-string": "0.30.8",
"ora": "5.4.1",
@@ -1870,15 +1846,15 @@
}
},
"node_modules/@angular/cli": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.3.10.tgz",
- "integrity": "sha512-lA0kf4Cpo8Jcuennq6wGyBTP/UG1oX4xsM9uLRZ2vkPoisjHCk46rWaVP7vfAqdUH39vbATFXftpy1SiEmAI4w==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.3.11.tgz",
+ "integrity": "sha512-8R9LwAGL8hGAWJ4mNG9ZPUrBUzIdmst0Ldua6RJJ+PrqgjX+8IbO+lNnfrOY/XY+Z3LXbCEJflL26f9czCvTPQ==",
"dev": true,
"dependencies": {
- "@angular-devkit/architect": "0.1703.10",
- "@angular-devkit/core": "17.3.10",
- "@angular-devkit/schematics": "17.3.10",
- "@schematics/angular": "17.3.10",
+ "@angular-devkit/architect": "0.1703.11",
+ "@angular-devkit/core": "17.3.11",
+ "@angular-devkit/schematics": "17.3.11",
+ "@schematics/angular": "17.3.11",
"@yarnpkg/lockfile": "1.1.0",
"ansi-colors": "4.1.3",
"ini": "4.1.2",
@@ -2187,9 +2163,9 @@
}
},
"node_modules/@angular/ssr": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@angular/ssr/-/ssr-17.3.10.tgz",
- "integrity": "sha512-t+NX1HufU38c0u+8mDg31cqrXZo5SEUxjBuXwdu3mOvYbkanjhbtyIgIMYr9Vru8pqncasgHLJv2RVWDvAjlEw==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@angular/ssr/-/ssr-17.3.11.tgz",
+ "integrity": "sha512-8AslXZnj5bu0fJrSSoZf202HXptc+vS8hSvEIobK1+UpEVmtrk3StiBxYTdbN4Pe76r7RGRmBt40fHe+88AZoA==",
"dependencies": {
"critters": "0.0.22",
"tslib": "^2.3.0"
@@ -6608,13 +6584,13 @@
"dev": true
},
"node_modules/@schematics/angular": {
- "version": "17.3.10",
- "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.10.tgz",
- "integrity": "sha512-cI+VB/WXlOeAMamni932lE/AZgui8o81dMyEXNXqCuYagNAMuKXliW79Mi5BwYQEABv/BUb4hB4zYtbQqHyACA==",
+ "version": "17.3.11",
+ "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.11.tgz",
+ "integrity": "sha512-tvJpTgYC+hCnTyLszYRUZVyNTpPd+C44gh5CPTcG3qkqStzXQwynQAf6X/DjtwXbUiPQF0XfF0+0R489GpdZPA==",
"dev": true,
"dependencies": {
- "@angular-devkit/core": "17.3.10",
- "@angular-devkit/schematics": "17.3.10",
+ "@angular-devkit/core": "17.3.11",
+ "@angular-devkit/schematics": "17.3.11",
"jsonc-parser": "3.2.1"
},
"engines": {
diff --git a/package.json b/package.json
index d4a424e7807..d79b45b5258 100644
--- a/package.json
+++ b/package.json
@@ -107,7 +107,7 @@
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/platform-server": "^17.3.12",
"@angular/router": "^17.3.12",
- "@angular/ssr": "^17.3.10",
+ "@angular/ssr": "^17.3.11",
"@babel/runtime": "7.25.9",
"@kolkov/ngx-gallery": "^2.0.1",
"@ng-bootstrap/ng-bootstrap": "^11.0.0",
@@ -165,7 +165,7 @@
},
"devDependencies": {
"@angular-builders/custom-webpack": "~17.0.2",
- "@angular-devkit/build-angular": "^17.3.8",
+ "@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/bundled-angular-compiler": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
@@ -173,7 +173,7 @@
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular-eslint/utils": "^17.5.3",
- "@angular/cli": "^17.3.10",
+ "@angular/cli": "^17.3.11",
"@angular/compiler-cli": "^17.3.11",
"@angular/language-service": "^17.3.12",
"@cypress/schematic": "^1.5.0",
From efc8cad00fe3e62758067b369b60ce32966731bb Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 25 Oct 2024 19:33:38 +0000
Subject: [PATCH 10/11] Bump @babel/runtime from 7.25.9 to 7.26.0
Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) from 7.25.9 to 7.26.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.0/packages/babel-runtime)
---
updated-dependencies:
- dependency-name: "@babel/runtime"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
package-lock.json | 8 ++++----
package.json | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 31cdcc16fcc..e019124c7e9 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -21,7 +21,7 @@
"@angular/platform-server": "^17.3.12",
"@angular/router": "^17.3.12",
"@angular/ssr": "^17.3.11",
- "@babel/runtime": "7.25.9",
+ "@babel/runtime": "7.26.0",
"@kolkov/ngx-gallery": "^2.0.1",
"@ng-bootstrap/ng-bootstrap": "^11.0.0",
"@ng-dynamic-forms/core": "^16.0.0",
@@ -3901,9 +3901,9 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.9.tgz",
- "integrity": "sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==",
+ "version": "7.26.0",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
+ "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
diff --git a/package.json b/package.json
index d79b45b5258..61a42705ed2 100644
--- a/package.json
+++ b/package.json
@@ -108,7 +108,7 @@
"@angular/platform-server": "^17.3.12",
"@angular/router": "^17.3.12",
"@angular/ssr": "^17.3.11",
- "@babel/runtime": "7.25.9",
+ "@babel/runtime": "7.26.0",
"@kolkov/ngx-gallery": "^2.0.1",
"@ng-bootstrap/ng-bootstrap": "^11.0.0",
"@ng-dynamic-forms/core": "^16.0.0",
From 3a5cf9c6c306cb4e1f07ec1e27249d46cdace68a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 25 Oct 2024 19:34:22 +0000
Subject: [PATCH 11/11] Bump the testing group across 1 directory with 2
updates
Bumps the testing group with 2 updates in the / directory: [axe-core](https://github.com/dequelabs/axe-core) and [cypress](https://github.com/cypress-io/cypress).
Updates `axe-core` from 4.10.0 to 4.10.2
- [Release notes](https://github.com/dequelabs/axe-core/releases)
- [Changelog](https://github.com/dequelabs/axe-core/blob/v4.10.2/CHANGELOG.md)
- [Commits](https://github.com/dequelabs/axe-core/compare/v4.10.0...v4.10.2)
Updates `cypress` from 13.15.0 to 13.15.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v13.15.0...v13.15.1)
---
updated-dependencies:
- dependency-name: axe-core
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: testing
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: testing
...
Signed-off-by: dependabot[bot]
---
package-lock.json | 17 +++++++++--------
package.json | 4 ++--
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 31cdcc16fcc..87bd6348fc7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -105,11 +105,11 @@
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"@typescript-eslint/utils": "^7.18.0",
- "axe-core": "^4.10.0",
+ "axe-core": "^4.10.2",
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
- "cypress": "^13.15.0",
+ "cypress": "^13.15.1",
"cypress-axe": "^1.5.0",
"deep-freeze": "0.0.1",
"eslint": "^8.39.0",
@@ -8381,9 +8381,9 @@
"dev": true
},
"node_modules/axe-core": {
- "version": "4.10.0",
- "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.0.tgz",
- "integrity": "sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==",
+ "version": "4.10.2",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.2.tgz",
+ "integrity": "sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==",
"dev": true,
"engines": {
"node": ">=4"
@@ -10269,9 +10269,9 @@
"dev": true
},
"node_modules/cypress": {
- "version": "13.15.0",
- "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.15.0.tgz",
- "integrity": "sha512-53aO7PwOfi604qzOkCSzNlWquCynLlKE/rmmpSPcziRH6LNfaDUAklQT6WJIsD8ywxlIy+uVZsnTMCCQVd2kTw==",
+ "version": "13.15.1",
+ "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.15.1.tgz",
+ "integrity": "sha512-DwUFiKXo4lef9kA0M4iEhixFqoqp2hw8igr0lTqafRb9qtU3X0XGxKbkSYsUFdkrAkphc7MPDxoNPhk5pj9PVg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
@@ -10315,6 +10315,7 @@
"semver": "^7.5.3",
"supports-color": "^8.1.1",
"tmp": "~0.2.3",
+ "tree-kill": "1.2.2",
"untildify": "^4.0.0",
"yauzl": "^2.10.0"
},
diff --git a/package.json b/package.json
index d79b45b5258..5bd4eb9d0ea 100644
--- a/package.json
+++ b/package.json
@@ -192,11 +192,11 @@
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.18.0",
"@typescript-eslint/utils": "^7.18.0",
- "axe-core": "^4.10.0",
+ "axe-core": "^4.10.2",
"compression-webpack-plugin": "^9.2.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
- "cypress": "^13.15.0",
+ "cypress": "^13.15.1",
"cypress-axe": "^1.5.0",
"deep-freeze": "0.0.1",
"eslint": "^8.39.0",