Skip to content

Commit f4dcc0d

Browse files
authored
Feature/610 clarity upgrade (#617)
Upgraded: MAVEN - node.version from 12.14.1 to 12.22.10 @angular/animations from 11.2.8 to 13.2.3 @angular/common from 11.2.8 to 13.2.3 @angular/compiler from 11.2.8 to 13.2.3 @angular/core from 11.2.8 to 13.2.3 @angular/forms from 11.2.8 to 13.2.3 @angular/platform-browser from 11.2.8 to 13.2.3 @angular/platform-browser-dynamic from 11.2.8 to 13.2.3 @angular/router from 11.2.8 to 13.2.3 @cds/core from 5.0.0 to 5.6.4 @clr/angular from 5.1.1 to 13.0.2 @clr/icons from 5.1.1 to 13.0.2 @clr/ui from 5.1.1 to 13.0.2 @ngrx/effects from 10.1.2 to 12.5.1 @ngrx/router-store from 10.1.2 to 12.5.1 @ngrx/store from 10.1.2 to 12.5.1 @ngrx/store-devtools from 10.1.2 to 12.5.1 zone.js from 0.10.3 to 0.11.4 @angular-devkit/build-angular from 0.1102.7 to 13.2.4 @angular/cli from 11.2.7 to 13.2.4 @angular/compiler-cli from 11.2.8 to 13.2.3 @angular/language-service from 11.2.8 to 13.2.3 @typescript-eslint/eslint-plugin from 4.3.0 to 5.12.0 @typescript-eslint/parser from 4.3.0 to 5.12.0 eslint from 7.6.0 to 8.9.0 eslint-plugin-import from 2.22.1 to 2.25.4 eslint-plugin-jsdoc from 30.7.6 to 37.9.3 typescript from 4.0.7 to 4.5.5 Added: @cds/angular version 5.6.4 @webcomponents/custom-elements version 1.0.0 Removed @clr/core version 3.1.4
1 parent 0411f5c commit f4dcc0d

File tree

13 files changed

+4810
-9272
lines changed

13 files changed

+4810
-9272
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<testcontainers.postgresql.version>1.15.3</testcontainers.postgresql.version>
8989
<mockito.version>2.25.0</mockito.version>
9090
<cron-expression-descriptor.version>1.2</cron-expression-descriptor.version>
91-
<node.version>12.14.1</node.version>
91+
<node.version>12.22.10</node.version>
9292
<npm.version>6.13.4</npm.version>
9393
<scala-maven-plugin.version>3.2.1</scala-maven-plugin.version>
9494
<maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>

src/main/scala/za/co/absa/hyperdrive/trigger/api/rest/WebSecurityConfig.scala

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,9 @@ class WebSecurityConfig @Inject()(val beanFactory: BeanFactory, authConfig: Auth
7979
.authorizeRequests()
8080
.antMatchers(
8181
"/", "/index.html",
82-
"/main-es5*.js",
83-
"/main-es2015*.js",
84-
"/polyfills-es5*.js",
85-
"/polyfills-es2015*.js",
86-
"/runtime-es5*.js",
87-
"/runtime-es2015*.js",
82+
"/main*.js",
83+
"/polyfills*.js",
84+
"/runtime*.js",
8885
"/scripts*.js",
8986
"/styles*.css",
9087
"/favicon.ico",

ui/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ speed-measure-plugin*.json
3232
.history/*
3333

3434
# misc
35+
/.angular/cache
3536
/.sass-cache
3637
/connect.lock
3738
/coverage

ui/angular.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
"main": "src/main.ts",
2323
"polyfills": "src/polyfills.ts",
2424
"tsConfig": "tsconfig.app.json",
25-
"aot": true,
2625
"baseHref": "/hyperdrive_trigger/",
27-
"deployUrl": "/hyperdrive_trigger/",
2826
"assets": [
2927
"src/favicon.ico",
3028
"src/assets"
@@ -38,7 +36,13 @@
3836
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
3937
"node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
4038
"node_modules/@clr/icons/clr-icons.min.js"
41-
]
39+
],
40+
"vendorChunk": true,
41+
"extractLicenses": false,
42+
"buildOptimizer": false,
43+
"sourceMap": true,
44+
"optimization": false,
45+
"namedChunks": true
4246
},
4347
"configurations": {
4448
"production": {
@@ -68,7 +72,8 @@
6872
}
6973
]
7074
}
71-
}
75+
},
76+
"defaultConfiguration": ""
7277
},
7378
"serve": {
7479
"builder": "@angular-devkit/build-angular:dev-server",

0 commit comments

Comments
 (0)