@oroinc/oro-webpack-config-builder 5.0.0-lts2 → 5.0.0-lts4
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/CHANGELOG.md +6 -0
- package/package.json +7 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
## 5.0.0-lts4
|
|
2
|
+
- Updated underscore library
|
|
3
|
+
|
|
4
|
+
## 5.0.0-lts3
|
|
5
|
+
* **Security Fix:** Patched a high-severity vulnerability in the nested `immutable` package (GHSA-wf6x-7x77-mvgw).
|
|
6
|
+
Added npm `"overrides"` for `immutable@^5.1.5`. This updates the package deep inside `sass-loader` without breaking our current Node 16 environment.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oroinc/oro-webpack-config-builder",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-lts4",
|
|
4
4
|
"author": "Oro, Inc (https://www.oroinc.com)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "An integration of OroPlatform based applications with the Webpack.",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"printf": "~0.6.0",
|
|
31
31
|
"resolve-url-loader": "^5.0.0",
|
|
32
32
|
"rtlcss-webpack-plugin": "~4.0.6",
|
|
33
|
-
"sass": "1.
|
|
34
|
-
"sass-loader": "
|
|
33
|
+
"sass": "~1.62.0",
|
|
34
|
+
"sass-loader": "~13.2.0",
|
|
35
35
|
"schema-utils": "^4.0.0",
|
|
36
36
|
"style-loader": "~3.3.1",
|
|
37
37
|
"terser": "~5.17.1",
|
|
38
38
|
"text-loader": "0.0.1",
|
|
39
|
-
"underscore": "1.13
|
|
39
|
+
"underscore": "^1.13.8",
|
|
40
40
|
"url-loader": "~4.1.1",
|
|
41
41
|
"webpack": "~5.80.0",
|
|
42
42
|
"webpack-bundle-analyzer": "~4.8.0",
|
|
@@ -44,5 +44,8 @@
|
|
|
44
44
|
"webpack-dev-server": "^4.11.1",
|
|
45
45
|
"webpack-merge": "~5.8.0",
|
|
46
46
|
"wildcard": "~2.0.0"
|
|
47
|
+
},
|
|
48
|
+
"overrides": {
|
|
49
|
+
"immutable": "^5.1.5"
|
|
47
50
|
}
|
|
48
51
|
}
|