@splunk/react-ui 4.5.1 → 4.5.2
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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
============
|
|
3
3
|
|
|
4
|
+
4.5.2 - March 8, 2022
|
|
5
|
+
----------
|
|
6
|
+
Bug Fixes:
|
|
7
|
+
* Pinned `styled-components@5.1.1` to avoid breaking changes introduced in `styled-components@5.2.0`.
|
|
8
|
+
|
|
9
|
+
**`@splunk/react-ui` 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-ui` do not use `styled-components@^5.2.0` with` @splunk/react-ui`**.
|
|
15
|
+
|
|
4
16
|
4.5.1 - March 1, 2022
|
|
5
17
|
----------
|
|
6
18
|
Bug Fixes:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-ui",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.2",
|
|
4
4
|
"description": "Library of React components that implement the Splunk design language",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Splunk Inc.",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"storybook:build": "./.storybook/scripts/build.sh",
|
|
17
17
|
"stylelint": "stylelint \"src/**/*.{ts,tsx,js,jsx}\" --config stylelint.config.js",
|
|
18
18
|
"test": "jest",
|
|
19
|
-
"test:ci": "JEST_JUNIT_OUTPUT_DIR=./test-reports JEST_JUNIT_OUTPUT_NAME=unit-results.xml JEST_JUNIT_CLASSNAME=unit yarn run test --ci --reporters=default jest-junit --coverage --coverageDirectory=coverage_report/coverage_maps_unit --coverageReporters=
|
|
19
|
+
"test:ci": "JEST_JUNIT_OUTPUT_DIR=./test-reports JEST_JUNIT_OUTPUT_NAME=unit-results.xml JEST_JUNIT_CLASSNAME=unit yarn run test --ci --reporters=default jest-junit --coverage --coverageDirectory=coverage_report/coverage_maps_unit --coverageReporters=cobertura",
|
|
20
20
|
"test:watch": "jest --watch",
|
|
21
21
|
"test:functional": "splunk-wdio-functional-test-runner functional.local.conf.js",
|
|
22
22
|
"test:functional:coverage": "cross-env NODE_ENV=test-coverage splunk-wdio-functional-test-runner functional.local.conf.js --coverage",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"react-dom": "^16.12.0",
|
|
108
108
|
"react-test-renderer": "^16.12.0",
|
|
109
109
|
"sinon": "^2.1.0",
|
|
110
|
-
"styled-components": "
|
|
110
|
+
"styled-components": "5.1.1",
|
|
111
111
|
"stylelint": "^13.0.0",
|
|
112
112
|
"ts-loader": "^6.2.1",
|
|
113
113
|
"typescript": "^4.0.5",
|