Skip to content

Commit 4be3391

Browse files
Version Packages (#2495)
1 parent f2eda82 commit 4be3391

22 files changed

+72
-54
lines changed

.changeset/famous-ghosts-roll.md

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

.changeset/hip-cherries-arrive.md

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

.changeset/itchy-waves-beg.md

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

.changeset/nasty-gorillas-notice.md

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

.changeset/ninety-bugs-tie.md

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

.changeset/sweet-planes-begin.md

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

.changeset/sweet-plums-behave.md

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

packages/cache/CHANGELOG.md

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

3+
## 11.5.0
4+
5+
### Patch Changes
6+
7+
- [#2498](https://github.com/emotion-js/emotion/pull/2498) [`e5beae8e`](https://github.com/emotion-js/emotion/commit/e5beae8e320f3d1455e45efecdfeb7d757687a43) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an edge case issue with incorrect rules being generated. When a context selector (`&`) was used not at the beginning of a selector (which is not valid SCSS but is allowed by the Stylis parser that we are using) within a group of selectors containing a pseudoclass then it was not replaced correctly with the current context selector.
8+
9+
* [#2493](https://github.com/emotion-js/emotion/pull/2493) [`9ae4a91a`](https://github.com/emotion-js/emotion/commit/9ae4a91a08a6f7c5ca26a585f1c271a179db4623) Thanks [@Andarist](https://github.com/Andarist)! - Improved the declared types related to Stylis. This should improve the compatibility with the types published in `@types/stylis`.
10+
11+
* Updated dependencies [[`f2eda829`](https://github.com/emotion-js/emotion/commit/f2eda8295429dd1892a06cbc9496321f2a55c10a)]:
12+
- @emotion/sheet@1.0.3
13+
314
## 11.4.0
415

516
### Patch Changes

packages/cache/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/cache",
3-
"version": "11.4.0",
3+
"version": "11.5.0",
44
"description": "emotion's cache",
55
"main": "dist/emotion-cache.cjs.js",
66
"module": "dist/emotion-cache.esm.js",
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@emotion/memoize": "^0.7.4",
19-
"@emotion/sheet": "^1.0.0",
19+
"@emotion/sheet": "^1.0.3",
2020
"@emotion/utils": "^1.0.0",
2121
"@emotion/weak-memoize": "^0.2.5",
2222
"stylis": "^4.0.10"

packages/css/CHANGELOG.md

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

3+
## 11.5.0
4+
5+
### Patch Changes
6+
7+
- [#2498](https://github.com/emotion-js/emotion/pull/2498) [`e5beae8e`](https://github.com/emotion-js/emotion/commit/e5beae8e320f3d1455e45efecdfeb7d757687a43) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an edge case issue with incorrect rules being generated. When a context selector (`&`) was used not at the beginning of a selector (which is not valid SCSS but is allowed by the Stylis parser that we are using) within a group of selectors containing a pseudoclass then it was not replaced correctly with the current context selector.
8+
9+
- Updated dependencies [[`e5beae8e`](https://github.com/emotion-js/emotion/commit/e5beae8e320f3d1455e45efecdfeb7d757687a43), [`9ae4a91a`](https://github.com/emotion-js/emotion/commit/9ae4a91a08a6f7c5ca26a585f1c271a179db4623), [`f2eda829`](https://github.com/emotion-js/emotion/commit/f2eda8295429dd1892a06cbc9496321f2a55c10a)]:
10+
- @emotion/cache@11.5.0
11+
- @emotion/sheet@1.0.3
12+
313
## 11.1.3
414

515
### Patch Changes

packages/css/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/css",
3-
"version": "11.1.3",
3+
"version": "11.5.0",
44
"description": "The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-css.cjs.js",
66
"module": "dist/emotion-css.esm.js",
@@ -19,9 +19,9 @@
1919
},
2020
"dependencies": {
2121
"@emotion/babel-plugin": "^11.0.0",
22-
"@emotion/cache": "^11.1.3",
22+
"@emotion/cache": "^11.5.0",
2323
"@emotion/serialize": "^1.0.0",
24-
"@emotion/sheet": "^1.0.0",
24+
"@emotion/sheet": "^1.0.3",
2525
"@emotion/utils": "^1.0.0"
2626
},
2727
"peerDependencies": {

packages/eslint-plugin/CHANGELOG.md

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

3+
## 11.5.0
4+
5+
### Patch Changes
6+
7+
- [#2353](https://github.com/emotion-js/emotion/pull/2353) [`d7d768e0`](https://github.com/emotion-js/emotion/commit/d7d768e056e6cd7a10c2de6ecb2b564e6444dac3) Thanks [@iChenLei](https://github.com/iChenLei)! - implement automatic adding of jsxImportSource pragma definition
8+
39
## 11.2.0
410

511
### Patch Changes

packages/eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/eslint-plugin",
3-
"version": "11.2.0",
3+
"version": "11.5.0",
44
"description": "ESLint rules for emotion",
55
"scripts": {
66
"test:typescript": "exit 0"

packages/jest/CHANGELOG.md

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

3+
## 11.5.0
4+
5+
### Minor Changes
6+
7+
- [#2456](https://github.com/emotion-js/emotion/pull/2456) [`500cdd82`](https://github.com/emotion-js/emotion/commit/500cdd828b65ad4b778c8a1459094b099d50f08a) Thanks [@billyjanitsch](https://github.com/billyjanitsch)! - Support typings for Jest v27
8+
9+
### Patch Changes
10+
11+
- [#2457](https://github.com/emotion-js/emotion/pull/2457) [`218e4f78`](https://github.com/emotion-js/emotion/commit/218e4f78ca03b36cd8ed595bc1a93892b9783eda) Thanks [@jcleefw](https://github.com/jcleefw)! - Add `RegExp` as a valid type for the `target` option accepted by `toHaveStyleRule`.
12+
313
## 11.3.0
414

515
### Patch Changes

packages/jest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/jest",
3-
"version": "11.3.0",
3+
"version": "11.5.0",
44
"description": "Jest utilities for emotion",
55
"main": "dist/emotion-jest.cjs.js",
66
"module": "dist/emotion-jest.esm.js",
@@ -36,8 +36,8 @@
3636
}
3737
},
3838
"devDependencies": {
39-
"@emotion/css": "11.1.3",
40-
"@emotion/react": "11.4.1",
39+
"@emotion/css": "11.5.0",
40+
"@emotion/react": "11.5.0",
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.1",
23+
"@emotion/react": "11.5.0",
2424
"react": "16.14.0"
2525
},
2626
"homepage": "https://emotion.sh",

packages/react/CHANGELOG.md

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

3+
## 11.5.0
4+
5+
### Patch Changes
6+
7+
- [#2498](https://github.com/emotion-js/emotion/pull/2498) [`e5beae8e`](https://github.com/emotion-js/emotion/commit/e5beae8e320f3d1455e45efecdfeb7d757687a43) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an edge case issue with incorrect rules being generated. When a context selector (`&`) was used not at the beginning of a selector (which is not valid SCSS but is allowed by the Stylis parser that we are using) within a group of selectors containing a pseudoclass then it was not replaced correctly with the current context selector.
8+
9+
* [#2500](https://github.com/emotion-js/emotion/pull/2500) [`eda5e687`](https://github.com/emotion-js/emotion/commit/eda5e687c0bc4eddcafb243a2b1028296fb45cba) Thanks [@Jarred-Sumner](https://github.com/Jarred-Sumner)! - Fix error loading @emotion/react in alternative JS environments
10+
11+
* Updated dependencies [[`e5beae8e`](https://github.com/emotion-js/emotion/commit/e5beae8e320f3d1455e45efecdfeb7d757687a43), [`9ae4a91a`](https://github.com/emotion-js/emotion/commit/9ae4a91a08a6f7c5ca26a585f1c271a179db4623), [`f2eda829`](https://github.com/emotion-js/emotion/commit/f2eda8295429dd1892a06cbc9496321f2a55c10a)]:
12+
- @emotion/cache@11.5.0
13+
- @emotion/sheet@1.0.3
14+
315
## 11.4.1
416

517
### Patch Changes

packages/react/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/react",
3-
"version": "11.4.1",
3+
"version": "11.5.0",
44
"main": "dist/emotion-react.cjs.js",
55
"module": "dist/emotion-react.esm.js",
66
"browser": {
@@ -27,9 +27,9 @@
2727
},
2828
"dependencies": {
2929
"@babel/runtime": "^7.13.10",
30-
"@emotion/cache": "^11.4.0",
30+
"@emotion/cache": "^11.5.0",
3131
"@emotion/serialize": "^1.0.2",
32-
"@emotion/sheet": "^1.0.2",
32+
"@emotion/sheet": "^1.0.3",
3333
"@emotion/utils": "^1.0.0",
3434
"@emotion/weak-memoize": "^0.2.5",
3535
"hoist-non-react-statics": "^3.3.1"
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@babel/core": "^7.13.10",
51-
"@emotion/css": "11.1.3",
51+
"@emotion/css": "11.5.0",
5252
"@emotion/css-prettifier": "1.0.0",
5353
"@emotion/server": "11.4.0",
5454
"@emotion/styled": "11.3.0",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"devDependencies": {
3131
"@emotion/babel-plugin": "11.3.0",
32-
"@emotion/css": "11.1.3",
32+
"@emotion/css": "11.5.0",
3333
"@emotion/css-prettifier": "1.0.0",
3434
"@types/node": "^10.11.4",
3535
"dtslint": "^0.3.0"

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.3
4+
5+
### Patch Changes
6+
7+
- [#2447](https://github.com/emotion-js/emotion/pull/2447) [`f2eda829`](https://github.com/emotion-js/emotion/commit/f2eda8295429dd1892a06cbc9496321f2a55c10a) Thanks [@mdesantis](https://github.com/mdesantis)! - Fixed an issue with `sheet.flush()` crashing if its style elements were already detached by something else.
8+
39
## 1.0.2
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.2",
3+
"version": "1.0.3",
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.1",
35+
"@emotion/react": "11.5.0",
3636
"dtslint": "^0.3.0",
3737
"react": "16.14.0"
3838
},

0 commit comments

Comments
 (0)