Skip to content

Commit 70ad1d3

Browse files
Version Packages (#3214)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a9f6912 commit 70ad1d3

27 files changed

+217
-98
lines changed

.changeset/tiny-jeans-check.md

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

.changeset/whiny-lemons-lay.md

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

.changeset/witty-guests-care.md

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

packages/cache/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
- [#3215](https://github.com/emotion-js/emotion/pull/3215) [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5) Thanks [@Andarist](https://github.com/Andarist)! - Added `edge-light` and `workerd` conditions to `package.json` manifest to better serve users using Vercel Edge and Cloudflare Workers.
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
18+
- @emotion/sheet@1.4.0
19+
- @emotion/utils@1.4.0
20+
321
## 11.12.0
422

523
### Patch Changes

packages/cache/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/cache",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"description": "emotion's cache",
55
"main": "dist/emotion-cache.cjs.js",
66
"module": "dist/emotion-cache.esm.js",
@@ -82,8 +82,8 @@
8282
},
8383
"dependencies": {
8484
"@emotion/memoize": "^0.9.0",
85-
"@emotion/sheet": "^1.3.0",
86-
"@emotion/utils": "^1.3.0",
85+
"@emotion/sheet": "^1.4.0",
86+
"@emotion/utils": "^1.4.0",
8787
"@emotion/weak-memoize": "^0.4.0",
8888
"stylis": "4.2.0"
8989
},

packages/css/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
16+
- @emotion/cache@11.13.0
17+
- @emotion/serialize@1.3.0
18+
- @emotion/sheet@1.4.0
19+
- @emotion/utils@1.4.0
20+
321
## 11.12.0
422

523
### Minor 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.12.0",
3+
"version": "11.13.0",
44
"description": "The Next Generation of CSS-in-JS.",
55
"main": "dist/emotion-css.cjs.js",
66
"module": "dist/emotion-css.esm.js",
@@ -17,10 +17,10 @@
1717
},
1818
"dependencies": {
1919
"@emotion/babel-plugin": "^11.12.0",
20-
"@emotion/cache": "^11.12.0",
21-
"@emotion/serialize": "^1.2.0",
22-
"@emotion/sheet": "^1.3.0",
23-
"@emotion/utils": "^1.3.0"
20+
"@emotion/cache": "^11.13.0",
21+
"@emotion/serialize": "^1.3.0",
22+
"@emotion/sheet": "^1.4.0",
23+
"@emotion/utils": "^1.4.0"
2424
},
2525
"devDependencies": {
2626
"@definitelytyped/dtslint": "0.0.112",

packages/jest/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Adjustments to how speedy rules are obtained by the plugin.
8+
39
## 11.11.0
410

511
### 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.11.0",
3+
"version": "11.13.0",
44
"description": "Jest utilities for emotion",
55
"main": "dist/emotion-jest.cjs.js",
66
"module": "dist/emotion-jest.esm.js",
@@ -76,8 +76,8 @@
7676
},
7777
"devDependencies": {
7878
"@definitelytyped/dtslint": "0.0.112",
79-
"@emotion/css": "11.12.0",
80-
"@emotion/react": "11.12.0",
79+
"@emotion/css": "11.13.0",
80+
"@emotion/react": "11.13.0",
8181
"@types/jest": "^29.5.12",
8282
"enzyme-to-json": "^3.6.1",
8383
"pretty-format": "^22.4.3",

packages/primitives-core/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
313
## 11.12.0
414

515
### Minor Changes

packages/primitives-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/primitives-core",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"description": "Shared utilities for emotion primitives and native",
55
"main": "dist/emotion-primitives-core.cjs.js",
66
"module": "dist/emotion-primitives-core.esm.js",
@@ -18,7 +18,7 @@
1818
"react": ">=16.8.0"
1919
},
2020
"devDependencies": {
21-
"@emotion/react": "11.12.0",
21+
"@emotion/react": "11.13.0",
2222
"@types/css-to-react-native": "^3.0.0",
2323
"react": "16.14.0"
2424
},

packages/primitives/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3215](https://github.com/emotion-js/emotion/pull/3215) [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5) Thanks [@Andarist](https://github.com/Andarist)! - Added `edge-light` and `workerd` conditions to `package.json` manifest to better serve users using Vercel Edge and Cloudflare Workers.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b)]:
12+
- @emotion/primitives-core@11.13.0
13+
314
## 11.11.0
415

516
### Patch Changes

packages/primitives/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/primitives",
3-
"version": "11.11.0",
3+
"version": "11.13.0",
44
"main": "dist/emotion-primitives.cjs.js",
55
"module": "dist/emotion-primitives.esm.js",
66
"files": [
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@emotion/babel-plugin": "^11.11.0",
1313
"@emotion/is-prop-valid": "^1.2.1",
14-
"@emotion/primitives-core": "^11.11.0"
14+
"@emotion/primitives-core": "^11.13.0"
1515
},
1616
"peerDependencies": {
1717
"react": ">=16.8.0",

packages/react/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
- [#3215](https://github.com/emotion-js/emotion/pull/3215) [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5) Thanks [@Andarist](https://github.com/Andarist)! - Added `edge-light` and `workerd` conditions to `package.json` manifest to better serve users using Vercel Edge and Cloudflare Workers.
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
18+
- @emotion/cache@11.13.0
19+
- @emotion/serialize@1.3.0
20+
- @emotion/use-insertion-effect-with-fallbacks@1.1.0
21+
- @emotion/utils@1.4.0
22+
323
## 11.12.0
424

525
### Minor Changes

packages/react/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/react",
3-
"version": "11.12.0",
3+
"version": "11.13.0",
44
"main": "dist/emotion-react.cjs.js",
55
"module": "dist/emotion-react.esm.js",
66
"exports": {
@@ -262,10 +262,10 @@
262262
"dependencies": {
263263
"@babel/runtime": "^7.18.3",
264264
"@emotion/babel-plugin": "^11.12.0",
265-
"@emotion/cache": "^11.12.0",
266-
"@emotion/serialize": "^1.2.0",
267-
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
268-
"@emotion/utils": "^1.3.0",
265+
"@emotion/cache": "^11.13.0",
266+
"@emotion/serialize": "^1.3.0",
267+
"@emotion/use-insertion-effect-with-fallbacks": "^1.1.0",
268+
"@emotion/utils": "^1.4.0",
269269
"@emotion/weak-memoize": "^0.4.0",
270270
"hoist-non-react-statics": "^3.3.1"
271271
},
@@ -279,10 +279,10 @@
279279
},
280280
"devDependencies": {
281281
"@definitelytyped/dtslint": "0.0.112",
282-
"@emotion/css": "11.12.0",
282+
"@emotion/css": "11.13.0",
283283
"@emotion/css-prettifier": "1.1.4",
284284
"@emotion/server": "11.11.0",
285-
"@emotion/styled": "11.12.0",
285+
"@emotion/styled": "11.13.0",
286286
"html-tag-names": "^1.1.2",
287287
"react": "16.14.0",
288288
"svg-tag-names": "^1.1.1",

packages/serialize/CHANGELOG.md

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

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
16+
- @emotion/utils@1.4.0
17+
318
## 1.2.0
419

520
### Minor Changes

packages/serialize/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emotion/serialize",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "serialization utils for emotion",
55
"main": "dist/emotion-serialize.cjs.js",
66
"module": "dist/emotion-serialize.esm.js",
@@ -17,7 +17,7 @@
1717
"@emotion/hash": "^0.9.2",
1818
"@emotion/memoize": "^0.9.0",
1919
"@emotion/unitless": "^0.9.0",
20-
"@emotion/utils": "^1.3.0",
20+
"@emotion/utils": "^1.4.0",
2121
"csstype": "^3.0.2"
2222
},
2323
"devDependencies": {

packages/server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"test:typescript": "dtslint types"
1616
},
1717
"dependencies": {
18-
"@emotion/utils": "^1.3.0",
18+
"@emotion/utils": "^1.4.0",
1919
"html-tokenize": "^2.0.0",
2020
"multipipe": "^1.0.2",
2121
"through": "^2.3.8"
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"@definitelytyped/dtslint": "0.0.112",
3333
"@emotion/babel-plugin": "11.12.0",
34-
"@emotion/css": "11.12.0",
34+
"@emotion/css": "11.13.0",
3535
"@emotion/css-prettifier": "1.1.4",
3636
"@types/node": "^12.20.37",
3737
"typescript": "^5.4.5"

packages/sheet/CHANGELOG.md

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

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
313
## 1.3.0
414

515
### Minor 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.3.0",
3+
"version": "1.4.0",
44
"description": "emotion's stylesheet",
55
"main": "dist/emotion-sheet.cjs.js",
66
"module": "dist/emotion-sheet.esm.js",

packages/styled/CHANGELOG.md

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

3+
## 11.13.0
4+
5+
### Minor Changes
6+
7+
- [#3198](https://github.com/emotion-js/emotion/pull/3198) [`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b) Thanks [@Andarist](https://github.com/Andarist)! - Migrated away from relying on `process.env.NODE_ENV` checks to differentiate between production and development builds.
8+
9+
Development builds (and other environment-specific builds) can be used by using proper conditions (see [here](https://nodejs.org/docs/v20.15.1/api/packages.html#resolving-user-conditions)). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.
10+
11+
Default files should continue to work in all environments.
12+
13+
- [#3215](https://github.com/emotion-js/emotion/pull/3215) [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5) Thanks [@Andarist](https://github.com/Andarist)! - Added `edge-light` and `workerd` conditions to `package.json` manifest to better serve users using Vercel Edge and Cloudflare Workers.
14+
15+
### Patch Changes
16+
17+
- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
18+
- @emotion/serialize@1.3.0
19+
- @emotion/use-insertion-effect-with-fallbacks@1.1.0
20+
- @emotion/utils@1.4.0
21+
322
## 11.12.0
423

524
### Patch Changes

0 commit comments

Comments
 (0)