Skip to content

Commit

Permalink
Version Packages (#1638)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and Andarist committed Nov 25, 2019
1 parent 0a4a22f commit 3b9cb9e
Show file tree
Hide file tree
Showing 27 changed files with 209 additions and 39 deletions.
12 changes: 11 additions & 1 deletion .changeset/pre.json
Expand Up @@ -42,22 +42,32 @@
"changesets": [
"long-apes-admire",
"polite-tips-attend",
"cool-candles-lie",
"curvy-timers-decide",
"dull-carrots-enjoy",
"five-paws-try",
"five-spoons-roll",
"flat-adults-add",
"giant-oranges-impress",
"gorgeous-steaks-report",
"large-snakes-ring",
"light-mice-relate",
"mean-deers-confess",
"modern-grapes-obey",
"moody-stingrays-sort",
"neat-ligers-film",
"nine-mugs-care",
"odd-insects-cough",
"rare-books-own",
"rare-toes-grow",
"smooth-carpets-matter",
"spotty-llamas-mate",
"strange-pumas-suffer",
"stupid-radios-draw",
"tricky-cameras-notice",
"two-baboons-mate"
"two-baboons-mate",
"two-kiwis-give",
"weak-islands-confess",
"wicked-mails-obey"
]
}
23 changes: 23 additions & 0 deletions packages/babel-plugin-emotion/CHANGELOG.md
@@ -1,5 +1,28 @@
# babel-plugin-emotion

## 11.0.0-next.6

### Major Changes

- [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Removed `@emotion/css` - it's main purpose was to allow `css` to be a Babel macro, but since babel-plugin-macros allows us to keep imports nowadays this is no longer needed. `@emotion/core/macro` has been added to account for this use case and appropriate changes has been made to `babel-plugin-emotion` to facilitate those changes.

If you have used `@emotion/css` directly (it was always reexported from `@emotion/core`) or you have been using its macro then you should update your code like this:

```diff
-import css from '@emotion/css'
+import { css } from '@emotion/core'

// or
-import css from '@emotion/css/macro'
+import { css } from '@emotion/core/macro'
```

### Minor Changes

- [`0a4a22ff`](https://github.com/emotion-js/emotion/commit/0a4a22ffcfaa49d09a88856ef2d51e0d53e31b6d) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Allow `labelFormat` option to be a function.

* [`828111cd`](https://github.com/emotion-js/emotion/commit/828111cd32d3fe8c984231201e518d1b6000bffd) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - `Global` gets handled by the Babel plugin now - this gives inline css-less expressions source maps.

## 11.0.0-next.4

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-emotion/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-emotion",
"version": "11.0.0-next.4",
"version": "11.0.0-next.6",
"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",
Expand Down
11 changes: 11 additions & 0 deletions packages/babel-preset-css-prop/CHANGELOG.md
@@ -1,5 +1,16 @@
# @emotion/babel-preset-css-prop

## 11.0.0-next.6

### Minor Changes

- [`0a4a22ff`](https://github.com/emotion-js/emotion/commit/0a4a22ffcfaa49d09a88856ef2d51e0d53e31b6d) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Allow `labelFormat` option to be a function.

### Patch Changes

- Updated dependencies [[`0a4a22ff`](https://github.com/emotion-js/emotion/commit/0a4a22ffcfaa49d09a88856ef2d51e0d53e31b6d), [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41), [`828111cd`](https://github.com/emotion-js/emotion/commit/828111cd32d3fe8c984231201e518d1b6000bffd)]:
- babel-plugin-emotion@11.0.0-next.6

## 11.0.0-next.3

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-preset-css-prop/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/babel-preset-css-prop",
"version": "11.0.0-next.3",
"version": "11.0.0-next.6",
"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",
Expand All @@ -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.3"
"babel-plugin-emotion": "^11.0.0-next.6"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
Expand Down
11 changes: 11 additions & 0 deletions packages/cache/CHANGELOG.md
@@ -1,5 +1,16 @@
# @emotion/cache

## 11.0.0-next.6

### Minor Changes

- [`4a891bf6`](https://github.com/emotion-js/emotion/commit/4a891bf6a30e3bb37f8f32031fa75a571c637d9c) [#1473](https://github.com/emotion-js/emotion/pull/1473) Thanks [@jcharry](https://github.com/jcharry)! - Accept new `prepend` option to allow for adding style tags at the beginning of the specified DOM container.

### Patch Changes

- Updated dependencies [[`4a891bf6`](https://github.com/emotion-js/emotion/commit/4a891bf6a30e3bb37f8f32031fa75a571c637d9c)]:
- @emotion/sheet@0.10.0-next.0

## 11.0.0-next.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/cache",
"version": "11.0.0-next.0",
"version": "11.0.0-next.6",
"description": "emotion's cache",
"main": "dist/cache.cjs.js",
"module": "dist/cache.esm.js",
Expand All @@ -15,7 +15,7 @@
"test:typescript": "dtslint types"
},
"dependencies": {
"@emotion/sheet": "0.9.3",
"@emotion/sheet": "0.10.0-next.0",
"@emotion/stylis": "0.8.4",
"@emotion/utils": "0.11.2",
"@emotion/weak-memoize": "0.2.4"
Expand Down
31 changes: 31 additions & 0 deletions packages/core/CHANGELOG.md
@@ -1,5 +1,36 @@
# @emotion/core

## 11.0.0-next.6

### Major Changes

- [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Removed `@emotion/css` - it's main purpose was to allow `css` to be a Babel macro, but since babel-plugin-macros allows us to keep imports nowadays this is no longer needed. `@emotion/core/macro` has been added to account for this use case and appropriate changes has been made to `babel-plugin-emotion` to facilitate those changes.

If you have used `@emotion/css` directly (it was always reexported from `@emotion/core`) or you have been using its macro then you should update your code like this:

```diff
-import css from '@emotion/css'
+import { css } from '@emotion/core'

// or
-import css from '@emotion/css/macro'
+import { css } from '@emotion/core/macro'
```

- [`cbb8b796`](https://github.com/emotion-js/emotion/commit/cbb8b7965c2923cf1922d724de556374323bff61) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - `emotion-theming` has been removed and all its exports were moved to `@emotion/core` package. Please import them like this `import { useTheme, ThemeProvider, withTheme } from '@emotion/core'` from now on.

### Minor Changes

- [`828111cd`](https://github.com/emotion-js/emotion/commit/828111cd32d3fe8c984231201e518d1b6000bffd) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - `Global` imported from macro entry (`@emotion/core/macro`) gets source maps generated now when inline css-less expression is used as value of the `styles` prop.

### Patch Changes

- Updated dependencies [[`923ded01`](https://github.com/emotion-js/emotion/commit/923ded01e2399a242206d590f6646f13aba110e4), [`4a891bf6`](https://github.com/emotion-js/emotion/commit/4a891bf6a30e3bb37f8f32031fa75a571c637d9c), [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41)]:
- @emotion/styled@11.0.0-next.6
- @emotion/cache@11.0.0-next.6
- @emotion/sheet@0.10.0-next.0
- @emotion/css@11.0.0-next.6

## 11.0.0-next.5

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/core",
"version": "11.0.0-next.5",
"version": "11.0.0-next.6",
"main": "dist/core.cjs.js",
"module": "dist/core.esm.js",
"browser": {
Expand All @@ -23,10 +23,10 @@
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"@emotion/cache": "^11.0.0-next.0",
"@emotion/css": "^11.0.0-next.3",
"@emotion/cache": "^11.0.0-next.6",
"@emotion/css": "^11.0.0-next.6",
"@emotion/serialize": "^0.11.15-next.1",
"@emotion/sheet": "0.9.3",
"@emotion/sheet": "0.10.0-next.0",
"@emotion/utils": "0.11.2",
"@emotion/weak-memoize": "0.2.4",
"hoist-non-react-statics": "^3.3.1"
Expand All @@ -42,7 +42,7 @@
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@emotion/styled": "^11.0.0-next.5",
"@emotion/styled": "^11.0.0-next.6",
"@types/react": "^16.9.11",
"dtslint": "^0.3.0",
"emotion": "^11.0.0-next.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/create-emotion/CHANGELOG.md
@@ -1,5 +1,13 @@
# create-emotion

## 11.0.0-next.6

### Patch Changes

- Updated dependencies [[`4a891bf6`](https://github.com/emotion-js/emotion/commit/4a891bf6a30e3bb37f8f32031fa75a571c637d9c)]:
- @emotion/cache@11.0.0-next.6
- @emotion/sheet@0.10.0-next.0

## 11.0.0-next.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/create-emotion/package.json
@@ -1,6 +1,6 @@
{
"name": "create-emotion",
"version": "11.0.0-next.3",
"version": "11.0.0-next.6",
"description": "The Next Generation of CSS-in-JS.",
"main": "dist/create-emotion.cjs.js",
"module": "dist/create-emotion.esm.js",
Expand All @@ -14,9 +14,9 @@
"test:typescript": "dtslint types"
},
"dependencies": {
"@emotion/cache": "^11.0.0-next.0",
"@emotion/cache": "^11.0.0-next.6",
"@emotion/serialize": "^0.11.15-next.1",
"@emotion/sheet": "0.9.3",
"@emotion/sheet": "0.10.0-next.0",
"@emotion/utils": "0.11.2"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/css/CHANGELOG.md
@@ -1,5 +1,22 @@
# @emotion/css

## 11.0.0-next.6

### Major Changes

- [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Removed `@emotion/css` - it's main purpose was to allow `css` to be a Babel macro, but since babel-plugin-macros allows us to keep imports nowadays this is no longer needed. `@emotion/core/macro` has been added to account for this use case and appropriate changes has been made to `babel-plugin-emotion` to facilitate those changes.

If you have used `@emotion/css` directly (it was always reexported from `@emotion/core`) or you have been using its macro then you should update your code like this:

```diff
-import css from '@emotion/css'
+import { css } from '@emotion/core'

// or
-import css from '@emotion/css/macro'
+import { css } from '@emotion/core/macro'
```

## 11.0.0-next.3

### Patch Changes
Expand Down
6 changes: 2 additions & 4 deletions packages/css/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/css",
"version": "11.0.0-next.3",
"version": "11.0.0-next.6",
"description": "a function to serialize css and object styless",
"main": "dist/css.cjs.js",
"license": "MIT",
Expand All @@ -11,7 +11,5 @@
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
"files": ["dist"]
}
6 changes: 6 additions & 0 deletions packages/emotion-theming/CHANGELOG.md
@@ -1,5 +1,11 @@
# emotion-theming

## 11.0.0-next.6

### Major Changes

- [`cbb8b796`](https://github.com/emotion-js/emotion/commit/cbb8b7965c2923cf1922d724de556374323bff61) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - `emotion-theming` has been removed and all its exports were moved to `@emotion/core` package. Please import them like this `import { useTheme, ThemeProvider, withTheme } from '@emotion/core'` from now on.

## 11.0.0-next.5

### Patch Changes
Expand Down
6 changes: 2 additions & 4 deletions packages/emotion-theming/package.json
@@ -1,11 +1,9 @@
{
"name": "emotion-theming",
"version": "11.0.0-next.5",
"version": "11.0.0-next.6",
"description": "A CSS-in-JS theming solution, inspired by styled-components",
"main": "dist/emotion-theming.cjs.js",
"files": [
"dist"
],
"files": ["dist"],
"scripts": {
"test:typescript": "exit 0"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/is-prop-valid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/is-prop-valid

## 0.9.0-next.1

### Minor Changes

- [`923ded01`](https://github.com/emotion-js/emotion/commit/923ded01e2399a242206d590f6646f13aba110e4) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@JakeGinnivan](https://github.com/JakeGinnivan)! - Allow `isPropValid` to take any `PropertyKey` as an argument (instead of just `string`).

## 0.8.6-next.0

### 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": "0.8.6-next.0",
"version": "0.9.0-next.1",
"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",
Expand Down
13 changes: 13 additions & 0 deletions packages/native/CHANGELOG.md
@@ -1,5 +1,18 @@
# @emotion/native

## 11.0.0-next.6

### Minor Changes

- [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - `@emotion/native` & `@emotion/primitives` packages come with macros now. Both can be used as `@emotion/native/macro` & `@emotion/primitives/macro` respectively.

* [`f1b7c9d6`](https://github.com/emotion-js/emotion/commit/f1b7c9d6dcdb45a02d7c7dce8c3fff28e14ed3ec) [#1600](https://github.com/emotion-js/emotion/pull/1600) Thanks [@Andarist](https://github.com/Andarist)! - Added basic support for accepting custom `shouldForwardProp` option.

### Patch Changes

- Updated dependencies []:
- @emotion/primitives-core@11.0.0-next.6

## 11.0.0-next.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/native/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/native",
"version": "11.0.0-next.5",
"version": "11.0.0-next.6",
"description": "Style and render React Native components using emotion",
"main": "dist/native.cjs.js",
"module": "dist/native.esm.js",
Expand All @@ -18,7 +18,7 @@
"react-native": "^0.57.0"
},
"dependencies": {
"@emotion/primitives-core": "11.0.0-next.5"
"@emotion/primitives-core": "11.0.0-next.6"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/primitives-core/CHANGELOG.md
@@ -1,5 +1,12 @@
# @emotion/primitives-core

## 11.0.0-next.6

### Patch Changes

- Updated dependencies [[`828111cd`](https://github.com/emotion-js/emotion/commit/828111cd32d3fe8c984231201e518d1b6000bffd), [`843bfb11`](https://github.com/emotion-js/emotion/commit/843bfb1153ee0dbe33d005fdd5c5be185daa5c41), [`cbb8b796`](https://github.com/emotion-js/emotion/commit/cbb8b7965c2923cf1922d724de556374323bff61)]:
- @emotion/core@11.0.0-next.6

## 11.0.0-next.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/primitives-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/primitives-core",
"version": "11.0.0-next.5",
"version": "11.0.0-next.6",
"description": "Shared utilities for emotion primitives and native",
"main": "dist/primitives-core.cjs.js",
"module": "dist/primitives-core.esm.js",
Expand All @@ -16,11 +16,11 @@
"css-to-react-native": "^2.2.1"
},
"peerDependencies": {
"@emotion/core": "^11.0.0-next.5",
"@emotion/core": "^11.0.0-next.6",
"react": ">=16.8.0"
},
"devDependencies": {
"@emotion/core": "^11.0.0-next.5",
"@emotion/core": "^11.0.0-next.6",
"react": "^16.11.0"
},
"homepage": "https://emotion.sh",
Expand Down

0 comments on commit 3b9cb9e

Please sign in to comment.