Skip to content

Commit

Permalink
ci(changeset): generate PR with changelog & version updates (#1723)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 27, 2020
1 parent af07afb commit 4a7673a
Show file tree
Hide file tree
Showing 14 changed files with 46 additions and 30 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-tools-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-papayas-flow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-cows-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-rocks-visit.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/babel-plugin-emotion/CHANGELOG.md
@@ -1,5 +1,13 @@
# babel-plugin-emotion

## 10.0.28

### Patch Changes

- [`4dfe558`](https://github.com/emotion-js/emotion/commit/4dfe55811a25bf66306aee46f7f0d6c909004c42) [#1731](https://github.com/emotion-js/emotion/pull/1731) Thanks [@ndelangen](https://github.com/ndelangen)! - Fixed an issue with adding `label` & `target` options to `styled`-related calls when those properties were already set, causing those properties to be duplicated. This could have happened for example when transpiling already transpiled code or when providing those options manually (latter being less likely).

* [`af07afb`](https://github.com/emotion-js/emotion/commit/af07afbe5a887be82f72a12fd6cd1673a32f5263) [#1761](https://github.com/emotion-js/emotion/pull/1761) Thanks [@mansourkheffache](https://github.com/mansourkheffache)! - Push source maps & labels to cooked/raw arrays in TS-transpiled tagged template expressions containing interpolations. This is a case not covered previously by [#1538](https://github.com/emotion-js/emotion/pull/1538).

## 10.0.27

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-emotion/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-emotion",
"version": "10.0.27",
"version": "10.0.28",
"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
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/core

## 10.0.28

### Patch Changes

- [`d0b2a94`](https://github.com/emotion-js/emotion/commit/d0b2a94ab9d5648667447dbd78e7a2e3e93de42a) [#1714](https://github.com/emotion-js/emotion/pull/1714) Thanks [@Andarist](https://github.com/Andarist)! - Fixed label extraction from the stack traces in FireFox and Safari. We have failed to match a label in Emotion wrappers like Theme UI which caused SSR mismatches in mentioned browsers. This has affected only development builds.

## 10.0.27

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/core",
"version": "10.0.27",
"version": "10.0.28",
"main": "dist/core.cjs.js",
"module": "dist/core.esm.js",
"browser": {
Expand Down
6 changes: 6 additions & 0 deletions packages/is-prop-valid/CHANGELOG.md
@@ -1,5 +1,11 @@
# @emotion/is-prop-valid

## 0.8.7

### Patch Changes

- [`12141c5`](https://github.com/emotion-js/emotion/commit/12141c54318c0738b60bf755e033cf6e12238a02) [#1736](https://github.com/emotion-js/emotion/pull/1736) Thanks [@bezoerb](https://github.com/bezoerb)! - Adds inert to the list of allowed props

## 0.8.6

### 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",
"version": "0.8.7",
"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
8 changes: 8 additions & 0 deletions packages/primitives/CHANGELOG.md
@@ -1,5 +1,13 @@
# @emotion/primitives

## 10.0.28

### Patch Changes

- Updated dependencies [[`4dfe558`](https://github.com/emotion-js/emotion/commit/4dfe55811a25bf66306aee46f7f0d6c909004c42), [`af07afb`](https://github.com/emotion-js/emotion/commit/af07afbe5a887be82f72a12fd6cd1673a32f5263), [`12141c5`](https://github.com/emotion-js/emotion/commit/12141c54318c0738b60bf755e033cf6e12238a02)]:
- babel-plugin-emotion@10.0.28
- @emotion/is-prop-valid@0.8.7

## 10.0.27

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/primitives/package.json
@@ -1,16 +1,16 @@
{
"name": "@emotion/primitives",
"version": "10.0.27",
"version": "10.0.28",
"main": "dist/primitives.cjs.js",
"module": "dist/primitives.esm.js",
"files": [
"src",
"dist"
],
"dependencies": {
"@emotion/is-prop-valid": "0.8.6",
"@emotion/is-prop-valid": "0.8.7",
"@emotion/primitives-core": "10.0.27",
"babel-plugin-emotion": "^10.0.27"
"babel-plugin-emotion": "^10.0.28"
},
"peerDependencies": {
"react": ">=16.3.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/styled-base/CHANGELOG.md
@@ -1,5 +1,13 @@
# @emotion/styled-base

## 10.0.28

### Patch Changes

- Updated dependencies [[`12141c5`](https://github.com/emotion-js/emotion/commit/12141c54318c0738b60bf755e033cf6e12238a02), [`d0b2a94`](https://github.com/emotion-js/emotion/commit/d0b2a94ab9d5648667447dbd78e7a2e3e93de42a)]:
- @emotion/is-prop-valid@0.8.7
- @emotion/core@10.0.28

## 10.0.27

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/styled-base/package.json
@@ -1,6 +1,6 @@
{
"name": "@emotion/styled-base",
"version": "10.0.27",
"version": "10.0.28",
"description": "base styled API for emotion",
"main": "dist/styled-base.cjs.js",
"module": "dist/styled-base.esm.js",
Expand All @@ -16,18 +16,18 @@
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@emotion/is-prop-valid": "0.8.6",
"@emotion/is-prop-valid": "0.8.7",
"@emotion/serialize": "^0.11.15",
"@emotion/utils": "0.11.3"
},
"devDependencies": {
"@emotion/core": "^10.0.27",
"@emotion/core": "^10.0.28",
"@types/react": "^16.8.20",
"dtslint": "^0.3.0",
"react": "^16.5.2"
},
"peerDependencies": {
"@emotion/core": "^10.0.27",
"@emotion/core": "^10.0.28",
"react": ">=16.3.0"
},
"publishConfig": {
Expand Down

0 comments on commit 4a7673a

Please sign in to comment.