Skip to content

Commit c161e6f

Browse files
Version Packages (#3272)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f45eb19 commit c161e6f

File tree

20 files changed

+130
-73
lines changed

20 files changed

+130
-73
lines changed

.changeset/healthy-lies-decide.md

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

packages/babel-plugin/CHANGELOG.md

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

3+
## 11.13.5
4+
5+
### Patch Changes
6+
7+
- [#3270](https://github.com/emotion-js/emotion/pull/3270) [`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa) Thanks [@emmatown](https://github.com/emmatown)! - Fix inconsistent hashes using development vs production bundles/`exports` conditions when using `@emotion/babel-plugin` with `sourceMap: true` (the default). This is particularly visible when using Emotion with the Next.js Pages router where the `development` condition is used when bundling code but not when importing external code with Node.js.
8+
9+
- Updated dependencies [[`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa)]:
10+
- @emotion/serialize@1.3.3
11+
312
## 11.12.0
413

514
### Patch Changes

packages/babel-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/babel-plugin",
3-
"version": "11.12.0",
3+
"version": "11.13.5",
44
"description": "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-babel-plugin.cjs.js",
66
"module": "dist/emotion-babel-plugin.esm.js",
@@ -26,7 +26,7 @@
2626
"@babel/runtime": "^7.18.3",
2727
"@emotion/hash": "^0.9.2",
2828
"@emotion/memoize": "^0.9.0",
29-
"@emotion/serialize": "^1.2.0",
29+
"@emotion/serialize": "^1.3.3",
3030
"babel-plugin-macros": "^3.1.0",
3131
"convert-source-map": "^1.5.0",
3232
"escape-string-regexp": "^4.0.0",

packages/cache/CHANGELOG.md

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

3+
## 11.13.5
4+
5+
### Patch Changes
6+
7+
- [#3270](https://github.com/emotion-js/emotion/pull/3270) [`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa) Thanks [@emmatown](https://github.com/emmatown)! - Fix inconsistent hashes using development vs production bundles/`exports` conditions when using `@emotion/babel-plugin` with `sourceMap: true` (the default). This is particularly visible when using Emotion with the Next.js Pages router where the `development` condition is used when bundling code but not when importing external code with Node.js.
8+
9+
- Updated dependencies [[`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa)]:
10+
- @emotion/utils@1.4.2
11+
312
## 11.13.1
413

514
### 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.13.1",
3+
"version": "11.13.5",
44
"description": "emotion's cache",
55
"main": "dist/emotion-cache.cjs.js",
66
"module": "dist/emotion-cache.esm.js",
@@ -83,7 +83,7 @@
8383
"dependencies": {
8484
"@emotion/memoize": "^0.9.0",
8585
"@emotion/sheet": "^1.4.0",
86-
"@emotion/utils": "^1.4.0",
86+
"@emotion/utils": "^1.4.2",
8787
"@emotion/weak-memoize": "^0.4.0",
8888
"stylis": "4.2.0"
8989
},

packages/css/CHANGELOG.md

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

3+
## 11.13.5
4+
5+
### Patch Changes
6+
7+
- [#3270](https://github.com/emotion-js/emotion/pull/3270) [`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa) Thanks [@emmatown](https://github.com/emmatown)! - Fix inconsistent hashes using development vs production bundles/`exports` conditions when using `@emotion/babel-plugin` with `sourceMap: true` (the default). This is particularly visible when using Emotion with the Next.js Pages router where the `development` condition is used when bundling code but not when importing external code with Node.js.
8+
9+
- Updated dependencies [[`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa)]:
10+
- @emotion/serialize@1.3.3
11+
- @emotion/cache@11.13.5
12+
- @emotion/utils@1.4.2
13+
- @emotion/babel-plugin@11.13.5
14+
315
## 11.13.4
416

517
### Patch Changes

packages/css/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/css",
3-
"version": "11.13.4",
3+
"version": "11.13.5",
44
"description": "The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-css.cjs.js",
66
"module": "dist/emotion-css.esm.js",
@@ -16,11 +16,11 @@
1616
"test:typescript": "dtslint types"
1717
},
1818
"dependencies": {
19-
"@emotion/babel-plugin": "^11.12.0",
20-
"@emotion/cache": "^11.13.0",
21-
"@emotion/serialize": "^1.3.0",
19+
"@emotion/babel-plugin": "^11.13.5",
20+
"@emotion/cache": "^11.13.5",
21+
"@emotion/serialize": "^1.3.3",
2222
"@emotion/sheet": "^1.4.0",
23-
"@emotion/utils": "^1.4.0"
23+
"@emotion/utils": "^1.4.2"
2424
},
2525
"devDependencies": {
2626
"@definitelytyped/dtslint": "0.0.112",

packages/jest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
},
7777
"devDependencies": {
7878
"@definitelytyped/dtslint": "0.0.112",
79-
"@emotion/css": "11.13.4",
80-
"@emotion/react": "11.13.3",
79+
"@emotion/css": "11.13.5",
80+
"@emotion/react": "11.13.5",
8181
"@types/jest": "^29.5.12",
8282
"enzyme-to-json": "^3.6.1",
8383
"pretty-format": "^22.4.3",

packages/primitives-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"react": ">=16.8.0"
1919
},
2020
"devDependencies": {
21-
"@emotion/react": "11.13.3",
21+
"@emotion/react": "11.13.5",
2222
"@types/css-to-react-native": "^3.0.0",
2323
"react": "16.14.0"
2424
},

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.13.5
4+
5+
### Patch Changes
6+
7+
- [#3270](https://github.com/emotion-js/emotion/pull/3270) [`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa) Thanks [@emmatown](https://github.com/emmatown)! - Fix inconsistent hashes using development vs production bundles/`exports` conditions when using `@emotion/babel-plugin` with `sourceMap: true` (the default). This is particularly visible when using Emotion with the Next.js Pages router where the `development` condition is used when bundling code but not when importing external code with Node.js.
8+
9+
- Updated dependencies [[`77d930d`](https://github.com/emotion-js/emotion/commit/77d930dc708015ff6fd34a1084bb343b02d732fa)]:
10+
- @emotion/serialize@1.3.3
11+
- @emotion/cache@11.13.5
12+
- @emotion/utils@1.4.2
13+
- @emotion/babel-plugin@11.13.5
14+
315
## 11.13.3
416

517
### Patch Changes

0 commit comments

Comments
 (0)