Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #2740

Merged
merged 1 commit into from Jun 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/big-years-relate.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/five-balloons-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-carrots-buy.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/good-cars-roll.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/purple-ladybugs-think.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-hornets-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-spoons-argue.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tall-flies-smoke.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/thirty-boats-hang.md

This file was deleted.

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

## 11.9.3

### Patch Changes

- [#2728](https://github.com/emotion-js/emotion/pull/2728) [`6c2d7a60`](https://github.com/emotion-js/emotion/commit/6c2d7a6010af85502ae33d14dcbd3bb62ed7612e) Thanks [@Peeja](https://github.com/Peeja)! - TypeScript type for the `container` option has been adjusted. It will now accept a `ShadowRoot`, or any other kind of `Node`.

- Updated dependencies [[`6c2d7a60`](https://github.com/emotion-js/emotion/commit/6c2d7a6010af85502ae33d14dcbd3bb62ed7612e)]:
- @emotion/sheet@1.1.1

## 11.7.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.7.1",
"version": "11.9.3",
"description": "emotion's cache",
"main": "dist/emotion-cache.cjs.js",
"module": "dist/emotion-cache.esm.js",
Expand All @@ -16,7 +16,7 @@
},
"dependencies": {
"@emotion/memoize": "^0.7.4",
"@emotion/sheet": "^1.1.0",
"@emotion/sheet": "^1.1.1",
"@emotion/utils": "^1.0.0",
"@emotion/weak-memoize": "^0.2.5",
"stylis": "4.0.13"
Expand Down
6 changes: 6 additions & 0 deletions packages/is-prop-valid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/is-prop-valid

## 1.1.3

### Patch Changes

- [#2759](https://github.com/emotion-js/emotion/pull/2759) Thanks [@srmagura](https://github.com/srmagura)! - Change the type of the argument to `isPropValid` from `PropertyKey` to `string` in the TypeScript definitions.

## 1.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/is-prop-valid/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/is-prop-valid",
"version": "1.1.2",
"version": "1.1.3",
"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 Down
6 changes: 6 additions & 0 deletions packages/jest/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/jest

## 11.9.3

### Patch Changes

- [#2749](https://github.com/emotion-js/emotion/pull/2749) [`fd22cace`](https://github.com/emotion-js/emotion/commit/fd22cacee60e7e7c2b512af47a9ce374f7896362) Thanks [@Andarist](https://github.com/Andarist)! - Added a dedicated error for a situation when `toHaveStyleRule` receives an array.

## 11.9.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/jest",
"version": "11.9.1",
"version": "11.9.3",
"description": "Jest utilities for emotion",
"main": "dist/emotion-jest.cjs.js",
"module": "dist/emotion-jest.esm.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"@definitelytyped/dtslint": "0.0.112",
"@emotion/css": "11.9.0",
"@emotion/react": "11.9.0",
"@emotion/react": "11.9.3",
"@types/jest": "^27.0.3",
"enzyme-to-json": "^3.6.1",
"pretty-format": "^22.4.3",
Expand Down
10 changes: 10 additions & 0 deletions packages/native/CHANGELOG.md
@@ -1,5 +1,15 @@
# @emotion/native

## 11.9.3

### Patch Changes

- [#2759](https://github.com/emotion-js/emotion/pull/2759) Thanks [@srmagura](https://github.com/srmagura), [@Andarist](https://github.com/Andarist)! - Change the argument of the `shouldForwardProp` option of `styled` from `PropertyKey` to `string` in the TypeScript definitions.

* [#2333](https://github.com/emotion-js/emotion/pull/2333) [`3055efdd`](https://github.com/emotion-js/emotion/commit/3055efddf8f9fb14b148fda466dcb4eb9affc525) Thanks [@Andarist](https://github.com/Andarist)! - `shouldForwardProp` has been changed from being a bivariant method to a contravariant function - it improves the type-safety for those that type this option.

- [#2333](https://github.com/emotion-js/emotion/pull/2333) [`3055efdd`](https://github.com/emotion-js/emotion/commit/3055efddf8f9fb14b148fda466dcb4eb9affc525) Thanks [@antongolub](https://github.com/antongolub)! - `FilteringStyledOptions` and `StyledOptions` types no longer require a type argument for the `Props` generic.

## 11.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/native/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/native",
"version": "11.0.0",
"version": "11.9.3",
"description": "Style and render React Native components using emotion",
"main": "dist/emotion-native.cjs.js",
"module": "dist/emotion-native.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives-core/package.json
Expand Up @@ -20,7 +20,7 @@
"react": ">=16.8.0"
},
"devDependencies": {
"@emotion/react": "11.9.0",
"@emotion/react": "11.9.3",
"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.9.3

### Patch Changes

- [#2766](https://github.com/emotion-js/emotion/pull/2766) [`5b3f4d78`](https://github.com/emotion-js/emotion/commit/5b3f4d78d54552f9785836bc2cc56d3f789afc47) Thanks [@Andarist](https://github.com/Andarist)! - `ThemeProviderProps["children"]` was marked as a required prop as `ThemeProvider` should always wrap some subtree.

- Updated dependencies [[`26e4e3e8`](https://github.com/emotion-js/emotion/commit/26e4e3e8b68479f0e3cb8fbec723da47afd6ac98), [`6c2d7a60`](https://github.com/emotion-js/emotion/commit/6c2d7a6010af85502ae33d14dcbd3bb62ed7612e), [`5e81f213`](https://github.com/emotion-js/emotion/commit/5e81f213980e9ba2cfa35256476673b68d47fc33)]:
- @emotion/serialize@1.0.4
- @emotion/cache@11.9.3

## 11.9.0

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/react",
"version": "11.9.0",
"version": "11.9.3",
"main": "dist/emotion-react.cjs.js",
"module": "dist/emotion-react.esm.js",
"browser": {
Expand Down Expand Up @@ -28,8 +28,8 @@
"dependencies": {
"@babel/runtime": "^7.13.10",
"@emotion/babel-plugin": "^11.7.1",
"@emotion/cache": "^11.7.1",
"@emotion/serialize": "^1.0.3",
"@emotion/cache": "^11.9.3",
"@emotion/serialize": "^1.0.4",
"@emotion/utils": "^1.1.0",
"@emotion/weak-memoize": "^0.2.5",
"hoist-non-react-statics": "^3.3.1"
Expand All @@ -52,7 +52,7 @@
"@emotion/css": "11.9.0",
"@emotion/css-prettifier": "1.0.1",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.8.1",
"@emotion/styled": "11.9.3",
"html-tag-names": "^1.1.2",
"react": "16.14.0",
"svg-tag-names": "^1.1.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/serialize/CHANGELOG.md
@@ -1,5 +1,13 @@
# @emotion/serialize

## 1.0.4

### Patch Changes

- [#2727](https://github.com/emotion-js/emotion/pull/2727) [`26e4e3e8`](https://github.com/emotion-js/emotion/commit/26e4e3e8b68479f0e3cb8fbec723da47afd6ac98) Thanks [@srmagura](https://github.com/srmagura)! - Changed the error message "Component selectors can only be used in conjunction with @emotion/babel-plugin" to reference the new SWC Emotion plugin which will support component selectors soon.

* [#2572](https://github.com/emotion-js/emotion/pull/2572) [`5e81f213`](https://github.com/emotion-js/emotion/commit/5e81f213980e9ba2cfa35256476673b68d47fc33) Thanks [@otakustay](https://github.com/otakustay)! - Changed the `registered` parameter to be declared as optional in the TypeScript definition to match the runtime requirement.

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/serialize/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/serialize",
"version": "1.0.3",
"version": "1.0.4",
"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.1.1

### Patch Changes

- [#2728](https://github.com/emotion-js/emotion/pull/2728) [`6c2d7a60`](https://github.com/emotion-js/emotion/commit/6c2d7a6010af85502ae33d14dcbd3bb62ed7612e) Thanks [@Peeja](https://github.com/Peeja)! - TypeScript type for the `container` option has been adjusted. It will now accept a `ShadowRoot`, or any other kind of `Node`.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sheet/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/sheet",
"version": "1.1.0",
"version": "1.1.1",
"description": "emotion's stylesheet",
"main": "dist/emotion-sheet.cjs.js",
"module": "dist/emotion-sheet.esm.js",
Expand Down
14 changes: 14 additions & 0 deletions packages/styled/CHANGELOG.md
@@ -1,5 +1,19 @@
# @emotion/styled

## 11.9.3

### Patch Changes

- [#2759](https://github.com/emotion-js/emotion/pull/2759) Thanks [@srmagura](https://github.com/srmagura), [@Andarist](https://github.com/Andarist)! - Change the argument of the `shouldForwardProp` option of `styled` from `PropertyKey` to `string` in the TypeScript definitions.

* [#2333](https://github.com/emotion-js/emotion/pull/2333) [`3055efdd`](https://github.com/emotion-js/emotion/commit/3055efddf8f9fb14b148fda466dcb4eb9affc525) Thanks [@Andarist](https://github.com/Andarist)! - `shouldForwardProp` has been changed from being a bivariant method to a contravariant function - it improves the type-safety for those that type this option.

- [#2333](https://github.com/emotion-js/emotion/pull/2333) [`3055efdd`](https://github.com/emotion-js/emotion/commit/3055efddf8f9fb14b148fda466dcb4eb9affc525) Thanks [@antongolub](https://github.com/antongolub)! - `FilteringStyledOptions` and `StyledOptions` types no longer require a type argument for the `Props` generic.

- Updated dependencies [[`26e4e3e8`](https://github.com/emotion-js/emotion/commit/26e4e3e8b68479f0e3cb8fbec723da47afd6ac98), [`5e81f213`](https://github.com/emotion-js/emotion/commit/5e81f213980e9ba2cfa35256476673b68d47fc33), [`3055efdd`](https://github.com/emotion-js/emotion/commit/3055efddf8f9fb14b148fda466dcb4eb9affc525)]:
- @emotion/serialize@1.0.4
- @emotion/is-prop-valid@1.1.3

## 11.8.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/styled/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/styled",
"version": "11.8.1",
"version": "11.9.3",
"description": "styled API for emotion",
"main": "dist/emotion-styled.cjs.js",
"module": "dist/emotion-styled.esm.js",
Expand All @@ -13,8 +13,8 @@
"dependencies": {
"@babel/runtime": "^7.13.10",
"@emotion/babel-plugin": "^11.7.1",
"@emotion/is-prop-valid": "^1.1.2",
"@emotion/serialize": "^1.0.3",
"@emotion/is-prop-valid": "^1.1.3",
"@emotion/serialize": "^1.0.4",
"@emotion/utils": "^1.1.0"
},
"peerDependencies": {
Expand All @@ -33,7 +33,7 @@
"devDependencies": {
"@babel/core": "^7.13.10",
"@definitelytyped/dtslint": "0.0.112",
"@emotion/react": "11.9.0",
"@emotion/react": "11.9.3",
"react": "16.14.0",
"typescript": "^4.5.5"
},
Expand Down