Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gatsbyjs/gatsby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: gatsby-plugin-feed@4.15.0
Choose a base ref
...
head repository: gatsbyjs/gatsby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: gatsby-plugin-feed@4.15.1
Choose a head ref
  • 7 commits
  • 70 files changed
  • 5 contributors

Commits on May 25, 2022

  1. fix(gatsby): correctly auto-load preview plugin (#35745) (#35746)

    (cherry picked from commit f698c09)
    
    Co-authored-by: Michal Piechowiak <misiek.piechowiak@gmail.com>
    gatsbybot and pieh authored May 25, 2022
    Copy the full SHA
    884c554 View commit details
  2. chore(release): Publish

     - gatsby@4.15.1
    pieh committed May 25, 2022
    Copy the full SHA
    823b22e View commit details

Commits on May 31, 2022

  1. fix(gatsby-plugin-utils): Make GatsbyImageData nullable (#35777) (#…

    …35785)
    
    Co-authored-by: Lennart <lekoarts@gmail.com>
    gatsbybot and LekoArts authored May 31, 2022
    Copy the full SHA
    e7a3e6e View commit details
  2. fix(function): prioritize raw body parser (#35780) (#35786)

    Co-authored-by: Michal Piechowiak <misiek.piechowiak@gmail.com>
    gatsbybot and pieh authored May 31, 2022
    Copy the full SHA
    9f5c107 View commit details
  3. fix(gatsby-script): Make load callback work when both load and error …

    …callbacks defined (#35760) (#35787)
    
    Co-authored-by: Ty Hopp <tyhopp@users.noreply.github.com>
    gatsbybot and tyhopp authored May 31, 2022
    Copy the full SHA
    ae95d66 View commit details

Commits on Jun 1, 2022

  1. fix(gatsby-plugin-preload-fonts): disable cache (#34633) (#35790)

    * fix(gatsby-plugin-preload-fonts): disable cache
    
    Closes #34632
    
    * fix(gatsby-plugin-preload-fonts): add func to mock
    
    Co-authored-by: Ward Peeters <ward@coding-tech.com>
    Co-authored-by: Kyle Mathews <mathews.kyle@gmail.com>
    (cherry picked from commit e7db715)
    
    Co-authored-by: Foo-x <www.sand.x@gmail.com>
    gatsbybot and Foo-x authored Jun 1, 2022
    Copy the full SHA
    629b30f View commit details
  2. chore(release): Publish

     - create-gatsby@2.15.1
     - gatsby-cli@4.15.1
     - gatsby-plugin-cxs@4.15.1
     - gatsby-plugin-feed@4.15.1
     - gatsby-plugin-flow@3.15.1
     - gatsby-plugin-google-tagmanager@4.15.1
     - gatsby-plugin-image@2.15.1
     - gatsby-plugin-manifest@4.15.1
     - gatsby-plugin-mdx@3.15.1
     - gatsby-plugin-offline@5.15.1
     - gatsby-plugin-page-creator@4.15.1
     - gatsby-plugin-preload-fonts@3.15.1
     - gatsby-plugin-sass@5.15.1
     - gatsby-plugin-sharp@4.15.1
     - gatsby-plugin-sitemap@5.15.1
     - gatsby-plugin-twitter@4.15.1
     - gatsby-plugin-utils@3.9.1
     - gatsby-remark-autolink-headers@5.15.1
     - gatsby-remark-images@6.15.1
     - gatsby-script@1.0.1
     - gatsby-source-contentful@7.13.1
     - gatsby-source-drupal@5.16.1
     - gatsby-source-shopify@7.4.1
     - gatsby-source-wordpress@6.15.1
     - gatsby-transformer-remark@5.15.1
     - gatsby-transformer-sharp@4.15.1
     - gatsby-transformer-sqip@4.15.1
     - gatsby@4.15.2
    pieh committed Jun 1, 2022
    Copy the full SHA
    2652fa8 View commit details
Showing with 354 additions and 72 deletions.
  1. +13 −0 e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-both-callbacks.js
  2. +30 −0 e2e-tests/development-runtime/src/pages/gatsby-script-both-callbacks.js
  3. +2 −2 e2e-tests/development-runtime/src/pages/gatsby-script-duplicate-scripts.js
  4. +13 −0 e2e-tests/production-runtime/cypress/integration/gatsby-script-both-callbacks.js
  5. +30 −0 e2e-tests/production-runtime/src/pages/gatsby-script-both-callbacks.js
  6. +2 −2 e2e-tests/production-runtime/src/pages/gatsby-script-duplicate-scripts.js
  7. +50 −1 integration-tests/functions/test-helpers.js
  8. +4 −0 packages/create-gatsby/CHANGELOG.md
  9. +2 −2 packages/create-gatsby/package.json
  10. +6 −0 packages/gatsby-cli/CHANGELOG.md
  11. +2 −2 packages/gatsby-cli/package.json
  12. +4 −0 packages/gatsby-plugin-cxs/CHANGELOG.md
  13. +2 −2 packages/gatsby-plugin-cxs/package.json
  14. +4 −0 packages/gatsby-plugin-feed/CHANGELOG.md
  15. +2 −2 packages/gatsby-plugin-feed/package.json
  16. +4 −0 packages/gatsby-plugin-flow/CHANGELOG.md
  17. +2 −2 packages/gatsby-plugin-flow/package.json
  18. +4 −0 packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
  19. +2 −2 packages/gatsby-plugin-google-tagmanager/package.json
  20. +6 −0 packages/gatsby-plugin-image/CHANGELOG.md
  21. +2 −2 packages/gatsby-plugin-image/package.json
  22. +4 −0 packages/gatsby-plugin-manifest/CHANGELOG.md
  23. +2 −2 packages/gatsby-plugin-manifest/package.json
  24. +4 −0 packages/gatsby-plugin-mdx/CHANGELOG.md
  25. +2 −2 packages/gatsby-plugin-mdx/package.json
  26. +4 −0 packages/gatsby-plugin-offline/CHANGELOG.md
  27. +2 −2 packages/gatsby-plugin-offline/package.json
  28. +4 −0 packages/gatsby-plugin-page-creator/CHANGELOG.md
  29. +2 −2 packages/gatsby-plugin-page-creator/package.json
  30. +6 −0 packages/gatsby-plugin-preload-fonts/CHANGELOG.md
  31. +1 −1 packages/gatsby-plugin-preload-fonts/package.json
  32. +1 −0 packages/gatsby-plugin-preload-fonts/src/__tests__/index.test.js
  33. +1 −0 packages/gatsby-plugin-preload-fonts/src/prepare/index.js
  34. +4 −0 packages/gatsby-plugin-sass/CHANGELOG.md
  35. +2 −2 packages/gatsby-plugin-sass/package.json
  36. +4 −0 packages/gatsby-plugin-sharp/CHANGELOG.md
  37. +3 −3 packages/gatsby-plugin-sharp/package.json
  38. +4 −0 packages/gatsby-plugin-sitemap/CHANGELOG.md
  39. +2 −2 packages/gatsby-plugin-sitemap/package.json
  40. +4 −0 packages/gatsby-plugin-twitter/CHANGELOG.md
  41. +2 −2 packages/gatsby-plugin-twitter/package.json
  42. +6 −0 packages/gatsby-plugin-utils/CHANGELOG.md
  43. +1 −1 packages/gatsby-plugin-utils/package.json
  44. +1 −1 packages/gatsby-plugin-utils/src/polyfill-remote-file/graphql/gatsby-image-resolver.ts
  45. +4 −0 packages/gatsby-remark-autolink-headers/CHANGELOG.md
  46. +2 −2 packages/gatsby-remark-autolink-headers/package.json
  47. +4 −0 packages/gatsby-remark-images/CHANGELOG.md
  48. +2 −2 packages/gatsby-remark-images/package.json
  49. +11 −0 packages/gatsby-script/CHANGELOG.md
  50. +1 −1 packages/gatsby-script/package.json
  51. +2 −2 packages/gatsby-script/src/gatsby-script.tsx
  52. +4 −0 packages/gatsby-source-contentful/CHANGELOG.md
  53. +2 −2 packages/gatsby-source-contentful/package.json
  54. +4 −0 packages/gatsby-source-drupal/CHANGELOG.md
  55. +2 −2 packages/gatsby-source-drupal/package.json
  56. +4 −0 packages/gatsby-source-shopify/CHANGELOG.md
  57. +3 −3 packages/gatsby-source-shopify/package.json
  58. +4 −0 packages/gatsby-source-wordpress/CHANGELOG.md
  59. +3 −3 packages/gatsby-source-wordpress/package.json
  60. +4 −0 packages/gatsby-transformer-remark/CHANGELOG.md
  61. +2 −2 packages/gatsby-transformer-remark/package.json
  62. +4 −0 packages/gatsby-transformer-sharp/CHANGELOG.md
  63. +2 −2 packages/gatsby-transformer-sharp/package.json
  64. +4 −0 packages/gatsby-transformer-sqip/CHANGELOG.md
  65. +2 −2 packages/gatsby-transformer-sqip/package.json
  66. +22 −0 packages/gatsby/CHANGELOG.md
  67. +5 −5 packages/gatsby/package.json
  68. +1 −1 packages/gatsby/src/bootstrap/load-plugins/utils/handle-gatsby-cloud.ts
  69. +1 −1 packages/gatsby/src/internal-plugins/functions/middleware.ts
  70. +3 −3 packages/gatsby/src/schema/__tests__/__snapshots__/print.js.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
describe(`both onLoad and onError callbacks are declared`, () => {
beforeEach(() => {
cy.visit(`/gatsby-script-both-callbacks/`).waitForRouteChange()
})

it(`should execute the onLoad callback`, () => {
cy.get(`[data-on-load-result=both-callbacks]`).should(`have.length`, 1)
})

it(`should execute the onError callback`, () => {
cy.get(`[data-on-error-result=both-callbacks]`).should(`have.length`, 1)
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react"
import { Script } from "gatsby"
import { scripts } from "../../gatsby-script-scripts"
import { onLoad, onError } from "../utils/gatsby-script-callbacks"

const BothCallbacksPage = () => {
return (
<main>
<h1>Script component e2e test</h1>

<Script
src={scripts.marked}
onLoad={() => {
onLoad(`both-callbacks`)
}}
onError={() => {}}
/>

<Script
src="/non-existent-script.js"
onLoad={() => {}}
onError={() => {
onError(`both-callbacks`)
}}
/>
</main>
)
}

export default BothCallbacksPage
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { Script } from "gatsby"
import { scripts } from "../../gatsby-script-scripts"
import { onLoad, onError } from "../utils/gatsby-script-callbacks"

const DuplicateScripts = () => {
const DuplicateScriptsPage = () => {
const [onLoadScriptLoaded, setOnLoadScriptLoaded] = useState(false)
const [onErrorScriptLoaded, setOnErrorScriptLoaded] = useState(false)
const [secondOnLoadScriptLoaded, setSecondOnLoadScriptLoaded] = useState(
@@ -98,4 +98,4 @@ const DuplicateScripts = () => {
)
}

export default DuplicateScripts
export default DuplicateScriptsPage
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
describe(`both onLoad and onError callbacks are declared`, () => {
beforeEach(() => {
cy.visit(`/gatsby-script-both-callbacks/`).waitForRouteChange()
})

it(`should execute the onLoad callback`, () => {
cy.get(`[data-on-load-result=both-callbacks]`).should(`have.length`, 1)
})

it(`should execute the onError callback`, () => {
cy.get(`[data-on-error-result=both-callbacks]`).should(`have.length`, 1)
})
})
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react"
import { Script } from "gatsby"
import { scripts } from "../../gatsby-script-scripts"
import { onLoad, onError } from "../utils/gatsby-script-callbacks"

const BothCallbacksPage = () => {
return (
<main>
<h1>Script component e2e test</h1>

<Script
src={scripts.marked}
onLoad={() => {
onLoad(`both-callbacks`)
}}
onError={() => {}}
/>

<Script
src="/non-existent-script.js"
onLoad={() => {}}
onError={() => {
onError(`both-callbacks`)
}}
/>
</main>
)
}

export default BothCallbacksPage
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import { Script } from "gatsby"
import { scripts } from "../../gatsby-script-scripts"
import { onLoad, onError } from "../utils/gatsby-script-callbacks"

const DuplicateScripts = () => {
const DuplicateScriptsPage = () => {
const [onLoadScriptLoaded, setOnLoadScriptLoaded] = useState(false)
const [onErrorScriptLoaded, setOnErrorScriptLoaded] = useState(false)

@@ -58,4 +58,4 @@ const DuplicateScripts = () => {
)
}

export default DuplicateScripts
export default DuplicateScriptsPage
51 changes: 50 additions & 1 deletion integration-tests/functions/test-helpers.js
Original file line number Diff line number Diff line change
@@ -637,7 +637,7 @@ export function runTests(env, host) {
})
})

describe(`custom type`, () => {
describe(`custom type (using 'custom/type' payload)`, () => {
const body = JSON.stringify({
content: `test-string`,
})
@@ -682,6 +682,55 @@ export function runTests(env, host) {
`)
})
})

describe(`'application/json' payload`, () => {
const body = JSON.stringify({
content: `test-string`,
})
it(`on default config`, async () => {
const result = await fetch(`${host}/api/config/defaults`, {
method: `POST`,
body,
headers: {
"content-type": "application/json",
},
})

expect(result.status).toBe(200)
const responseBody = await result.json()

// default config will use default config for "application/json" type
expect(responseBody).toMatchInlineSnapshot(`
Object {
"body": "{ content: 'test-string' }",
}
`)
})

it(`on { bodyParser: { raw: { type: "*/*" }}}`, async () => {
const result = await fetch(
`${host}/api/config/body-parser-raw-type`,
{
method: `POST`,
body,
headers: {
"content-type": "application/json",
},
}
)

expect(result.status).toBe(200)
const responseBody = await result.json()

// despite application/json payload, we get
// expected Buffer
expect(responseBody).toMatchInlineSnapshot(`
Object {
"body": "<Buffer 7b 22 63 6f 6e 74 65 6e 74 22 3a 22 74 65 73 74 2d 73 74 72 69 6e 67 22 7d>",
}
`)
})
})
})

describe(`urlencoded`, () => {
4 changes: 4 additions & 0 deletions packages/create-gatsby/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/create-gatsby) (2022-06-01)

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

## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@2.14.0/packages/create-gatsby) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions packages/create-gatsby/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-gatsby",
"version": "2.15.0",
"version": "2.15.1",
"main": "lib/index.js",
"bin": "cli.js",
"license": "MIT",
@@ -28,7 +28,7 @@
"eslint": "^7.32.0",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"gatsby-plugin-utils": "^3.9.0",
"gatsby-plugin-utils": "^3.9.1",
"joi": "^17.4.2",
"microbundle": "^0.14.2",
"node-fetch": "^2.6.6",
6 changes: 6 additions & 0 deletions packages/gatsby-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-cli) (2022-06-01)

#### Chores

- don't use npm-run-all to build packages ([fb4de37](https://github.com/gatsbyjs/gatsby/commit/fb4de379e914892c8ce437d4613b60499cfeb897))

## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@4.14.0/packages/gatsby-cli) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions 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": "4.15.0",
"version": "4.15.1",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bin": {
"gatsby": "cli.js"
@@ -26,7 +26,7 @@
"common-tags": "^1.8.2",
"configstore": "^5.0.1",
"convert-hrtime": "^3.0.0",
"create-gatsby": "^2.15.0",
"create-gatsby": "^2.15.1",
"envinfo": "^7.8.1",
"execa": "^5.1.1",
"fs-exists-cached": "^1.0.0",
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-cxs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

### [4.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-cxs) (2022-06-01)

**Note:** Version bump only for package gatsby-plugin-cxs

## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@4.14.0/packages/gatsby-plugin-cxs) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-cxs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-cxs",
"description": "Gatsby plugin to add SSR support for ctx",
"version": "4.15.0",
"version": "4.15.1",
"author": "Chen-Tai Hou <ctxhou@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"babel-preset-gatsby-package": "^2.15.0",
"cross-env": "^7.0.3",
"cxs": "^6.2.0",
"gatsby-plugin-utils": "^3.9.0"
"gatsby-plugin-utils": "^3.9.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme",
"keywords": [
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-feed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

### [4.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-feed) (2022-06-01)

**Note:** Version bump only for package gatsby-plugin-feed

## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@4.14.0/packages/gatsby-plugin-feed) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-feed/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-feed",
"description": "Creates an RSS feed for your Gatsby site.",
"version": "4.15.0",
"version": "4.15.1",
"author": "Nicholas Young <nicholas@nicholaswyoung.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
"@hapi/joi": "^15.1.1",
"common-tags": "^1.8.2",
"fs-extra": "^10.1.0",
"gatsby-plugin-utils": "^3.9.0",
"gatsby-plugin-utils": "^3.9.1",
"lodash.merge": "^4.6.2",
"rss": "^1.2.2"
},
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-flow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-flow) (2022-06-01)

**Note:** Version bump only for package gatsby-plugin-flow

## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@3.14.0/packages/gatsby-plugin-flow) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-flow/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-flow",
"version": "3.15.0",
"version": "3.15.1",
"description": "Provides drop-in support for Flow by adding @babel/preset-flow.",
"main": "index.js",
"scripts": {
@@ -32,7 +32,7 @@
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^2.15.0",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^3.9.0"
"gatsby-plugin-utils": "^3.9.1"
},
"peerDependencies": {
"gatsby": "^4.0.0-next"
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

### [4.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-google-tagmanager) (2022-06-01)

**Note:** Version bump only for package gatsby-plugin-google-tagmanager

## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@4.14.0/packages/gatsby-plugin-google-tagmanager) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-google-tagmanager/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-tagmanager",
"description": "Gatsby plugin to add google tagmanager onto a site",
"version": "4.15.0",
"version": "4.15.1",
"author": "Thijs Koerselman <thijs@vauxlab.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^2.15.0",
"cross-env": "^7.0.3",
"gatsby-plugin-utils": "^3.9.0"
"gatsby-plugin-utils": "^3.9.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme",
"keywords": [
6 changes: 6 additions & 0 deletions packages/gatsby-plugin-image/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-image) (2022-06-01)

#### Chores

- don't use npm-run-all to build packages ([fb4de37](https://github.com/gatsbyjs/gatsby/commit/fb4de379e914892c8ce437d4613b60499cfeb897))

### [2.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@2.14.1/packages/gatsby-plugin-image) (2022-05-12)

#### Bug Fixes
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-image/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-image",
"version": "2.15.0",
"version": "2.15.1",
"scripts": {
"build": "npm run clean && npm run build:gatsby-node && npm run build:gatsby-ssr && npm run build:server && npm run build:browser",
"build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src",
@@ -83,7 +83,7 @@
"common-tags": "^1.8.2",
"fs-extra": "^10.1.0",
"gatsby-core-utils": "^3.15.0",
"gatsby-plugin-utils": "^3.9.0",
"gatsby-plugin-utils": "^3.9.1",
"objectFitPolyfill": "^2.3.5",
"prop-types": "^15.8.1"
},
4 changes: 4 additions & 0 deletions packages/gatsby-plugin-manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

### [4.15.1](https://github.com/gatsbyjs/gatsby/commits/HEAD/packages/gatsby-plugin-manifest) (2022-06-01)

**Note:** Version bump only for package gatsby-plugin-manifest

## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@4.14.0/packages/gatsby-plugin-manifest) (2022-05-10)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14)
Loading