@eui/tools 6.12.61 → 6.12.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +2 -2
- package/scripts/csdr/init/remotes/17.x/full/common/app/reducers/index.ts +5 -5
- package/scripts/csdr/init/remotes/17.x/full/options/user-reducers/app/reducers/index.ts +5 -5
- package/scripts/csdr/init/resources/15.x/resolutions.json +2 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
1
|
+
6.12.63
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.12.63 (2023-10-05)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* vulnerable deps - EUI-8107 [EUI-8107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-8107) ([7234a427](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/7234a427e02196e14e258bb10c795771f7c2e619))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.12.62 (2023-09-29)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* addition of runtimeChecks setup for ngrx store for the automatic generated applications. runtimeChecks are currently added, but not enabled. MWP-10096 [MWP-10096](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10096) ([0cf80aae](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/0cf80aae50440f3ecd5e1411e44b844363525a23))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.12.61 (2023-09-29)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/tools",
|
|
3
|
-
"version": "6.12.
|
|
3
|
+
"version": "6.12.63",
|
|
4
4
|
"tag": "latest",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI common tools and scripts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"cssnano": "5.1.14",
|
|
40
40
|
"extend": "3.0.2",
|
|
41
41
|
"mocha": "10.2.0",
|
|
42
|
-
"chai": "4.3.
|
|
42
|
+
"chai": "4.3.10",
|
|
43
43
|
"nyc": "15.1.0",
|
|
44
44
|
"node-fetch": "2.6.9",
|
|
45
45
|
"svg-sprite": "2.0.2",
|
|
@@ -42,10 +42,10 @@ export function logger(reducer: ActionReducer<AppState>): ActionReducer<AppState
|
|
|
42
42
|
export const metaReducers: MetaReducer<AppState>[] = !environment.production ? [logger, storeFreeze] : [];
|
|
43
43
|
|
|
44
44
|
export const runtimeChecks: RuntimeChecks = {
|
|
45
|
-
strictStateSerializability:
|
|
45
|
+
strictStateSerializability: false,
|
|
46
46
|
strictActionSerializability: false,
|
|
47
|
-
strictStateImmutability:
|
|
48
|
-
strictActionImmutability:
|
|
49
|
-
strictActionWithinNgZone:
|
|
50
|
-
strictActionTypeUniqueness:
|
|
47
|
+
strictStateImmutability: false,
|
|
48
|
+
strictActionImmutability: false,
|
|
49
|
+
strictActionWithinNgZone: false,
|
|
50
|
+
strictActionTypeUniqueness: false,
|
|
51
51
|
};
|
|
@@ -66,10 +66,10 @@ export function metaReducers(config: any, elementStorage: ElementStorageService)
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
export const runtimeChecks: RuntimeChecks = {
|
|
69
|
-
strictStateSerializability:
|
|
69
|
+
strictStateSerializability: false,
|
|
70
70
|
strictActionSerializability: false,
|
|
71
|
-
strictStateImmutability:
|
|
72
|
-
strictActionImmutability:
|
|
73
|
-
strictActionWithinNgZone:
|
|
74
|
-
strictActionTypeUniqueness:
|
|
71
|
+
strictStateImmutability: false,
|
|
72
|
+
strictActionImmutability: false,
|
|
73
|
+
strictActionWithinNgZone: false,
|
|
74
|
+
strictActionTypeUniqueness: false,
|
|
75
75
|
};
|