Skip to content

Commit

Permalink
Version Packages (#3214)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jul 20, 2024
1 parent a9f6912 commit 70ad1d3
Show file tree
Hide file tree
Showing 27 changed files with 217 additions and 98 deletions.
17 changes: 0 additions & 17 deletions .changeset/tiny-jeans-check.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/whiny-lemons-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-guests-care.md

This file was deleted.

18 changes: 18 additions & 0 deletions packages/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @emotion/cache

## 11.13.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

- [#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.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
- @emotion/sheet@1.4.0
- @emotion/utils@1.4.0

## 11.12.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.12.0",
"version": "11.13.0",
"description": "emotion's cache",
"main": "dist/emotion-cache.cjs.js",
"module": "dist/emotion-cache.esm.js",
Expand Down Expand Up @@ -82,8 +82,8 @@
},
"dependencies": {
"@emotion/memoize": "^0.9.0",
"@emotion/sheet": "^1.3.0",
"@emotion/utils": "^1.3.0",
"@emotion/sheet": "^1.4.0",
"@emotion/utils": "^1.4.0",
"@emotion/weak-memoize": "^0.4.0",
"stylis": "4.2.0"
},
Expand Down
18 changes: 18 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# emotion

## 11.13.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
- @emotion/cache@11.13.0
- @emotion/serialize@1.3.0
- @emotion/sheet@1.4.0
- @emotion/utils@1.4.0

## 11.12.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/css",
"version": "11.12.0",
"version": "11.13.0",
"description": "The Next Generation of CSS-in-JS.",
"main": "dist/emotion-css.cjs.js",
"module": "dist/emotion-css.esm.js",
Expand All @@ -17,10 +17,10 @@
},
"dependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@emotion/cache": "^11.12.0",
"@emotion/serialize": "^1.2.0",
"@emotion/sheet": "^1.3.0",
"@emotion/utils": "^1.3.0"
"@emotion/cache": "^11.13.0",
"@emotion/serialize": "^1.3.0",
"@emotion/sheet": "^1.4.0",
"@emotion/utils": "^1.4.0"
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
Expand Down
6 changes: 6 additions & 0 deletions packages/jest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @emotion/jest

## 11.13.0

### Minor Changes

- [#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.

## 11.11.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/jest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/jest",
"version": "11.11.0",
"version": "11.13.0",
"description": "Jest utilities for emotion",
"main": "dist/emotion-jest.cjs.js",
"module": "dist/emotion-jest.esm.js",
Expand Down Expand Up @@ -76,8 +76,8 @@
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/css": "11.12.0",
"@emotion/react": "11.12.0",
"@emotion/css": "11.13.0",
"@emotion/react": "11.13.0",
"@types/jest": "^29.5.12",
"enzyme-to-json": "^3.6.1",
"pretty-format": "^22.4.3",
Expand Down
10 changes: 10 additions & 0 deletions packages/primitives-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @emotion/primitives-core

## 11.13.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

## 11.12.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/primitives-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/primitives-core",
"version": "11.12.0",
"version": "11.13.0",
"description": "Shared utilities for emotion primitives and native",
"main": "dist/emotion-primitives-core.cjs.js",
"module": "dist/emotion-primitives-core.esm.js",
Expand All @@ -18,7 +18,7 @@
"react": ">=16.8.0"
},
"devDependencies": {
"@emotion/react": "11.12.0",
"@emotion/react": "11.13.0",
"@types/css-to-react-native": "^3.0.0",
"react": "16.14.0"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @emotion/primitives

## 11.13.0

### Minor Changes

- [#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.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b)]:
- @emotion/primitives-core@11.13.0

## 11.11.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/primitives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/primitives",
"version": "11.11.0",
"version": "11.13.0",
"main": "dist/emotion-primitives.cjs.js",
"module": "dist/emotion-primitives.esm.js",
"files": [
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@emotion/is-prop-valid": "^1.2.1",
"@emotion/primitives-core": "^11.11.0"
"@emotion/primitives-core": "^11.13.0"
},
"peerDependencies": {
"react": ">=16.8.0",
Expand Down
20 changes: 20 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @emotion/react

## 11.13.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

- [#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.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
- @emotion/cache@11.13.0
- @emotion/serialize@1.3.0
- @emotion/use-insertion-effect-with-fallbacks@1.1.0
- @emotion/utils@1.4.0

## 11.12.0

### Minor Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/react",
"version": "11.12.0",
"version": "11.13.0",
"main": "dist/emotion-react.cjs.js",
"module": "dist/emotion-react.esm.js",
"exports": {
Expand Down Expand Up @@ -262,10 +262,10 @@
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.12.0",
"@emotion/cache": "^11.12.0",
"@emotion/serialize": "^1.2.0",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
"@emotion/utils": "^1.3.0",
"@emotion/cache": "^11.13.0",
"@emotion/serialize": "^1.3.0",
"@emotion/use-insertion-effect-with-fallbacks": "^1.1.0",
"@emotion/utils": "^1.4.0",
"@emotion/weak-memoize": "^0.4.0",
"hoist-non-react-statics": "^3.3.1"
},
Expand All @@ -279,10 +279,10 @@
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/css": "11.12.0",
"@emotion/css": "11.13.0",
"@emotion/css-prettifier": "1.1.4",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.12.0",
"@emotion/styled": "11.13.0",
"html-tag-names": "^1.1.2",
"react": "16.14.0",
"svg-tag-names": "^1.1.1",
Expand Down
15 changes: 15 additions & 0 deletions packages/serialize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @emotion/serialize

## 1.3.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
- @emotion/utils@1.4.0

## 1.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/serialize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/serialize",
"version": "1.2.0",
"version": "1.3.0",
"description": "serialization utils for emotion",
"main": "dist/emotion-serialize.cjs.js",
"module": "dist/emotion-serialize.esm.js",
Expand All @@ -17,7 +17,7 @@
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/unitless": "^0.9.0",
"@emotion/utils": "^1.3.0",
"@emotion/utils": "^1.4.0",
"csstype": "^3.0.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test:typescript": "dtslint types"
},
"dependencies": {
"@emotion/utils": "^1.3.0",
"@emotion/utils": "^1.4.0",
"html-tokenize": "^2.0.0",
"multipipe": "^1.0.2",
"through": "^2.3.8"
Expand All @@ -31,7 +31,7 @@
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/babel-plugin": "11.12.0",
"@emotion/css": "11.12.0",
"@emotion/css": "11.13.0",
"@emotion/css-prettifier": "1.1.4",
"@types/node": "^12.20.37",
"typescript": "^5.4.5"
Expand Down
10 changes: 10 additions & 0 deletions packages/sheet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @emotion/sheet

## 1.4.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sheet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emotion/sheet",
"version": "1.3.0",
"version": "1.4.0",
"description": "emotion's stylesheet",
"main": "dist/emotion-sheet.cjs.js",
"module": "dist/emotion-sheet.esm.js",
Expand Down
19 changes: 19 additions & 0 deletions packages/styled/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @emotion/styled

## 11.13.0

### Minor Changes

- [#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.

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.

Default files should continue to work in all environments.

- [#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.

### Patch Changes

- Updated dependencies [[`d8ff8a5`](https://github.com/emotion-js/emotion/commit/d8ff8a5990c691017b463b3fa23a9f46ab28147b), [`a9f6912`](https://github.com/emotion-js/emotion/commit/a9f691299844bf6837b7ad41ee17cd912496f3d5)]:
- @emotion/serialize@1.3.0
- @emotion/use-insertion-effect-with-fallbacks@1.1.0
- @emotion/utils@1.4.0

## 11.12.0

### Patch Changes
Expand Down
Loading

0 comments on commit 70ad1d3

Please sign in to comment.