@splunk/react-page 5.2.0 → 5.2.1
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 +12 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
5.2.1 - April 5, 2022
|
|
5
|
+
----------
|
|
6
|
+
API Changes:
|
|
7
|
+
* Pinned `styled-components@5.1.1` to avoid breaking changes introduced in `styled-components@5.2.0`.
|
|
8
|
+
|
|
9
|
+
**`@splunk/react-page` is incompatible with styled-components version(s) `^5.2.0`**.
|
|
10
|
+
|
|
11
|
+
`styled-components@5.2.0` changed how selectors like `& + &` are compiled; [styled-components PR#3236](https://github.com/styled-components/styled-components/pull/3236).
|
|
12
|
+
This breaks styles that worked in previous versions of styled-components; [styled-components issue #3265](https://github.com/styled-components/styled-components/issues/3265).
|
|
13
|
+
|
|
14
|
+
**Until noted otherwise in a future release of `@splunk/react-page` do not use `styled-components@^5.2.0` with` @splunk/react-page`**.
|
|
15
|
+
|
|
4
16
|
5.2.0 - February 23, 2022
|
|
5
17
|
----------
|
|
6
18
|
Notes:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-page",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "Load React components into the latest layout from Splunk Enterprise",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,12 +17,14 @@
|
|
|
17
17
|
"test:functional:prepare": "node src/tests/helpers/prepare_environment.js 8.0.3",
|
|
18
18
|
"test:functional": "yarn run test:functional:prepare && splunk-wdio-functional-test-runner functional.local.conf.js",
|
|
19
19
|
"test:functional:ci": "yarn run test:functional:prepare && splunk-wdio-functional-test-runner functional.ci.conf.js",
|
|
20
|
-
"test:functional:cloud": "yarn run test:functional:prepare && splunk-wdio-functional-test-runner functional.cloud.conf.js"
|
|
20
|
+
"test:functional:cloud": "yarn run test:functional:prepare && splunk-wdio-functional-test-runner functional.cloud.conf.js",
|
|
21
|
+
"test:cypress": "echo TODO: SUI-3442",
|
|
22
|
+
"test:cypress:ci": "echo TODO: SUI-3442"
|
|
21
23
|
},
|
|
22
24
|
"dependencies": {
|
|
23
|
-
"@splunk/react-ui": "^4.
|
|
25
|
+
"@splunk/react-ui": "^4.6.0",
|
|
24
26
|
"@splunk/splunk-utils": "^2.1.0",
|
|
25
|
-
"@splunk/themes": "^0.10.
|
|
27
|
+
"@splunk/themes": "^0.10.1",
|
|
26
28
|
"@splunk/ui-utils": "^1.4.0",
|
|
27
29
|
"prop-types": "^15.6.2",
|
|
28
30
|
"scriptjs": "^2.5.8"
|
|
@@ -49,7 +51,7 @@
|
|
|
49
51
|
"react": "^16.12.0",
|
|
50
52
|
"react-dom": "^16.12.0",
|
|
51
53
|
"style-loader": "^0.23.1",
|
|
52
|
-
"styled-components": "
|
|
54
|
+
"styled-components": "5.1.1",
|
|
53
55
|
"stylelint": "^13.0.0",
|
|
54
56
|
"webpack": "^4.16.2",
|
|
55
57
|
"webpack-cli": "^3.1.0",
|
|
@@ -58,7 +60,7 @@
|
|
|
58
60
|
"peerDependencies": {
|
|
59
61
|
"react": "^16.8",
|
|
60
62
|
"react-dom": "^16.8",
|
|
61
|
-
"styled-components": "
|
|
63
|
+
"styled-components": "5.1.1"
|
|
62
64
|
},
|
|
63
65
|
"engines": {
|
|
64
66
|
"node": ">=6"
|