diff --git a/.changeset/pre.json b/.changeset/pre.json index 710123ea7..e406033c0 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -42,11 +42,17 @@ "changesets": [ "long-apes-admire", "curvy-timers-decide", + "five-spoons-roll", "flat-adults-add", + "giant-oranges-impress", "light-mice-relate", + "neat-ligers-film", + "nine-mugs-care", "rare-books-own", "rare-toes-grow", + "spotty-llamas-mate", "strange-pumas-suffer", + "stupid-radios-draw", "two-baboons-mate" ] } diff --git a/packages/babel-plugin-emotion/CHANGELOG.md b/packages/babel-plugin-emotion/CHANGELOG.md index 048af9c68..42aaf0e83 100644 --- a/packages/babel-plugin-emotion/CHANGELOG.md +++ b/packages/babel-plugin-emotion/CHANGELOG.md @@ -1,5 +1,23 @@ # babel-plugin-emotion +## 11.0.0-next.3 + +### Major Changes + +- [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1) [#1220](https://github.com/emotion-js/emotion/pull/1220) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed support for the `instances` option, any usage of it should be replaced with the `importMap` option + +* [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8) [#1575](https://github.com/emotion-js/emotion/pull/1575) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed support for `@emotion/styled-base` package. It has been moved to `@emotion/styled` and is available as `@emotion/styled/base`. This simplifies how the regular and base versions relate to each other and eliminates problems with stricter package managers when `@emotion/styled-base` was not installed explicitly by a user. + +### Minor Changes + +- [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1) [#1220](https://github.com/emotion-js/emotion/pull/1220) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Added the `importMap` option which allows you to tell babel-plugin-emotion what imports it should look at to determine what it should transform so if you re-export Emotion's exports, you can still use the Babel transforms + +### Patch Changes + +- [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1) [#1220](https://github.com/emotion-js/emotion/pull/1220) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Fix issue with not updating referenced import when bailing out on already transpiled vanilla emotion nodes (a regression introduced in #1602) +- Updated dependencies [[`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85)]: + - @emotion/serialize@0.11.15-next.1 + ## 11.0.0-next.1 ### Patch Changes diff --git a/packages/babel-plugin-emotion/package.json b/packages/babel-plugin-emotion/package.json index 9db534998..c7a5b5e6f 100644 --- a/packages/babel-plugin-emotion/package.json +++ b/packages/babel-plugin-emotion/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-emotion", - "version": "11.0.0-next.1", + "version": "11.0.0-next.3", "description": "A recommended babel preprocessing plugin for emotion, The Next Generation of CSS-in-JS.", "main": "dist/babel-plugin-emotion.cjs.js", "module": "dist/babel-plugin-emotion.esm.js", @@ -17,7 +17,7 @@ "@babel/runtime": "^7.7.2", "@emotion/hash": "0.7.3", "@emotion/memoize": "0.7.3", - "@emotion/serialize": "^1.0.0-next.0", + "@emotion/serialize": "^0.11.15-next.1", "babel-plugin-macros": "^2.0.0", "babel-plugin-syntax-jsx": "^6.18.0", "convert-source-map": "^1.5.0", diff --git a/packages/babel-preset-css-prop/CHANGELOG.md b/packages/babel-preset-css-prop/CHANGELOG.md index baf050084..e78c7f49a 100644 --- a/packages/babel-preset-css-prop/CHANGELOG.md +++ b/packages/babel-preset-css-prop/CHANGELOG.md @@ -1,5 +1,20 @@ # @emotion/babel-preset-css-prop +## 11.0.0-next.3 + +### Major Changes + +- [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1) [#1220](https://github.com/emotion-js/emotion/pull/1220) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed support for the `instances` option, any usage of it should be replaced with the `importMap` option + +### Minor Changes + +- [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1) [#1220](https://github.com/emotion-js/emotion/pull/1220) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Added the `importMap` option which allows you to tell babel-plugin-emotion what imports it should look at to determine what it should transform so if you re-export Emotion's exports, you can still use the Babel transforms + +### Patch Changes + +- Updated dependencies [[`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1)]: + - babel-plugin-emotion@11.0.0-next.3 + ## 11.0.0-next.0 ### Patch Changes diff --git a/packages/babel-preset-css-prop/package.json b/packages/babel-preset-css-prop/package.json index 193f84132..3045635f4 100644 --- a/packages/babel-preset-css-prop/package.json +++ b/packages/babel-preset-css-prop/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/babel-preset-css-prop", - "version": "11.0.0-next.0", + "version": "11.0.0-next.3", "description": "A babel preset to automatically enable emotion's css prop", "main": "dist/babel-preset-css-prop.cjs.js", "module": "dist/babel-preset-css-prop.esm.js", @@ -13,7 +13,7 @@ "@babel/plugin-transform-react-jsx": "^7.7.0", "@babel/runtime": "^7.7.2", "@emotion/babel-plugin-jsx-pragmatic": "^0.1.4", - "babel-plugin-emotion": "^11.0.0-next.0" + "babel-plugin-emotion": "^11.0.0-next.3" }, "peerDependencies": { "@babel/core": "^7.0.0" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c905aa625..397c4368d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,16 @@ # @emotion/core +## 11.0.0-next.3 + +### Patch Changes + +- [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Add missing `#__PURE__` annotations +- Updated dependencies [[`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8)]: + - @emotion/serialize@0.11.15-next.1 + - @emotion/styled@11.0.0-next.3 + - @emotion/css@11.0.0-next.3 + - emotion-theming@11.0.0-next.3 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/core/package.json b/packages/core/package.json index 03532de14..1b2ef139d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/core", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "main": "dist/core.cjs.js", "module": "dist/core.esm.js", "browser": { @@ -21,8 +21,8 @@ "dependencies": { "@babel/runtime": "^7.7.2", "@emotion/cache": "^11.0.0-next.0", - "@emotion/css": "^11.0.0-next.1", - "@emotion/serialize": "^1.0.0-next.0", + "@emotion/css": "^11.0.0-next.3", + "@emotion/serialize": "^0.11.15-next.1", "@emotion/sheet": "0.9.3", "@emotion/utils": "0.11.2" }, @@ -30,12 +30,12 @@ "react": ">=16.8.0" }, "devDependencies": { - "@emotion/styled": "^11.0.0-next.2", + "@emotion/styled": "^11.0.0-next.3", "@types/react": "^16.9.11", "dtslint": "^0.3.0", "emotion": "^11.0.0-next.0", "emotion-server": "^11.0.0-next.0", - "emotion-theming": "^11.0.0-next.2", + "emotion-theming": "^11.0.0-next.3", "html-tag-names": "^1.1.2", "react": "^16.11.0", "svg-tag-names": "^1.1.1" diff --git a/packages/create-emotion/CHANGELOG.md b/packages/create-emotion/CHANGELOG.md index f716f951c..372210f43 100644 --- a/packages/create-emotion/CHANGELOG.md +++ b/packages/create-emotion/CHANGELOG.md @@ -1,5 +1,12 @@ # create-emotion +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85)]: + - @emotion/serialize@0.11.15-next.1 + ## 11.0.0-next.1 ### Patch Changes diff --git a/packages/create-emotion/package.json b/packages/create-emotion/package.json index 460332826..2acf5eb23 100644 --- a/packages/create-emotion/package.json +++ b/packages/create-emotion/package.json @@ -1,6 +1,6 @@ { "name": "create-emotion", - "version": "11.0.0-next.1", + "version": "11.0.0-next.3", "description": "The Next Generation of CSS-in-JS.", "main": "dist/create-emotion.cjs.js", "module": "dist/create-emotion.esm.js", @@ -15,7 +15,7 @@ }, "dependencies": { "@emotion/cache": "^11.0.0-next.0", - "@emotion/serialize": "^1.0.0-next.0", + "@emotion/serialize": "^0.11.15-next.1", "@emotion/sheet": "0.9.3", "@emotion/utils": "0.11.2" }, diff --git a/packages/css/CHANGELOG.md b/packages/css/CHANGELOG.md index 3d2fe7fab..ef9173404 100644 --- a/packages/css/CHANGELOG.md +++ b/packages/css/CHANGELOG.md @@ -1,5 +1,13 @@ # @emotion/css +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1)]: + - @emotion/serialize@0.11.15-next.1 + - babel-plugin-emotion@11.0.0-next.3 + ## 11.0.0-next.1 ### Major Changes diff --git a/packages/css/package.json b/packages/css/package.json index 258b5e3cc..2e1dfbbdd 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/css", - "version": "11.0.0-next.1", + "version": "11.0.0-next.3", "description": "a function to serialize css and object styless", "main": "dist/css.cjs.js", "module": "dist/css.esm.js", @@ -11,9 +11,9 @@ "test:typescript": "dtslint types" }, "dependencies": { - "@emotion/serialize": "^1.0.0-next.0", + "@emotion/serialize": "^0.11.15-next.1", "@emotion/utils": "0.11.2", - "babel-plugin-emotion": "^11.0.0-next.1" + "babel-plugin-emotion": "^11.0.0-next.3" }, "devDependencies": { "dtslint": "^0.3.0" diff --git a/packages/emotion-theming/CHANGELOG.md b/packages/emotion-theming/CHANGELOG.md index 8432fab95..b8c8e684f 100644 --- a/packages/emotion-theming/CHANGELOG.md +++ b/packages/emotion-theming/CHANGELOG.md @@ -1,5 +1,13 @@ # emotion-theming +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8)]: + - @emotion/core@11.0.0-next.3 + - @emotion/styled@11.0.0-next.3 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/emotion-theming/package.json b/packages/emotion-theming/package.json index b816955cc..2139661e5 100644 --- a/packages/emotion-theming/package.json +++ b/packages/emotion-theming/package.json @@ -1,6 +1,6 @@ { "name": "emotion-theming", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "description": "A CSS-in-JS theming solution, inspired by styled-components", "main": "dist/emotion-theming.cjs.js", "module": "dist/emotion-theming.esm.js", @@ -32,8 +32,8 @@ }, "homepage": "https://emotion.sh", "devDependencies": { - "@emotion/core": "^11.0.0-next.2", - "@emotion/styled": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", + "@emotion/styled": "^11.0.0-next.3", "@types/react": "^16.9.11", "dtslint": "^0.3.0", "react": "^16.11.0" @@ -44,7 +44,7 @@ "hoist-non-react-statics": "^3.3.0" }, "peerDependencies": { - "@emotion/core": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", "react": ">=16.8.0" }, "umd:main": "dist/emotion-theming.umd.min.js", diff --git a/packages/is-prop-valid/CHANGELOG.md b/packages/is-prop-valid/CHANGELOG.md index a6b379e0f..4dc6e6804 100644 --- a/packages/is-prop-valid/CHANGELOG.md +++ b/packages/is-prop-valid/CHANGELOG.md @@ -1,5 +1,11 @@ # @emotion/is-prop-valid +## 0.8.6-next.0 + +### Patch Changes + +- [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Add missing `#__PURE__` annotations + ## 0.8.5 ### Patch Changes diff --git a/packages/is-prop-valid/package.json b/packages/is-prop-valid/package.json index 0c2ed5344..b8accba09 100644 --- a/packages/is-prop-valid/package.json +++ b/packages/is-prop-valid/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/is-prop-valid", - "version": "0.8.5", + "version": "0.8.6-next.0", "description": "A function to check whether a prop is valid for HTML and SVG elements", "main": "dist/is-prop-valid.cjs.js", "module": "dist/is-prop-valid.esm.js", diff --git a/packages/jest-emotion/CHANGELOG.md b/packages/jest-emotion/CHANGELOG.md index 6ed941a59..5536c2733 100644 --- a/packages/jest-emotion/CHANGELOG.md +++ b/packages/jest-emotion/CHANGELOG.md @@ -1,5 +1,12 @@ # jest-emotion +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85)]: + - @emotion/core@11.0.0-next.3 + ## 11.0.0-next.1 ### Patch Changes diff --git a/packages/jest-emotion/package.json b/packages/jest-emotion/package.json index 2ffcd6bba..125ce3674 100644 --- a/packages/jest-emotion/package.json +++ b/packages/jest-emotion/package.json @@ -1,6 +1,6 @@ { "name": "jest-emotion", - "version": "11.0.0-next.1", + "version": "11.0.0-next.3", "description": "Jest utilities for emotion", "main": "dist/jest-emotion.cjs.js", "types": "types/index.d.ts", @@ -21,7 +21,7 @@ "specificity": "^0.4.1" }, "devDependencies": { - "@emotion/core": "^11.0.0-next.1", + "@emotion/core": "^11.0.0-next.3", "dtslint": "^0.3.0", "emotion": "^11.0.0-next.0", "enzyme-to-json": "^3.2.1", diff --git a/packages/native/CHANGELOG.md b/packages/native/CHANGELOG.md index 843b737c9..dd576a80e 100644 --- a/packages/native/CHANGELOG.md +++ b/packages/native/CHANGELOG.md @@ -1,5 +1,13 @@ # @emotion/native +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies []: + - emotion-theming@11.0.0-next.3 + - @emotion/primitives-core@11.0.0-next.3 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/native/package.json b/packages/native/package.json index 0d60e99b1..2574c6732 100644 --- a/packages/native/package.json +++ b/packages/native/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/native", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "description": "Style and render React Native components using emotion", "main": "dist/native.cjs.js", "module": "dist/native.esm.js", @@ -12,12 +12,12 @@ "dist" ], "devDependencies": { - "emotion-theming": "^11.0.0-next.2", + "emotion-theming": "^11.0.0-next.3", "react": "^16.11.0", "react-native": "^0.57.0" }, "dependencies": { - "@emotion/primitives-core": "11.0.0-next.2" + "@emotion/primitives-core": "11.0.0-next.3" }, "peerDependencies": { "react-native": ">=0.14.0 <1" diff --git a/packages/primitives-core/CHANGELOG.md b/packages/primitives-core/CHANGELOG.md index 013a6ace0..eba880558 100644 --- a/packages/primitives-core/CHANGELOG.md +++ b/packages/primitives-core/CHANGELOG.md @@ -1,5 +1,12 @@ # @emotion/primitives-core +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85)]: + - @emotion/core@11.0.0-next.3 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/primitives-core/package.json b/packages/primitives-core/package.json index 3e18ab407..101ec096d 100644 --- a/packages/primitives-core/package.json +++ b/packages/primitives-core/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/primitives-core", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "description": "Shared utilities for emotion primitives and native", "main": "dist/primitives-core.cjs.js", "module": "dist/primitives-core.esm.js", @@ -16,11 +16,11 @@ "css-to-react-native": "^2.2.1" }, "peerDependencies": { - "@emotion/core": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", "react": ">=16.8.0" }, "devDependencies": { - "@emotion/core": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", "react": "^16.11.0" }, "homepage": "https://emotion.sh", diff --git a/packages/primitives/CHANGELOG.md b/packages/primitives/CHANGELOG.md index 452fb1f50..b129d2e4f 100644 --- a/packages/primitives/CHANGELOG.md +++ b/packages/primitives/CHANGELOG.md @@ -1,5 +1,15 @@ # @emotion/primitives +## 11.0.0-next.3 + +### Patch Changes + +- Updated dependencies [[`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1)]: + - babel-plugin-emotion@11.0.0-next.3 + - @emotion/is-prop-valid@0.8.6-next.0 + - emotion-theming@11.0.0-next.3 + - @emotion/primitives-core@11.0.0-next.3 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/primitives/package.json b/packages/primitives/package.json index 3a0798192..41da42974 100644 --- a/packages/primitives/package.json +++ b/packages/primitives/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/primitives", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "main": "dist/primitives.cjs.js", "module": "dist/primitives.esm.js", "scripts": { @@ -11,16 +11,16 @@ "dist" ], "dependencies": { - "@emotion/is-prop-valid": "0.8.5", - "@emotion/primitives-core": "11.0.0-next.2", - "babel-plugin-emotion": "^11.0.0-next.1" + "@emotion/is-prop-valid": "0.8.6-next.0", + "@emotion/primitives-core": "11.0.0-next.3", + "babel-plugin-emotion": "^11.0.0-next.3" }, "peerDependencies": { "react": ">=16.8.0", "react-primitives": "^0.7.0" }, "devDependencies": { - "emotion-theming": "^11.0.0-next.2", + "emotion-theming": "^11.0.0-next.3", "enzyme": "^3.7.0", "enzyme-adapter-react-16": "^1.6.0", "react": "^16.11.0", diff --git a/packages/serialize/CHANGELOG.md b/packages/serialize/CHANGELOG.md index 6d9434d2b..323c82f45 100644 --- a/packages/serialize/CHANGELOG.md +++ b/packages/serialize/CHANGELOG.md @@ -1,5 +1,13 @@ # @emotion/serialize +## 0.11.15-next.1 + +### Patch Changes + +- [`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Throw error about invalid content property values instead of just logging error to the console. + +* [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Add missing `#__PURE__` annotations + ## 1.0.0-next.0 ### Major Changes diff --git a/packages/serialize/package.json b/packages/serialize/package.json index 8613505c5..ac5cb8be5 100644 --- a/packages/serialize/package.json +++ b/packages/serialize/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/serialize", - "version": "1.0.0-next.0", + "version": "0.11.15-next.1", "description": "serialization utils for emotion", "main": "dist/serialize.cjs.js", "module": "dist/serialize.esm.js", diff --git a/packages/styled-base/CHANGELOG.md b/packages/styled-base/CHANGELOG.md new file mode 100644 index 000000000..5367be53f --- /dev/null +++ b/packages/styled-base/CHANGELOG.md @@ -0,0 +1,7 @@ +# @emotion/styled-base + +## 11.0.0-next.3 + +### Major Changes + +- [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8) [#1575](https://github.com/emotion-js/emotion/pull/1575) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed support for `@emotion/styled-base` package. It has been moved to `@emotion/styled` and is available as `@emotion/styled/base`. This simplifies how the regular and base versions relate to each other and eliminates problems with stricter package managers when `@emotion/styled-base` was not installed explicitly by a user. diff --git a/packages/styled-base/package.json b/packages/styled-base/package.json index 067f5cb24..a57865316 100644 --- a/packages/styled-base/package.json +++ b/packages/styled-base/package.json @@ -1,17 +1,17 @@ { - "name": "@emotion/styled-base", - "version": "11.0.0-next.2", - "description": "Deprecated package which became `@emotion/styled/base`", - "main": "dist/styled-base.cjs.js", - "license": "MIT", - "repository": "https://github.com/emotion-js/emotion/tree/master/packages/styled-base", - "scripts": { - "test:typescript": "exit 0" - }, - "publishConfig": { - "access": "public" - }, - "preconstruct": { - "source": "index" - } + "name": "@emotion/styled-base", + "version": "11.0.0-next.3", + "description": "Deprecated package which became `@emotion/styled/base`", + "main": "dist/styled-base.cjs.js", + "license": "MIT", + "repository": "https://github.com/emotion-js/emotion/tree/master/packages/styled-base", + "scripts": { + "test:typescript": "exit 0" + }, + "publishConfig": { + "access": "public" + }, + "preconstruct": { + "source": "index" + } } diff --git a/packages/styled/CHANGELOG.md b/packages/styled/CHANGELOG.md index e0b3b2a2a..719576e89 100644 --- a/packages/styled/CHANGELOG.md +++ b/packages/styled/CHANGELOG.md @@ -1,5 +1,19 @@ # @emotion/styled +## 11.0.0-next.3 + +### Major Changes + +- [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8) [#1575](https://github.com/emotion-js/emotion/pull/1575) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Removed support for `@emotion/styled-base` package. It has been moved to `@emotion/styled` and is available as `@emotion/styled/base`. This simplifies how the regular and base versions relate to each other and eliminates problems with stricter package managers when `@emotion/styled-base` was not installed explicitly by a user. + +### Patch Changes + +- Updated dependencies [[`8a896a31`](https://github.com/emotion-js/emotion/commit/8a896a31434a1d2f69e1f1467c446c884c929387), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1), [`a085003d`](https://github.com/emotion-js/emotion/commit/a085003d4c8ca284c116668d7217fb747802ed85), [`f9feab1a`](https://github.com/emotion-js/emotion/commit/f9feab1a5d1ca88e53c3f7a063be5d5871cc93e8), [`c5b12d90`](https://github.com/emotion-js/emotion/commit/c5b12d90316477e95ce3680a3c745cde328a14c1)]: + - @emotion/serialize@0.11.15-next.1 + - babel-plugin-emotion@11.0.0-next.3 + - @emotion/core@11.0.0-next.3 + - @emotion/is-prop-valid@0.8.6-next.0 + ## 11.0.0-next.2 ### Major Changes diff --git a/packages/styled/package.json b/packages/styled/package.json index 6e0e89b8f..589f9da77 100644 --- a/packages/styled/package.json +++ b/packages/styled/package.json @@ -1,6 +1,6 @@ { "name": "@emotion/styled", - "version": "11.0.0-next.2", + "version": "11.0.0-next.3", "description": "styled API for emotion", "main": "dist/styled.cjs.js", "module": "dist/styled.esm.js", @@ -12,18 +12,18 @@ }, "dependencies": { "@babel/runtime": "^7.7.2", - "@emotion/is-prop-valid": "0.8.5", - "@emotion/serialize": "^1.0.0-next.0", + "@emotion/is-prop-valid": "0.8.6-next.0", + "@emotion/serialize": "^0.11.15-next.1", "@emotion/utils": "0.11.2", - "babel-plugin-emotion": "^11.0.0-next.1" + "babel-plugin-emotion": "^11.0.0-next.3" }, "devDependencies": { - "@emotion/core": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", "dtslint": "^0.3.0", "react": "^16.11.0" }, "peerDependencies": { - "@emotion/core": "^11.0.0-next.2", + "@emotion/core": "^11.0.0-next.3", "react": ">=16.8.0" }, "publishConfig": {