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@2.24.74
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@2.24.75
Choose a head ref
  • 10 commits
  • 30 files changed
  • 7 contributors

Commits on Oct 12, 2020

  1. feat(gatsby-plugin-sharp): added option to allow sharp process to con…

    …tinue with errors (#27345)
    
    * added failOnError option to gatsby-plugin-sharp options
    
    * updated test snapshot to include "failOnError" default
    
    * added note about new option for gatsby-plugin-sharp
    
    * added failOnError to validation object
    joesanchezjr authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1da5926 View commit details
  2. chore(release): Publish

     - gatsby-plugin-sharp@2.6.42
     - gatsby-transformer-sqip@2.3.43
    vladar committed Oct 12, 2020
    Copy the full SHA
    b0a3906 View commit details
  3. chore(babel-preset-gatsby): fix broken link to optimize-hook-destruct…

    …uring (#27350)
    
    - previously it pointed to an actual package, however, there is no such
      package and so this link 404'd
      - looking through the blames, this seems to be a plugin implemented
        within preset-gatsby itself, not as a separate package
        - point to correct location there instead
        - would probably be good to have a separate package for it though!
    agilgur5 authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2ffc154 View commit details
  4. chore(deps): update dependency @types/lodash to ^4.14.162 (#27388)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    31b6b4a View commit details
  5. chore(deps): update dependency eslint-plugin-react to ^7.21.4 (#27389)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d92e368 View commit details
  6. fix(deps): update dependency prismjs to ^1.22.0 (#27391)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0f4a458 View commit details
  7. fix(deps): update minor and patch for gatsby-source-contentful (#27393)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5e51fed View commit details
  8. fix(deps): update minor and patch for gatsby-transformer-excel (#27394)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Oct 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3a3c3e7 View commit details

Commits on Oct 13, 2020

  1. fix(gatsby-plugin-postcss): Add required additional level of nesting …

    …for postcss-loader options. (#27418)
    richardxia authored Oct 13, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8756441 View commit details
  2. chore(release): Publish

     - babel-preset-gatsby@0.5.14
     - gatsby-admin@0.1.164
     - gatsby-plugin-postcss@3.0.2
     - gatsby-plugin-utils@0.2.29
     - gatsby-source-contentful@2.3.52
     - gatsby-transformer-excel@2.4.15
     - gatsby@2.24.75
    LekoArts committed Oct 13, 2020
    Copy the full SHA
    e2605d7 View commit details
Showing with 314 additions and 96 deletions.
  1. +2 −2 package.json
  2. +4 −0 packages/babel-preset-gatsby/CHANGELOG.md
  3. +1 −1 packages/babel-preset-gatsby/README.md
  4. +1 −1 packages/babel-preset-gatsby/package.json
  5. +4 −0 packages/gatsby-admin/CHANGELOG.md
  6. +2 −2 packages/gatsby-admin/package.json
  7. +6 −0 packages/gatsby-plugin-postcss/CHANGELOG.md
  8. +1 −1 packages/gatsby-plugin-postcss/package.json
  9. +108 −51 packages/gatsby-plugin-postcss/src/__tests__/__snapshots__/gatsby-node.test.js.snap
  10. +7 −4 packages/gatsby-plugin-postcss/src/gatsby-node.js
  11. +6 −0 packages/gatsby-plugin-sharp/CHANGELOG.md
  12. +5 −0 packages/gatsby-plugin-sharp/README.md
  13. +1 −1 packages/gatsby-plugin-sharp/package.json
  14. +25 −0 packages/gatsby-plugin-sharp/src/__tests__/__snapshots__/index.js.snap
  15. +1 −0 packages/gatsby-plugin-sharp/src/gatsby-node.js
  16. +1 −0 packages/gatsby-plugin-sharp/src/plugin-options.js
  17. +3 −1 packages/gatsby-plugin-sharp/src/process-file.js
  18. +4 −0 packages/gatsby-plugin-utils/CHANGELOG.md
  19. +2 −2 packages/gatsby-plugin-utils/package.json
  20. +6 −0 packages/gatsby-source-contentful/CHANGELOG.md
  21. +3 −3 packages/gatsby-source-contentful/package.json
  22. +6 −0 packages/gatsby-transformer-excel/CHANGELOG.md
  23. +2 −2 packages/gatsby-transformer-excel/package.json
  24. +4 −0 packages/gatsby-transformer-sqip/CHANGELOG.md
  25. +2 −2 packages/gatsby-transformer-sqip/package.json
  26. +4 −0 packages/gatsby/CHANGELOG.md
  27. +3 −3 packages/gatsby/package.json
  28. +3 −3 starters/blog/package-lock.json
  29. +1 −1 starters/blog/package.json
  30. +96 −16 yarn.lock
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
"@types/jaeger-client": "^3.15.4",
"@types/jest": "^24.9.1",
"@types/joi": "^14.3.4",
"@types/lodash": "^4.14.161",
"@types/lodash": "^4.14.162",
"@types/node": "^12.12.30",
"@types/node-fetch": "^2.5.7",
"@types/normalize-path": "^3.0.0",
@@ -45,7 +45,7 @@
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react": "^7.21.4",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"husky": "3.1.0",
4 changes: 4 additions & 0 deletions packages/babel-preset-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.

## [0.5.14](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@0.5.13...babel-preset-gatsby@0.5.14) (2020-10-13)

**Note:** Version bump only for package babel-preset-gatsby

## [0.5.13](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@0.5.12...babel-preset-gatsby@0.5.13) (2020-10-06)

**Note:** Version bump only for package babel-preset-gatsby
2 changes: 1 addition & 1 deletion packages/babel-preset-gatsby/README.md
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ For more information on how to customize the Babel configuration of your Gatsby
- [`babel-plugin-transform-react-remove-prop-types`](https://github.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types)
- [`@babel/plugin-proposal-nullish-coalescing-operator`](https://babeljs.io/docs/en/babel-plugin-proposal-nullish-coalescing-operator)
- [`@babel/plugin-proposal-optional-chaining`](https://babeljs.io/docs/en/babel-plugin-proposal-optional-chaining)
- [`babel-plugin-optimize-hook-destructuring`](https://www.github.com/gatsbyjs/gatsby/packages/babel-plugin-optimize-hook-destructring)
- [`babel-plugin-optimize-hook-destructuring`](src/optimize-hook-destructuring.ts)

## Usage

2 changes: 1 addition & 1 deletion packages/babel-preset-gatsby/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby",
"version": "0.5.13",
"version": "0.5.14",
"author": "Philipp Spiess <hello@philippspiess.com>",
"repository": {
"type": "git",
4 changes: 4 additions & 0 deletions packages/gatsby-admin/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.

## [0.1.164](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.1.163...gatsby-admin@0.1.164) (2020-10-13)

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

## [0.1.163](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.1.162...gatsby-admin@0.1.163) (2020-10-12)

**Note:** Version bump only for package gatsby-admin
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.1.163",
"version": "0.1.164",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
@@ -20,7 +20,7 @@
"@typescript-eslint/parser": "^2.34.0",
"csstype": "^2.6.13",
"formik": "^2.1.5",
"gatsby": "^2.24.74",
"gatsby": "^2.24.75",
"gatsby-interface": "^0.0.193",
"gatsby-plugin-typescript": "^2.4.21",
"gatsby-plugin-webfonts": "^1.1.3",
6 changes: 6 additions & 0 deletions packages/gatsby-plugin-postcss/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.

## [3.0.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@3.0.1...gatsby-plugin-postcss@3.0.2) (2020-10-13)

### Bug Fixes

- **gatsby-plugin-postcss:** Add required additional level of nesting for postcss-loader options. ([#27418](https://github.com/gatsbyjs/gatsby/issues/27418)) ([8756441](https://github.com/gatsbyjs/gatsby/commit/8756441819138e12c14460c8a4e5c3c28fe338b9))

## [3.0.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@3.0.0...gatsby-plugin-postcss@3.0.1) (2020-10-06)

**Note:** Version bump only for package gatsby-plugin-postcss
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-postcss/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-postcss",
"description": "Gatsby plugin to handle PostCSS",
"version": "3.0.1",
"version": "3.0.2",
"author": "Marat Dreizin <marat.dreizin@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Loading