From f6f555265f51f025098daf912b35028199b8f26c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Feb 2022 12:31:51 +0100 Subject: [PATCH] Version Packages (#2610) --- .changeset/ninety-queens-fly.md | 5 ----- .changeset/perfect-cameras-greet.md | 5 ----- .changeset/silver-foxes-double.md | 6 ------ .changeset/spotty-clouds-listen.md | 5 ----- .changeset/tricky-cameras-fold.md | 5 ----- .changeset/wet-bikes-explain.md | 5 ----- packages/is-prop-valid/CHANGELOG.md | 6 ++++++ packages/is-prop-valid/package.json | 2 +- packages/jest/CHANGELOG.md | 6 ++++++ packages/jest/package.json | 4 ++-- packages/primitives-core/package.json | 2 +- packages/react/CHANGELOG.md | 15 +++++++++++++++ packages/react/package.json | 6 +++--- packages/styled/CHANGELOG.md | 12 ++++++++++++ packages/styled/package.json | 8 ++++---- packages/utils/CHANGELOG.md | 6 ++++++ packages/utils/package.json | 2 +- 17 files changed, 57 insertions(+), 43 deletions(-) delete mode 100644 .changeset/ninety-queens-fly.md delete mode 100644 .changeset/perfect-cameras-greet.md delete mode 100644 .changeset/silver-foxes-double.md delete mode 100644 .changeset/spotty-clouds-listen.md delete mode 100644 .changeset/tricky-cameras-fold.md delete mode 100644 .changeset/wet-bikes-explain.md diff --git a/.changeset/ninety-queens-fly.md b/.changeset/ninety-queens-fly.md deleted file mode 100644 index 3f9465fce..000000000 --- a/.changeset/ninety-queens-fly.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@emotion/is-prop-valid": patch ---- - -Added [`abbr`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th#attr-abbr) prop to the allowlist of forwardable props. diff --git a/.changeset/perfect-cameras-greet.md b/.changeset/perfect-cameras-greet.md deleted file mode 100644 index d096a2350..000000000 --- a/.changeset/perfect-cameras-greet.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emotion/react': patch ---- - -Added `@emotion/babel-plugin` as a dependency - this is an actual dependency of the `@emotion/react/macro` entrypoint and it has to be explicitly declared to fix compatibility with strict package managers. diff --git a/.changeset/silver-foxes-double.md b/.changeset/silver-foxes-double.md deleted file mode 100644 index 576d0a7f5..000000000 --- a/.changeset/silver-foxes-double.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@emotion/react': minor -'@emotion/styled': minor ---- - -Refactored code to use the upcoming `React.useInsertionEffect` when it's available (this is a new hook that is going to be introduced in React 18). This shouldn't have any effect on existing codebases and the change should be transparent. diff --git a/.changeset/spotty-clouds-listen.md b/.changeset/spotty-clouds-listen.md deleted file mode 100644 index 610d9257e..000000000 --- a/.changeset/spotty-clouds-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emotion/react': patch ---- - -Fix an edge case where runtime label extraction in class components led to invalid class names in Firefox. This only affected the development build of Emotion. diff --git a/.changeset/tricky-cameras-fold.md b/.changeset/tricky-cameras-fold.md deleted file mode 100644 index 38bdc86a9..000000000 --- a/.changeset/tricky-cameras-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emotion/utils': minor ---- - -Introduced `registerStyles` helper that is shared across between other packages. This is just an internal util that shouldn't be used by packages other than `@emotion/*` packages. diff --git a/.changeset/wet-bikes-explain.md b/.changeset/wet-bikes-explain.md deleted file mode 100644 index 751a46a47..000000000 --- a/.changeset/wet-bikes-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emotion/jest': patch ---- - -Adjusted Enzyme-related code path to accomodate for changes related to the refactor around using `React.useInsertionEffect`. diff --git a/packages/is-prop-valid/CHANGELOG.md b/packages/is-prop-valid/CHANGELOG.md index 56334c4ba..374255451 100644 --- a/packages/is-prop-valid/CHANGELOG.md +++ b/packages/is-prop-valid/CHANGELOG.md @@ -1,5 +1,11 @@ # @emotion/is-prop-valid +## 1.1.2 + +### Patch Changes + +- [#2621](https://github.com/emotion-js/emotion/pull/2621) [`d2531639`](https://github.com/emotion-js/emotion/commit/d25316393639232df16ba836b407e3678eea5e4d) Thanks [@andreasmcdermott](https://github.com/andreasmcdermott)! - Added [`abbr`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th#attr-abbr) prop to the allowlist of forwardable props. + ## 1.1.1 ### Patch Changes diff --git a/packages/is-prop-valid/package.json b/packages/is-prop-valid/package.json index 614c02e1a..5490e2854 100644 --- a/packages/is-prop-valid/package.json +++ b/packages/is-prop-valid/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/is-prop-valid", - "version": "1.1.1", + "version": "1.1.2", "description": "A function to check whether a prop is valid for HTML and SVG elements", "main": "dist/emotion-is-prop-valid.cjs.js", "module": "dist/emotion-is-prop-valid.esm.js", diff --git a/packages/jest/CHANGELOG.md b/packages/jest/CHANGELOG.md index 72daaee61..ab95f1177 100644 --- a/packages/jest/CHANGELOG.md +++ b/packages/jest/CHANGELOG.md @@ -1,5 +1,11 @@ # @emotion/jest +## 11.8.0 + +### Patch Changes + +- [#2600](https://github.com/emotion-js/emotion/pull/2600) [`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573) Thanks [@Andarist](https://github.com/Andarist)! - Adjusted Enzyme-related code path to accomodate for changes related to the refactor around using `React.useInsertionEffect`. + ## 11.7.1 ### Patch Changes diff --git a/packages/jest/package.json b/packages/jest/package.json index 906dcf55f..861078bf6 100644 --- a/packages/jest/package.json +++ b/packages/jest/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/jest", - "version": "11.7.1", + "version": "11.8.0", "description": "Jest utilities for emotion", "main": "dist/emotion-jest.cjs.js", "module": "dist/emotion-jest.esm.js", @@ -37,7 +37,7 @@ }, "devDependencies": { "@emotion/css": "11.7.1", - "@emotion/react": "11.7.1", + "@emotion/react": "11.8.0", "@types/jest": "^27.0.3", "dtslint": "^0.3.0", "enzyme-to-json": "^3.6.1", diff --git a/packages/primitives-core/package.json b/packages/primitives-core/package.json index 765a98456..c60c3b176 100644 --- a/packages/primitives-core/package.json +++ b/packages/primitives-core/package.json @@ -20,7 +20,7 @@ "react": ">=16.8.0" }, "devDependencies": { - "@emotion/react": "11.7.1", + "@emotion/react": "11.8.0", "react": "16.14.0" }, "homepage": "https://emotion.sh", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 83c5f2649..c516f3d6a 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,20 @@ # @emotion/react +## 11.8.0 + +### Minor Changes + +- [#2600](https://github.com/emotion-js/emotion/pull/2600) [`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573) Thanks [@Andarist](https://github.com/Andarist)! - Refactored code to use the upcoming `React.useInsertionEffect` when it's available (this is a new hook that is going to be introduced in React 18). This shouldn't have any effect on existing codebases and the change should be transparent. + +### Patch Changes + +- [#2609](https://github.com/emotion-js/emotion/pull/2609) [`242f7d8c`](https://github.com/emotion-js/emotion/commit/242f7d8c9f3ddbba2a69664bcc0fa22501df849f) Thanks [@Andarist](https://github.com/Andarist)! - Added `@emotion/babel-plugin` as a dependency - this is an actual dependency of the `@emotion/react/macro` entrypoint and it has to be explicitly declared to fix compatibility with strict package managers. + +* [#2615](https://github.com/emotion-js/emotion/pull/2615) [`3d672acd`](https://github.com/emotion-js/emotion/commit/3d672acd4d379f5861012d6e6d38feadd212966a) Thanks [@srmagura](https://github.com/srmagura)! - Fix an edge case where runtime label extraction in class components led to invalid class names in Firefox. This only affected the development build of Emotion. + +* Updated dependencies [[`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573)]: + - @emotion/utils@1.1.0 + ## 11.7.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index e0823eb7c..59f57dfed 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/react", - "version": "11.7.1", + "version": "11.8.0", "main": "dist/emotion-react.cjs.js", "module": "dist/emotion-react.esm.js", "browser": { @@ -31,7 +31,7 @@ "@emotion/cache": "^11.7.1", "@emotion/serialize": "^1.0.2", "@emotion/sheet": "^1.1.0", - "@emotion/utils": "^1.0.0", + "@emotion/utils": "^1.1.0", "@emotion/weak-memoize": "^0.2.5", "hoist-non-react-statics": "^3.3.1" }, @@ -52,7 +52,7 @@ "@emotion/css": "11.7.1", "@emotion/css-prettifier": "1.0.1", "@emotion/server": "11.4.0", - "@emotion/styled": "11.6.0", + "@emotion/styled": "11.8.0", "@types/react": "^16.9.11", "dtslint": "^0.3.0", "html-tag-names": "^1.1.2", diff --git a/packages/styled/CHANGELOG.md b/packages/styled/CHANGELOG.md index 2b368d040..fee79d6a9 100644 --- a/packages/styled/CHANGELOG.md +++ b/packages/styled/CHANGELOG.md @@ -1,5 +1,17 @@ # @emotion/styled +## 11.8.0 + +### Minor Changes + +- [#2600](https://github.com/emotion-js/emotion/pull/2600) [`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573) Thanks [@Andarist](https://github.com/Andarist)! - Refactored code to use the upcoming `React.useInsertionEffect` when it's available (this is a new hook that is going to be introduced in React 18). This shouldn't have any effect on existing codebases and the change should be transparent. + +### Patch Changes + +- Updated dependencies [[`d2531639`](https://github.com/emotion-js/emotion/commit/d25316393639232df16ba836b407e3678eea5e4d), [`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573)]: + - @emotion/is-prop-valid@1.1.2 + - @emotion/utils@1.1.0 + ## 11.6.0 ### Minor Changes diff --git a/packages/styled/package.json b/packages/styled/package.json index 069e9587d..8c54752f8 100644 --- a/packages/styled/package.json +++ b/packages/styled/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/styled", - "version": "11.6.0", + "version": "11.8.0", "description": "styled API for emotion", "main": "dist/emotion-styled.cjs.js", "module": "dist/emotion-styled.esm.js", @@ -13,9 +13,9 @@ "dependencies": { "@babel/runtime": "^7.13.10", "@emotion/babel-plugin": "^11.7.1", - "@emotion/is-prop-valid": "^1.1.1", + "@emotion/is-prop-valid": "^1.1.2", "@emotion/serialize": "^1.0.2", - "@emotion/utils": "^1.0.0" + "@emotion/utils": "^1.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0", @@ -32,7 +32,7 @@ }, "devDependencies": { "@babel/core": "^7.13.10", - "@emotion/react": "11.7.1", + "@emotion/react": "11.8.0", "dtslint": "^0.3.0", "react": "16.14.0" }, diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 1acae95ef..804640127 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @emotion/utils +## 1.1.0 + +### Minor Changes + +- [#2600](https://github.com/emotion-js/emotion/pull/2600) [`2f27156a`](https://github.com/emotion-js/emotion/commit/2f27156a73f94c3aac82e4ed492cbfdc97225573) Thanks [@Andarist](https://github.com/Andarist)! - Introduced `registerStyles` helper that is shared across between other packages. This is just an internal util that shouldn't be used by packages other than `@emotion/*` packages. + ## 1.0.0 ### Major Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 83716f931..d66152909 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/utils", - "version": "1.0.0", + "version": "1.1.0", "description": "internal utils for emotion", "main": "dist/emotion-utils.cjs.js", "module": "dist/emotion-utils.esm.js",