Skip to content

Commit

Permalink
chore(release): Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed May 14, 2019
1 parent 17a67a5 commit 04e5470
Show file tree
Hide file tree
Showing 18 changed files with 140 additions and 15 deletions.
6 changes: 6 additions & 0 deletions packages/gatsby-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.14](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/compare/[email protected]@2.5.14) (2019-05-14)

### Bug Fixes

- **gatsby-cli:** Only init git repository if no git repository exists ([#13096](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/issues/13096)) ([7ca32c2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/commit/7ca32c2))

## [2.5.13](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/compare/[email protected]@2.5.13) (2019-05-09)

**Note:** Version bump only for package gatsby-cli
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-cli",
"description": "Gatsby command-line interface for creating new sites and running Gatsby commands",
"version": "2.5.13",
"version": "2.5.14",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "lib/index.js"
Expand Down
87 changes: 87 additions & 0 deletions packages/gatsby-plugin-catch-links/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,93 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.14](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/compare/[email protected]@2.0.14) (2019-05-14)

### Bug Fixes

- **gatsby-plugin-catch-links:** Fall back to default browser link handling when resources fail to fetch ([#13904](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/issues/13904)) ([d4b60f2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/commit/d4b60f2))

### Features

- **gatsby:** add assetPrefix to support deploying assets separate from html ([#12128](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/issues/12128)) ([8291044](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/commit/8291044))

### BREAKING CHANGES

- **gatsby:** this is a breaking change (as currently authored) for a
few plugins (specified in this commit). I'll work on a fallback--but I
think it might make sense to just fail here. We can specify a
peerDependency in the package.json of each of these packages, too.

- test: get tests passing

- test: add a test for assetPrefix with nesting

- Update docs/docs/path-prefix.md

Co-Authored-By: DSchau <[email protected]>

- chore: fix up merge conflicts/get tests passing

- chore: tweak version

- fix(gatsby-plugin-sitemap): work with asset prefix

- fix(gatsby): disallow both relative assetPrefix and pathPrefix

- chore: fallback to withPathPrefix, bump peerDep

- chore: remove caveat re: trailing slash

- fix: gatsby-plugin-sitemap regression

- chore: revert peer dep

- chore: use basePath if it's defined

- chore: remove eslint global comment

- chore: ensure prefixPaths is set to enable pathPrefix

- chore: fix read-only error (can't reassign imports ya dingus)

- chore: actually fallback

- Update docs/docs/asset-prefix.md

Co-Authored-By: DSchau <[email protected]>

- Update docs/docs/path-prefix.md

Co-Authored-By: DSchau <[email protected]>

- Update docs/docs/asset-prefix.md

Co-Authored-By: DSchau <[email protected]>

- chore: simply/merely remove the easy term ;)

- Update docs/docs/asset-prefix.md

Co-Authored-By: DSchau <[email protected]>

- test: write e2e test for asset prefix

Note: this very well may fail

- chore: fix package json and make isURL test stricter

- chore: fix yarn and stuff hopefully

- chore: minor clean up

- fix(gatsby): fix initial navigation not registering in history

- chore: remove unneccessary dep

- fix: use **BASE_PATH** in development runtime too; add a test

- chore: fix @pieh nit before he finds it

## [2.0.13](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/compare/[email protected]@2.0.13) (2019-03-11)

**Note:** Version bump only for package gatsby-plugin-catch-links
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-catch-links/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-catch-links",
"description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.",
"version": "2.0.13",
"version": "2.0.14",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-page-creator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.13](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-page-creator/compare/[email protected]@2.0.13) (2019-05-14)

**Note:** Version bump only for package gatsby-plugin-page-creator

## [2.0.12](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-page-creator/compare/[email protected]@2.0.12) (2019-03-26)

### Features
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-page-creator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-page-creator",
"version": "2.0.12",
"version": "2.0.13",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-source-contentful/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.57](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/[email protected]@2.0.57) (2019-05-14)

**Note:** Version bump only for package gatsby-source-contentful

## [2.0.56](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/[email protected]@2.0.56) (2019-05-09)

**Note:** Version bump only for package gatsby-source-contentful
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-source-contentful/package.json
Original file line number Diff line number Diff line change
@@ -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.56",
"version": "2.0.57",
"author": "Marcus Ericsson <[email protected]> (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand All @@ -15,7 +15,7 @@
"deep-map": "^1.5.0",
"fs-extra": "^4.0.2",
"gatsby-plugin-sharp": "^2.0.37",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-source-filesystem": "^2.0.34",
"is-online": "^7.0.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.10",
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-source-drupal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [3.1.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.1.6) (2019-05-14)

**Note:** Version bump only for package gatsby-source-drupal

## [3.1.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.1.5) (2019-05-14)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-source-drupal/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-drupal",
"description": "Gatsby source plugin for building websites using the Drupal CMS as a data source",
"version": "3.1.5",
"version": "3.1.6",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand All @@ -10,7 +10,7 @@
"@babel/runtime": "^7.0.0",
"axios": "^0.18.0",
"bluebird": "^3.5.0",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-source-filesystem": "^2.0.34",
"lodash": "^4.17.10",
"tiny-async-pool": "^1.0.4"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby-source-filesystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.34](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/compare/[email protected]@2.0.34) (2019-05-14)

### Features

- **gatsby:** allow awaiting API run triggered by createNode action ([#12748](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/issues/12748)) ([17a67a5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/commit/17a67a5))

## [2.0.33](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem/compare/[email protected]@2.0.33) (2019-04-30)

**Note:** Version bump only for package gatsby-source-filesystem
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-source-filesystem/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-filesystem",
"description": "Gatsby plugin which parses files within a directory for further parsing by other plugins",
"version": "2.0.33",
"version": "2.0.34",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-source-shopify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.29](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify/compare/[email protected]@2.0.29) (2019-05-14)

**Note:** Version bump only for package gatsby-source-shopify

## [2.0.28](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify/compare/[email protected]@2.0.28) (2019-04-30)

**Note:** Version bump only for package gatsby-source-shopify
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-source-shopify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-shopify",
"version": "2.0.28",
"version": "2.0.29",
"description": "Gatsby source plugin for building websites using Shopfiy as a data source.",
"scripts": {
"build": "babel src --out-dir .",
Expand Down Expand Up @@ -32,7 +32,7 @@
"babel-preset-gatsby-package": "^0.1.4",
"chalk": "^2.4.1",
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-source-filesystem": "^2.0.34",
"graphql-request": "^1.6.0",
"lodash": "^4.17.4",
"p-iteration": "^1.1.7",
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-source-wordpress/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [3.0.59](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.59) (2019-05-14)

**Note:** Version bump only for package gatsby-source-wordpress

## [3.0.58](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.58) (2019-04-30)

**Note:** Version bump only for package gatsby-source-wordpress
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-source-wordpress/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-wordpress",
"description": "Gatsby source plugin for building websites using the Wordpress CMS as a data source.",
"version": "3.0.58",
"version": "3.0.59",
"author": "Sebastien Fichot <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand All @@ -14,7 +14,7 @@
"bluebird": "^3.5.0",
"deep-map": "^1.5.0",
"deep-map-keys": "^1.2.0",
"gatsby-source-filesystem": "^2.0.33",
"gatsby-source-filesystem": "^2.0.34",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.4.5) (2019-05-14)

### Features

- **gatsby:** allow awaiting API run triggered by createNode action ([#12748](https://github.com/gatsbyjs/gatsby/issues/12748)) ([17a67a5](https://github.com/gatsbyjs/gatsby/commit/17a67a5))

## [2.4.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.4.4) (2019-05-14)

**Note:** Version bump only for package gatsby
Expand Down
6 changes: 3 additions & 3 deletions packages/gatsby/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby",
"description": "Blazing fast modern site generator for React",
"version": "2.4.4",
"version": "2.4.5",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./dist/bin/gatsby.js"
Expand Down Expand Up @@ -65,9 +65,9 @@
"flat": "^4.0.0",
"fs-exists-cached": "1.0.0",
"fs-extra": "^5.0.0",
"gatsby-cli": "^2.5.13",
"gatsby-cli": "^2.5.14",
"gatsby-link": "^2.1.1",
"gatsby-plugin-page-creator": "^2.0.12",
"gatsby-plugin-page-creator": "^2.0.13",
"gatsby-react-router-scroll": "^2.0.7",
"gatsby-telemetry": "^1.0.9",
"glob": "^7.1.1",
Expand Down

0 comments on commit 04e5470

Please sign in to comment.