Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 27, 2022
1 parent d8a13bc commit 9b8f54e
Show file tree
Hide file tree
Showing 19 changed files with 60 additions and 50 deletions.
5 changes: 0 additions & 5 deletions .changeset/brave-scissors-smile.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/long-pianos-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-dancers-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-ladybugs-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-bats-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-pianos-swim.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/cache/CHANGELOG.md
@@ -1,5 +1,14 @@
# @emotion/cache

## 11.10.5

### Patch Changes

- [#2890](https://github.com/emotion-js/emotion/pull/2890) [`d8a13bca`](https://github.com/emotion-js/emotion/commit/d8a13bcae81812d3dff643bcf446709f965f0909) Thanks [@Andarist](https://github.com/Andarist)! - An edge case issue with some specific CSS variables being treated as prefixable declarations got fixed by updating the underlying parser ([stylis](https://github.com/thysultan/stylis)).

- Updated dependencies [[`61c66963`](https://github.com/emotion-js/emotion/commit/61c66963dd8426b59d1ec424b5d1b41a371f9d49)]:
- @emotion/sheet@1.2.1

## 11.10.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.10.3",
"version": "11.10.5",
"description": "emotion's cache",
"main": "dist/emotion-cache.cjs.js",
"module": "dist/emotion-cache.esm.js",
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@emotion/memoize": "^0.8.0",
"@emotion/sheet": "^1.2.0",
"@emotion/sheet": "^1.2.1",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"stylis": "4.1.2"
Expand Down
6 changes: 6 additions & 0 deletions packages/jest/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/jest

## 11.10.5

### Patch Changes

- [#2884](https://github.com/emotion-js/emotion/pull/2884) [`da1e68e8`](https://github.com/emotion-js/emotion/commit/da1e68e829c53114dc1aab79b09e32a37d731fcf) Thanks [@billyjanitsch](https://github.com/billyjanitsch)! - Fix a dependency conflict when `@emotion/jest` was installed alongside `@types/jest@^29`.

## 11.10.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/jest",
"version": "11.10.0",
"version": "11.10.5",
"description": "Jest utilities for emotion",
"main": "dist/emotion-jest.cjs.js",
"module": "dist/emotion-jest.esm.js",
Expand Down Expand Up @@ -57,7 +57,7 @@
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/css": "11.10.0",
"@emotion/react": "11.10.4",
"@emotion/react": "11.10.5",
"@types/jest": "^27.0.3",
"enzyme-to-json": "^3.6.1",
"pretty-format": "^22.4.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives-core/package.json
Expand Up @@ -17,7 +17,7 @@
"react": ">=16.8.0"
},
"devDependencies": {
"@emotion/react": "11.10.4",
"@emotion/react": "11.10.5",
"react": "16.14.0"
},
"homepage": "https://emotion.sh",
Expand Down
10 changes: 10 additions & 0 deletions packages/react/CHANGELOG.md
@@ -1,5 +1,15 @@
# @emotion/react

## 11.10.5

### Patch Changes

- [#2905](https://github.com/emotion-js/emotion/pull/2905) [`4c0005f6`](https://github.com/emotion-js/emotion/commit/4c0005f677d5847e7f931a1473ac58b834606c57) Thanks [@p-m-p](https://github.com/p-m-p)! - Do not warn about `@emotion/react` being loaded twice in Vitest as that might easily happen with mocked modules.

- Updated dependencies [[`c02b1214`](https://github.com/emotion-js/emotion/commit/c02b12145a94df011e0fd6ffd54197a4d9369783), [`d8a13bca`](https://github.com/emotion-js/emotion/commit/d8a13bcae81812d3dff643bcf446709f965f0909)]:
- @emotion/serialize@1.1.1
- @emotion/cache@11.10.5

## 11.10.4

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/react",
"version": "11.10.4",
"version": "11.10.5",
"main": "dist/emotion-react.cjs.js",
"module": "dist/emotion-react.esm.js",
"browser": {
Expand Down Expand Up @@ -64,8 +64,8 @@
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/cache": "^11.10.0",
"@emotion/serialize": "^1.1.0",
"@emotion/cache": "^11.10.5",
"@emotion/serialize": "^1.1.1",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/serialize/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/serialize

## 1.1.1

### Patch Changes

- [#2896](https://github.com/emotion-js/emotion/pull/2896) [`c02b1214`](https://github.com/emotion-js/emotion/commit/c02b12145a94df011e0fd6ffd54197a4d9369783) Thanks [@Andarist](https://github.com/Andarist)! - Fixed an issue that prevented using `content: "element(name)"`. This is a valid special value and doesn't need to be quoted.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/serialize/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/serialize",
"version": "1.1.0",
"version": "1.1.1",
"description": "serialization utils for emotion",
"main": "dist/emotion-serialize.cjs.js",
"module": "dist/emotion-serialize.esm.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/sheet/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/sheet

## 1.2.1

### Patch Changes

- [#2920](https://github.com/emotion-js/emotion/pull/2920) [`61c66963`](https://github.com/emotion-js/emotion/commit/61c66963dd8426b59d1ec424b5d1b41a371f9d49) Thanks [@pvdstel](https://github.com/pvdstel)! - Do not log failed rule insertions in the speedy mode for even more vendor-prefixed pseudo-elements/classes like `:-ms-expand` and `:-ms-reveal`.

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sheet/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/sheet",
"version": "1.2.0",
"version": "1.2.1",
"description": "emotion's stylesheet",
"main": "dist/emotion-sheet.cjs.js",
"module": "dist/emotion-sheet.esm.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/styled/package.json
Expand Up @@ -14,7 +14,7 @@
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/is-prop-valid": "^1.2.0",
"@emotion/serialize": "^1.1.0",
"@emotion/serialize": "^1.1.1",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
"@emotion/utils": "^1.2.0"
},
Expand All @@ -34,7 +34,7 @@
"devDependencies": {
"@babel/core": "^7.18.5",
"@definitelytyped/dtslint": "0.0.112",
"@emotion/react": "11.10.4",
"@emotion/react": "11.10.5",
"react": "16.14.0",
"typescript": "^4.5.5"
},
Expand Down
22 changes: 11 additions & 11 deletions yarn.lock
Expand Up @@ -2381,14 +2381,14 @@ __metadata:
languageName: unknown
linkType: soft

"@emotion/cache@^11.10.0, @emotion/cache@workspace:packages/cache":
"@emotion/cache@^11.10.0, @emotion/cache@^11.10.5, @emotion/cache@workspace:packages/cache":
version: 0.0.0-use.local
resolution: "@emotion/cache@workspace:packages/cache"
dependencies:
"@definitelytyped/dtslint": 0.0.112
"@emotion/hash": "*"
"@emotion/memoize": ^0.8.0
"@emotion/sheet": ^1.2.0
"@emotion/sheet": ^1.2.1
"@emotion/utils": ^1.2.0
"@emotion/weak-memoize": ^0.3.0
stylis: 4.1.2
Expand Down Expand Up @@ -2471,7 +2471,7 @@ __metadata:
"@definitelytyped/dtslint": 0.0.112
"@emotion/css": 11.10.0
"@emotion/css-prettifier": ^1.1.0
"@emotion/react": 11.10.4
"@emotion/react": 11.10.5
"@types/jest": ^27.0.3
chalk: ^4.1.0
enzyme-to-json: ^3.6.1
Expand Down Expand Up @@ -2539,7 +2539,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@emotion/primitives-core@workspace:packages/primitives-core"
dependencies:
"@emotion/react": 11.10.4
"@emotion/react": 11.10.5
css-to-react-native: ^3.0.0
react: 16.14.0
peerDependencies:
Expand Down Expand Up @@ -2570,18 +2570,18 @@ __metadata:
languageName: unknown
linkType: soft

"@emotion/react@11.10.4, @emotion/react@^11.4.1, @emotion/react@workspace:packages/react":
"@emotion/react@11.10.5, @emotion/react@^11.4.1, @emotion/react@workspace:packages/react":
version: 0.0.0-use.local
resolution: "@emotion/react@workspace:packages/react"
dependencies:
"@babel/core": ^7.18.5
"@babel/runtime": ^7.18.3
"@definitelytyped/dtslint": 0.0.112
"@emotion/babel-plugin": ^11.10.0
"@emotion/cache": ^11.10.0
"@emotion/cache": ^11.10.5
"@emotion/css": 11.10.0
"@emotion/css-prettifier": 1.1.0
"@emotion/serialize": ^1.1.0
"@emotion/serialize": ^1.1.1
"@emotion/server": 11.10.0
"@emotion/styled": 11.10.4
"@emotion/use-insertion-effect-with-fallbacks": ^1.0.0
Expand All @@ -2603,7 +2603,7 @@ __metadata:
languageName: unknown
linkType: soft

"@emotion/serialize@^1.1.0, @emotion/serialize@workspace:packages/serialize":
"@emotion/serialize@^1.1.0, @emotion/serialize@^1.1.1, @emotion/serialize@workspace:packages/serialize":
version: 0.0.0-use.local
resolution: "@emotion/serialize@workspace:packages/serialize"
dependencies:
Expand Down Expand Up @@ -2639,7 +2639,7 @@ __metadata:
languageName: unknown
linkType: soft

"@emotion/sheet@^1.2.0, @emotion/sheet@workspace:packages/sheet":
"@emotion/sheet@^1.2.0, @emotion/sheet@^1.2.1, @emotion/sheet@workspace:packages/sheet":
version: 0.0.0-use.local
resolution: "@emotion/sheet@workspace:packages/sheet"
dependencies:
Expand All @@ -2657,8 +2657,8 @@ __metadata:
"@definitelytyped/dtslint": 0.0.112
"@emotion/babel-plugin": ^11.10.0
"@emotion/is-prop-valid": ^1.2.0
"@emotion/react": 11.10.4
"@emotion/serialize": ^1.1.0
"@emotion/react": 11.10.5
"@emotion/serialize": ^1.1.1
"@emotion/use-insertion-effect-with-fallbacks": ^1.0.0
"@emotion/utils": ^1.2.0
react: 16.14.0
Expand Down

0 comments on commit 9b8f54e

Please sign in to comment.