Skip to content

Commit d8d44e1

Browse files
Version Packages
1 parent e5beae8 commit d8d44e1

File tree

12 files changed

+37
-23
lines changed

12 files changed

+37
-23
lines changed

.changeset/famous-ghosts-roll.md

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

.changeset/itchy-waves-beg.md

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

packages/cache/CHANGELOG.md

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

3+
## 11.4.2
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+
311
## 11.4.0
412

513
### Patch Changes

packages/cache/package.json

Lines changed: 1 addition & 1 deletion
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.4.2",
44
"description": "emotion's cache",
55
"main": "dist/emotion-cache.cjs.js",
66
"module": "dist/emotion-cache.esm.js",

packages/css/CHANGELOG.md

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

3+
## 11.4.2
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)]:
10+
- @emotion/cache@11.4.2
11+
312
## 11.1.3
413

514
### Patch Changes

packages/css/package.json

Lines changed: 2 additions & 2 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.4.2",
44
"description": "The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-css.cjs.js",
66
"module": "dist/emotion-css.esm.js",
@@ -19,7 +19,7 @@
1919
},
2020
"dependencies": {
2121
"@emotion/babel-plugin": "^11.0.0",
22-
"@emotion/cache": "^11.1.3",
22+
"@emotion/cache": "^11.4.2",
2323
"@emotion/serialize": "^1.0.0",
2424
"@emotion/sheet": "^1.0.0",
2525
"@emotion/utils": "^1.0.0"

packages/jest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
}
3737
},
3838
"devDependencies": {
39-
"@emotion/css": "11.1.3",
40-
"@emotion/react": "11.4.1",
39+
"@emotion/css": "11.4.2",
40+
"@emotion/react": "11.4.2",
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.4.2",
2424
"react": "16.14.0"
2525
},
2626
"homepage": "https://emotion.sh",

packages/react/CHANGELOG.md

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

3+
## 11.4.2
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)]:
10+
- @emotion/cache@11.4.2
11+
312
## 11.4.1
413

514
### Patch Changes

packages/react/package.json

Lines changed: 3 additions & 3 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.4.2",
44
"main": "dist/emotion-react.cjs.js",
55
"module": "dist/emotion-react.esm.js",
66
"browser": {
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@babel/runtime": "^7.13.10",
30-
"@emotion/cache": "^11.4.0",
30+
"@emotion/cache": "^11.4.2",
3131
"@emotion/serialize": "^1.0.2",
3232
"@emotion/sheet": "^1.0.2",
3333
"@emotion/utils": "^1.0.0",
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@babel/core": "^7.13.10",
51-
"@emotion/css": "11.1.3",
51+
"@emotion/css": "11.4.2",
5252
"@emotion/css-prettifier": "1.0.0",
5353
"@emotion/server": "11.4.0",
5454
"@emotion/styled": "11.3.0",

0 commit comments

Comments
 (0)