From 534b4a83230a80235a71b5f3c4171347e8862e58 Mon Sep 17 00:00:00 2001 From: Dustin Schau Date: Fri, 24 May 2019 17:12:33 -0500 Subject: [PATCH] chore(release): Publish - gatsby-image@2.1.1 - gatsby-plugin-emotion@4.0.7 - gatsby-plugin-facebook-analytics@2.1.0 - gatsby-plugin-flow@1.0.6 - gatsby-plugin-glamor@2.0.10 - gatsby-plugin-sharp@2.1.1 - gatsby-plugin-typescript@2.0.15 - gatsby-source-contentful@2.0.63 - gatsby-transformer-sqip@2.0.37 --- packages/gatsby-image/CHANGELOG.md | 6 ++++++ packages/gatsby-image/package.json | 2 +- packages/gatsby-plugin-emotion/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-emotion/package.json | 2 +- packages/gatsby-plugin-facebook-analytics/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-facebook-analytics/package.json | 2 +- packages/gatsby-plugin-flow/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-flow/package.json | 2 +- packages/gatsby-plugin-glamor/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-glamor/package.json | 2 +- packages/gatsby-plugin-sharp/CHANGELOG.md | 4 ++++ packages/gatsby-plugin-sharp/package.json | 2 +- packages/gatsby-plugin-typescript/CHANGELOG.md | 6 ++++++ packages/gatsby-plugin-typescript/package.json | 2 +- packages/gatsby-source-contentful/CHANGELOG.md | 4 ++++ packages/gatsby-source-contentful/package.json | 4 ++-- packages/gatsby-transformer-sqip/CHANGELOG.md | 4 ++++ packages/gatsby-transformer-sqip/package.json | 4 ++-- 18 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md index 8b0de0727b5bb..49a086b7a10ea 100644 --- a/packages/gatsby-image/CHANGELOG.md +++ b/packages/gatsby-image/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/gatsby-image@2.1.0...gatsby-image@2.1.1) (2019-05-24) + +### Features + +- **gatsby-image:** export TS interfaces of gatsby-image object types ([#14284](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/issues/14284)) ([b3e306c](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/commit/b3e306c)) + # [2.1.0](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/gatsby-image@2.0.41...gatsby-image@2.1.0) (2019-05-16) ### Features diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 9fa98255a41a4..1d4d042cdab63 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-image", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "version": "2.1.0", + "version": "2.1.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md index fc6a8788d5302..e3d52a85657c8 100644 --- a/packages/gatsby-plugin-emotion/CHANGELOG.md +++ b/packages/gatsby-plugin-emotion/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion/compare/gatsby-plugin-emotion@4.0.6...gatsby-plugin-emotion@4.0.7) (2019-05-24) + +### Bug Fixes + +- **PnP:** use `require.resolve` on `setBabelPreset` ([#14288](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion/issues/14288)) ([5e54afe](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion/commit/5e54afe)) + ## [4.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion/compare/gatsby-plugin-emotion@4.0.5...gatsby-plugin-emotion@4.0.6) (2019-03-11) **Note:** Version bump only for package gatsby-plugin-emotion diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 6e944d06ef739..650b72a85a691 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-emotion", "description": "Gatsby plugin to add support for Emotion", - "version": "4.0.6", + "version": "4.0.7", "author": "Tegan Churchill ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md index f3eb8e5384f7b..609245c4afa6f 100644 --- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics/compare/gatsby-plugin-facebook-analytics@2.0.5...gatsby-plugin-facebook-analytics@2.1.0) (2019-05-24) + +### Features + +- **gatsby-plugin-facebook-analytics:** Add version, cookie and xfbml config options ([#14311](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics/issues/14311)) ([a42e08f](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics/commit/a42e08f)) + ## [2.0.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics/compare/gatsby-plugin-facebook-analytics@2.0.4...gatsby-plugin-facebook-analytics@2.0.5) (2019-04-23) **Note:** Version bump only for package gatsby-plugin-facebook-analytics diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json index 1ee68fd69f724..8fd8aaeff4927 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-facebook-analytics", "description": "Gatsby plugin to add facebook analytics onto a site", - "version": "2.0.5", + "version": "2.1.0", "author": "Yeison Daza ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index 5491d2654ef9a..afa9d38cf3799 100644 --- a/packages/gatsby-plugin-flow/CHANGELOG.md +++ b/packages/gatsby-plugin-flow/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow/compare/gatsby-plugin-flow@1.0.5...gatsby-plugin-flow@1.0.6) (2019-05-24) + +### Bug Fixes + +- **PnP:** use `require.resolve` on `setBabelPreset` ([#14288](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow/issues/14288)) ([5e54afe](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow/commit/5e54afe)) + ## [1.0.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-flow/compare/gatsby-plugin-flow@1.0.4...gatsby-plugin-flow@1.0.5) (2019-04-23) **Note:** Version bump only for package gatsby-plugin-flow diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index b8bd774d0b4f2..d2a7214a4da07 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "1.0.5", + "version": "1.0.6", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-plugin-glamor/CHANGELOG.md b/packages/gatsby-plugin-glamor/CHANGELOG.md index b4760fefb6fe7..9c04ab3279b76 100644 --- a/packages/gatsby-plugin-glamor/CHANGELOG.md +++ b/packages/gatsby-plugin-glamor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.10](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor/compare/gatsby-plugin-glamor@2.0.9...gatsby-plugin-glamor@2.0.10) (2019-05-24) + +### Bug Fixes + +- **PnP:** use `require.resolve` on `setBabelPreset` ([#14288](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor/issues/14288)) ([5e54afe](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor/commit/5e54afe)) + ## [2.0.9](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor/compare/gatsby-plugin-glamor@2.0.8...gatsby-plugin-glamor@2.0.9) (2019-03-11) **Note:** Version bump only for package gatsby-plugin-glamor diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index b9621a2350df5..e8242d3211e50 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-glamor", "description": "Gatsby plugin to add support for Glamor", - "version": "2.0.9", + "version": "2.0.10", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index 07181b04043f0..0d6162b0da41c 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp/compare/gatsby-plugin-sharp@2.1.0...gatsby-plugin-sharp@2.1.1) (2019-05-24) + +**Note:** Version bump only for package gatsby-plugin-sharp + # [2.1.0](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp/compare/gatsby-plugin-sharp@2.0.37...gatsby-plugin-sharp@2.1.0) (2019-05-23) ### Features diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 69de429a11728..698df5eef63e1 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "2.1.0", + "version": "2.1.1", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md index 4e79f539e121b..f7b6d88b8d400 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.15](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/compare/gatsby-plugin-typescript@2.0.14...gatsby-plugin-typescript@2.0.15) (2019-05-24) + +### Bug Fixes + +- **PnP:** use `require.resolve` on `setBabelPreset` ([#14288](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/issues/14288)) ([5e54afe](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/commit/5e54afe)) + ## [2.0.14](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/compare/gatsby-plugin-typescript@2.0.13...gatsby-plugin-typescript@2.0.14) (2019-05-16) **Note:** Version bump only for package gatsby-plugin-typescript diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 349e72d5079f1..2fc5540fd3834 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "2.0.14", + "version": "2.0.15", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index bd8fc01e6a8b1..3dc815ace0120 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.63](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/gatsby-source-contentful@2.0.62...gatsby-source-contentful@2.0.63) (2019-05-24) + +**Note:** Version bump only for package gatsby-source-contentful + ## [2.0.62](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/gatsby-source-contentful@2.0.61...gatsby-source-contentful@2.0.62) (2019-05-23) **Note:** Version bump only for package gatsby-source-contentful diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index c6e76a39d7e38..56a144aed8e25 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.0.62", + "version": "2.0.63", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "contentful": "^6.1.0", "deep-map": "^1.5.0", "fs-extra": "^4.0.2", - "gatsby-plugin-sharp": "^2.1.0", + "gatsby-plugin-sharp": "^2.1.1", "gatsby-source-filesystem": "^2.0.37", "is-online": "^7.0.0", "joi": "^14.0.0", diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 7d260547982b0..8d32a18a380f8 100644 --- a/packages/gatsby-transformer-sqip/CHANGELOG.md +++ b/packages/gatsby-transformer-sqip/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.37](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sqip/compare/gatsby-transformer-sqip@2.0.36...gatsby-transformer-sqip@2.0.37) (2019-05-24) + +**Note:** Version bump only for package gatsby-transformer-sqip + ## [2.0.36](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sqip/compare/gatsby-transformer-sqip@2.0.35...gatsby-transformer-sqip@2.0.36) (2019-05-23) **Note:** Version bump only for package gatsby-transformer-sqip diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index 27a1fbccb4acb..cb626aecb62b3 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "2.0.36", + "version": "2.0.37", "author": "Benedikt Rötsch ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.0.0", "axios": "^0.18.0", "fs-extra": "^4.0.2", - "gatsby-plugin-sharp": "^2.1.0", + "gatsby-plugin-sharp": "^2.1.1", "mini-svg-data-uri": "^1.0.0", "p-queue": "^2.3.0", "sqip": "^0.3.3"