Skip to content

Commit 4c7b6de

Browse files
Version Packages (#2394)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent cd25b62 commit 4c7b6de

File tree

11 files changed

+25
-27
lines changed

11 files changed

+25
-27
lines changed

.changeset/forty-pumas-refuse.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/light-swans-guess.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/olive-zebras-pump.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/pink-olives-try.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"devDependencies": {
3939
"@emotion/css": "11.1.3",
40-
"@emotion/react": "11.4.0",
40+
"@emotion/react": "11.4.1",
4141
"@types/jest": "^26.0.14",
4242
"dtslint": "^0.3.0",
4343
"enzyme-to-json": "^3.6.1",

packages/primitives-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"react": ">=16.8.0"
2121
},
2222
"devDependencies": {
23-
"@emotion/react": "11.4.0",
23+
"@emotion/react": "11.4.1",
2424
"react": "16.14.0"
2525
},
2626
"homepage": "https://emotion.sh",

packages/react/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @emotion/react
22

3+
## 11.4.1
4+
5+
### Patch Changes
6+
7+
- [#2441](https://github.com/emotion-js/emotion/pull/2441) [`24557d9d`](https://github.com/emotion-js/emotion/commit/24557d9d6409db453fdbaa031cb635820305f137) Thanks [@garronej](https://github.com/garronej)! - Exposed `__unsafe_useEmotionCache` which can be used to access the current Emotion's cache in an easier way than before. Using this might break 0-config SSR and is not recommended to be used unless there you know what you are doing and you are OK with the mentioned downside.
8+
9+
* [#2424](https://github.com/emotion-js/emotion/pull/2424) [`cd25b62d`](https://github.com/emotion-js/emotion/commit/cd25b62da80119bfb1c74a8d0a3516fcd2f62e0e) Thanks [@tills13](https://github.com/tills13)! - Use theme context when rendering components at all times. This removes a conditional usage of a React hook that could break [Rules of Hooks](https://reactjs.org/docs/hooks-rules.html) in some scenarios.
10+
11+
- [#2428](https://github.com/emotion-js/emotion/pull/2428) [`a69929d6`](https://github.com/emotion-js/emotion/commit/a69929d6ab47e834a3535525657829c81dd97b4a) Thanks [@eps1lon](https://github.com/eps1lon)! - Added display names to public React contexts in development builds. This helps to recognize them in React Developer Tools.
12+
13+
- Updated dependencies [[`405af5ca`](https://github.com/emotion-js/emotion/commit/405af5ca01dcc0cac64227db082ce3f483e1bb46)]:
14+
- @emotion/sheet@1.0.2
15+
316
## 11.4.0
417

518
### Patch Changes

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/react",
3-
"version": "11.4.0",
3+
"version": "11.4.1",
44
"main": "dist/emotion-react.cjs.js",
55
"module": "dist/emotion-react.esm.js",
66
"browser": {
@@ -29,7 +29,7 @@
2929
"@babel/runtime": "^7.13.10",
3030
"@emotion/cache": "^11.4.0",
3131
"@emotion/serialize": "^1.0.2",
32-
"@emotion/sheet": "^1.0.1",
32+
"@emotion/sheet": "^1.0.2",
3333
"@emotion/utils": "^1.0.0",
3434
"@emotion/weak-memoize": "^0.2.5",
3535
"hoist-non-react-statics": "^3.3.1"

packages/sheet/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @emotion/sheet
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- [#2393](https://github.com/emotion-js/emotion/pull/2393) [`405af5ca`](https://github.com/emotion-js/emotion/commit/405af5ca01dcc0cac64227db082ce3f483e1bb46) Thanks [@layershifter](https://github.com/layershifter)! - Do not log failed rule insertions in the speedy mode for even more vendor-prefixed pseudo-elements/classes like `:-moz-focus-inner`, `:-moz-focusring`, and `:-ms-clear`.
8+
39
## 1.0.1
410

511
### Patch Changes

packages/sheet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/sheet",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "emotion's stylesheet",
55
"main": "dist/emotion-sheet.cjs.js",
66
"module": "dist/emotion-sheet.esm.js",

packages/styled/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"devDependencies": {
3434
"@babel/core": "^7.13.10",
35-
"@emotion/react": "11.4.0",
35+
"@emotion/react": "11.4.1",
3636
"dtslint": "^0.3.0",
3737
"react": "16.14.0"
3838
},

0 commit comments

Comments
 (0)