@eui/tools 6.12.59 → 6.12.60
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 +9 -0
- package/package.json +1 -1
- package/scripts/csdr/audit/yarn.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
1
|
+
6.12.60
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.12.60 (2023-09-28)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* on null AUDIT_DEPENDENCIES_GATES object - EUI-8107 [EUI-8107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-8107) ([023bd10c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/023bd10c7bc4847e73a5ac8c5bf797dd05adc872))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.12.59 (2023-09-28)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -139,7 +139,7 @@ module.exports.audit = (pkg) => {
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
// getting gates for euiVersion found
|
|
142
|
-
const gates = configOptions.AUDIT_DEPENDENCIES_GATES[euiVersion];
|
|
142
|
+
const gates = configOptions.AUDIT_DEPENDENCIES_GATES ? configOptions.AUDIT_DEPENDENCIES_GATES[euiVersion]: undefined;
|
|
143
143
|
|
|
144
144
|
tools.logTitle(`Checking audit dependencies gates for local euiVersion : ${euiVersion}`);
|
|
145
145
|
|