Skip to content

Commit

Permalink
Version Packages (#3030)
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] committed May 6, 2023
1 parent 336f3d5 commit 1135f8e
Show file tree
Hide file tree
Showing 51 changed files with 363 additions and 186 deletions.
7 changes: 0 additions & 7 deletions .changeset/early-mice-morph.md

This file was deleted.

27 changes: 0 additions & 27 deletions .changeset/perfect-otters-compete.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/seven-bags-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-pants-raise.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/babel-plugin-jsx-pragmatic/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/babel-plugin-jsx-pragmatic

## 0.2.1

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-jsx-pragmatic/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/babel-plugin-jsx-pragmatic",
"version": "0.2.0",
"version": "0.2.1",
"description": "Insert code to load a module corresponding to JSX pragma.",
"main": "dist/emotion-babel-plugin-jsx-pragmatic.cjs.js",
"module": "dist/emotion-babel-plugin-jsx-pragmatic.esm.js",
Expand Down
13 changes: 13 additions & 0 deletions packages/babel-plugin/CHANGELOG.md
@@ -1,5 +1,18 @@
# @emotion/babel-plugin

## 11.11.0

### Patch Changes

- [#3031](https://github.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://github.com/Andarist)! - Updated the underlying parser ([stylis](https://github.com/thysultan/stylis)) to 4.2.0

* [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

* Updated dependencies [[`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/hash@0.9.1
- @emotion/memoize@0.8.1
- @emotion/serialize@1.1.2

## 11.10.8

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/babel-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/babel-plugin",
"version": "11.10.8",
"version": "11.11.0",
"description": "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.",
"main": "dist/emotion-babel-plugin.cjs.js",
"module": "dist/emotion-babel-plugin.esm.js",
Expand All @@ -20,9 +20,9 @@
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/serialize": "^1.1.1",
"@emotion/hash": "^0.9.1",
"@emotion/memoize": "^0.8.1",
"@emotion/serialize": "^1.1.2",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/babel-preset-css-prop/CHANGELOG.md
@@ -1,5 +1,15 @@
# @emotion/babel-preset-css-prop

## 11.11.0

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

- Updated dependencies [[`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5), [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/babel-plugin@11.11.0
- @emotion/babel-plugin-jsx-pragmatic@0.2.1

## 11.10.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-preset-css-prop/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/babel-preset-css-prop",
"version": "11.10.0",
"version": "11.11.0",
"description": "A babel preset to automatically enable emotion's css prop",
"main": "dist/emotion-babel-preset-css-prop.cjs.js",
"module": "dist/emotion-babel-preset-css-prop.esm.js",
Expand All @@ -17,8 +17,8 @@
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/babel-plugin-jsx-pragmatic": "^0.2.0"
"@emotion/babel-plugin": "^11.11.0",
"@emotion/babel-plugin-jsx-pragmatic": "^0.2.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
Expand Down
16 changes: 16 additions & 0 deletions packages/cache/CHANGELOG.md
@@ -1,5 +1,21 @@
# @emotion/cache

## 11.11.0

### Minor Changes

- [#3031](https://github.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://github.com/Andarist)! - Added support for cascade `@layer`s by updating the underlying parser ([stylis](https://github.com/thysultan/stylis)).

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

- Updated dependencies [[`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/memoize@0.8.1
- @emotion/sheet@1.2.2
- @emotion/utils@1.2.1
- @emotion/weak-memoize@0.3.1

## 11.10.8

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.10.8",
"version": "11.11.0",
"description": "emotion's cache",
"main": "dist/emotion-cache.cjs.js",
"module": "dist/emotion-cache.esm.js",
Expand All @@ -26,10 +26,10 @@
"test:typescript": "dtslint types"
},
"dependencies": {
"@emotion/memoize": "^0.8.0",
"@emotion/sheet": "^1.2.1",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"@emotion/memoize": "^0.8.1",
"@emotion/sheet": "^1.2.2",
"@emotion/utils": "^1.2.1",
"@emotion/weak-memoize": "^0.3.1",
"stylis": "4.2.0"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/css-prettifier/CHANGELOG.md
@@ -1,5 +1,16 @@
# @emotion/css-prettifier

## 1.1.3

### Patch Changes

- [#3031](https://github.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://github.com/Andarist)! - Updated the underlying parser ([stylis](https://github.com/thysultan/stylis)) to 4.2.0

* [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

* Updated dependencies [[`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/memoize@0.8.1

## 1.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/css-prettifier/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/css-prettifier",
"version": "1.1.2",
"version": "1.1.3",
"description": "Simple Stylis-based CSS prettifier",
"keywords": [
"emotion"
Expand All @@ -20,7 +20,7 @@
"license": "MIT",
"repository": "https://github.com/emotion-js/emotion/tree/main/packages/css-prettifier",
"dependencies": {
"@emotion/memoize": "^0.8.0",
"@emotion/memoize": "^0.8.1",
"stylis": "4.2.0"
},
"publishConfig": {
Expand Down
17 changes: 17 additions & 0 deletions packages/css/CHANGELOG.md
@@ -1,5 +1,22 @@
# emotion

## 11.11.0

### Minor Changes

- [#3031](https://github.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://github.com/Andarist)! - Added support for cascade `@layer`s by updating the underlying parser ([stylis](https://github.com/thysultan/stylis)).

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

- Updated dependencies [[`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5), [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247), [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5)]:
- @emotion/babel-plugin@11.11.0
- @emotion/cache@11.11.0
- @emotion/serialize@1.1.2
- @emotion/sheet@1.2.2
- @emotion/utils@1.2.1

## 11.10.8

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/css",
"version": "11.10.8",
"version": "11.11.0",
"description": "The Next Generation of CSS-in-JS.",
"main": "dist/emotion-css.cjs.js",
"module": "dist/emotion-css.esm.js",
Expand All @@ -16,11 +16,11 @@
"test:typescript": "dtslint types"
},
"dependencies": {
"@emotion/babel-plugin": "^11.10.8",
"@emotion/cache": "^11.10.8",
"@emotion/serialize": "^1.1.1",
"@emotion/sheet": "^1.2.1",
"@emotion/utils": "^1.2.0"
"@emotion/babel-plugin": "^11.11.0",
"@emotion/cache": "^11.11.0",
"@emotion/serialize": "^1.1.2",
"@emotion/sheet": "^1.2.2",
"@emotion/utils": "^1.2.1"
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
Expand Down
6 changes: 6 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/eslint-plugin

## 11.11.0

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

## 11.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/eslint-plugin",
"version": "11.10.0",
"version": "11.11.0",
"description": "ESLint rules for emotion",
"keywords": [
"eslint",
Expand Down
6 changes: 6 additions & 0 deletions packages/hash/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/hash

## 0.9.1

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

## 0.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hash/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/hash",
"version": "0.9.0",
"version": "0.9.1",
"description": "A MurmurHash2 implementation",
"main": "dist/emotion-hash.cjs.js",
"module": "dist/emotion-hash.esm.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/is-prop-valid/CHANGELOG.md
@@ -1,5 +1,14 @@
# @emotion/is-prop-valid

## 1.2.1

### Patch Changes

- [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

- Updated dependencies [[`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/memoize@0.8.1

## 1.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/is-prop-valid/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/is-prop-valid",
"version": "1.2.0",
"version": "1.2.1",
"description": "A function to check whether a prop is valid for HTML and SVG elements",
"main": "dist/emotion-is-prop-valid.cjs.js",
"module": "dist/emotion-is-prop-valid.esm.js",
Expand All @@ -14,7 +14,7 @@
"access": "public"
},
"dependencies": {
"@emotion/memoize": "^0.8.0"
"@emotion/memoize": "^0.8.1"
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
Expand Down
11 changes: 11 additions & 0 deletions packages/jest/CHANGELOG.md
@@ -1,5 +1,16 @@
# @emotion/jest

## 11.11.0

### Patch Changes

- [#3031](https://github.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@Andarist](https://github.com/Andarist)! - Updated the underlying parser ([stylis](https://github.com/thysultan/stylis)) to 4.2.0

* [#3029](https://github.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@Andarist](https://github.com/Andarist)! - Fixed importing in Node ESM

* Updated dependencies [[`336f3d50`](https://github.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5), [`eed5e6cf`](https://github.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]:
- @emotion/css-prettifier@1.1.3

## 11.10.8

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/jest/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/jest",
"version": "11.10.8",
"version": "11.11.0",
"description": "Jest utilities for emotion",
"main": "dist/emotion-jest.cjs.js",
"module": "dist/emotion-jest.esm.js",
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/css-prettifier": "^1.1.2",
"@emotion/css-prettifier": "^1.1.3",
"chalk": "^4.1.0",
"specificity": "^0.4.1",
"stylis": "4.2.0"
Expand All @@ -60,8 +60,8 @@
},
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/css": "11.10.8",
"@emotion/react": "11.10.8",
"@emotion/css": "11.11.0",
"@emotion/react": "11.11.0",
"@types/jest": "^27.0.3",
"enzyme-to-json": "^3.6.1",
"pretty-format": "^22.4.3",
Expand Down

0 comments on commit 1135f8e

Please sign in to comment.