Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions integration-tests/functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"start-server-and-test": "^1.11.3"
},
"dependencies": {
"gatsby": "3.4.0-next.2-dev-1618947033238",
"gatsby-plugin-gatsby-cloud": "latest",
"gatsby": "^3.5.0-next.0",
"gatsby-plugin-gatsby-cloud": "^2.5.0-next.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
Expand Down
1 change: 1 addition & 0 deletions integration-tests/gatsby-pipeline/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ module.exports = {
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-gatsby-cloud`
],
}
11 changes: 6 additions & 5 deletions integration-tests/gatsby-pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
"dependencies": {
"gatsby": "latest",
"gatsby-image": "latest",
"gatsby-plugin-gatsby-cloud": "latest",
"gatsby-plugin-react-helmet": "latest",
"gatsby-plugin-sharp": "latest",
"gatsby-source-filesystem": "latest",
"gatsby-transformer-sharp": "latest",
"prop-types": "^15.6.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.0"
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"keywords": [
"gatsby"
Expand All @@ -38,4 +39,4 @@
"engines": {
"node": ">=12.13.0"
}
}
}
2 changes: 1 addition & 1 deletion integration-tests/gatsby-pipeline/src/components/seo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react"
import PropTypes from "prop-types"
import Helmet from "react-helmet"
import { Helmet } from "react-helmet"
import { StaticQuery, graphql } from "gatsby"

function SEO({ description, lang, meta, keywords, title }) {
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-admin/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.

# [0.15.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.15.0-next.1) (2021-04-28)

**Note:** Version bump only for package gatsby-admin

# [0.15.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.15.0-next.0) (2021-04-23)

**Note:** Version bump only for package gatsby-admin
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-admin",
"version": "0.15.0-next.0",
"version": "0.15.0-next.1",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
Expand All @@ -20,7 +20,7 @@
"@typescript-eslint/parser": "^4.14.2",
"csstype": "^2.6.14",
"formik": "^2.2.6",
"gatsby": "^3.5.0-next.0",
"gatsby": "^3.5.0-next.1",
"gatsby-interface": "^0.0.244",
"gatsby-plugin-typescript": "^3.5.0-next.0",
"gatsby-plugin-webfonts": "^1.1.4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
import { copyFile } from "fs-extra"
import { copyFile, existsSync } from "fs-extra"
import {
PUBLIC_FUNCTIONS_FILENAME,
CACHE_FUNCTIONS_FILENAME,
} from "./constants"

export default async function copyFunctionsManifest(pluginData, siteDirectory) {
export default async function copyFunctionsManifest(pluginData) {
const { publicFolder, functionsFolder } = pluginData
const manifestPath = functionsFolder(CACHE_FUNCTIONS_FILENAME)
const publicManifestPath = publicFolder(PUBLIC_FUNCTIONS_FILENAME)

await copyFile(manifestPath, publicManifestPath)
const hasManifestFile = existsSync(manifestPath)

if (hasManifestFile) {
await copyFile(manifestPath, publicManifestPath)
}
}
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-gatsby-cloud/src/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ exports.onPostBuild = async (
await Promise.all([
buildHeadersProgram(pluginData, pluginOptions, reporter),
createRedirects(pluginData, redirects, rewrites),
copyFunctionsManifest(pluginData, redirects, rewrites),
copyFunctionsManifest(pluginData),
])
}

Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby-plugin-sharp/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.

# [3.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.1) (2021-04-28)

### Bug Fixes

- **gatsby-plugin-sharp:** Handle fractional image sizes ([#31057](https://github.com/gatsbyjs/gatsby/issues/31057)) ([08dfb37](https://github.com/gatsbyjs/gatsby/commit/08dfb37577510ba8d4900c487cea7301fb7667f8))

# [3.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.0) (2021-04-23)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-sharp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sharp",
"description": "Wrapper of the Sharp image manipulation library for Gatsby plugins",
"version": "3.5.0-next.0",
"version": "3.5.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby-react-router-scroll/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.

# [4.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@[email protected]) (2021-04-28)

### Bug Fixes

- **gatsby-react-router-scroll:** scroll restoration for layout components ([#26861](https://github.com/gatsbyjs/gatsby/issues/26861)) ([f57efab](https://github.com/gatsbyjs/gatsby/commit/f57efab81a58b7ba43c57881d8e8ccd01caf1114)), closes [#26458](https://github.com/gatsbyjs/gatsby/issues/26458)

# [4.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@[email protected]) (2021-04-23)

**Note:** Version bump only for package gatsby-react-router-scroll
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-react-router-scroll/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-react-router-scroll",
"description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby",
"version": "4.5.0-next.0",
"version": "4.5.0-next.1",
"author": "Jimmy Jia",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand Down
3 changes: 3 additions & 0 deletions packages/gatsby-source-drupal/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ const handleWebhookUpdate = async (
if (node.internal.owner) {
delete node.internal.owner
}
if (node.fields) {
delete node.fields
}
node.internal.contentDigest = createContentDigest(node)
createNode(node)
reporter.log(`Updated node: ${node.id}`)
Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby-source-wordpress/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.

# [5.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.5.0-next.1) (2021-04-28)

### Features

- **gatsby-source-wordpress:** use docker for tests ([#30938](https://github.com/gatsbyjs/gatsby/issues/30938)) ([4e1678c](https://github.com/gatsbyjs/gatsby/commit/4e1678c8e44731a3a5c119d5d7606d36b6b18aeb))

# [5.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.5.0-next.0) (2021-04-23)

**Note:** Version bump only for package gatsby-source-wordpress
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-source-wordpress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gatsby-source-wordpress",
"description": "Source data from WordPress in an efficient and scalable way.",
"author": "Tyler Barnes <[email protected]>",
"version": "5.5.0-next.0",
"version": "5.5.0-next.1",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/gatsby-transformer-remark/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.

# [4.2.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2021-04-28)

### Bug Fixes

- **gatsby-transformer-remark:** Activate footnotes by default & remove included options with remark v13 ([#31019](https://github.com/gatsbyjs/gatsby/issues/31019)) ([a35d615](https://github.com/gatsbyjs/gatsby/commit/a35d615f9c8d596230ecd1f121f214b9879eb7d3))

# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2021-04-23)

**Note:** Version bump only for package gatsby-transformer-remark
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-transformer-remark/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-remark",
"description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem",
"version": "4.2.0-next.0",
"version": "4.2.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand Down
4 changes: 4 additions & 0 deletions packages/gatsby-transformer-sqip/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.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.1) (2021-04-28)

**Note:** Version bump only for package gatsby-transformer-sqip

# [3.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.0) (2021-04-23)

**Note:** Version bump only for package gatsby-transformer-sqip
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-transformer-sqip/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "gatsby-transformer-sqip",
"description": "Generates geometric primitive version of images",
"version": "3.5.0-next.0",
"version": "3.5.0-next.1",
"author": "Benedikt Rötsch <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"fs-extra": "^8.1.0",
"gatsby-plugin-sharp": "^3.5.0-next.0",
"gatsby-plugin-sharp": "^3.5.0-next.1",
"md5-file": "^5.0.0",
"mini-svg-data-uri": "^1.2.3",
"p-queue": "^6.6.2",
Expand Down
10 changes: 10 additions & 0 deletions packages/gatsby/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.1) (2021-04-28)

### Bug Fixes

- **gatsby:** handle case of changing page path casing on case-insensitive fs ([#31071](https://github.com/gatsbyjs/gatsby/issues/31071)) ([940eddf](https://github.com/gatsbyjs/gatsby/commit/940eddf9be41deab9544d26db38a661095ee37a7))

### Features

- **gatsby:** Add note to DEV_SSR flag about custom webpack config ([#31063](https://github.com/gatsbyjs/gatsby/issues/31063)) ([0fd6c1f](https://github.com/gatsbyjs/gatsby/commit/0fd6c1f23a02bdbd873be4694f8c6de75769193e)), closes [/github.com/gatsbyjs/gatsby/discussions/28138#discussioncomment-598599](https://github.com//github.com/gatsbyjs/gatsby/discussions/28138/issues/discussioncomment-598599)

# [3.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.0) (2021-04-23)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 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": "3.5.0-next.0",
"version": "3.5.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bin": {
"gatsby": "./cli.js"
Expand Down Expand Up @@ -86,7 +86,7 @@
"gatsby-plugin-page-creator": "^3.5.0-next.0",
"gatsby-plugin-typescript": "^3.5.0-next.0",
"gatsby-plugin-utils": "^1.5.0-next.0",
"gatsby-react-router-scroll": "^4.5.0-next.0",
"gatsby-react-router-scroll": "^4.5.0-next.1",
"gatsby-telemetry": "^2.5.0-next.0",
"glob": "^7.1.6",
"got": "8.3.2",
Expand Down