Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

fix(deps): update gatsby #11

Closed
wants to merge 1 commit into from
Closed

fix(deps): update gatsby #11

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 12, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/gatsby ^5.29.2 -> ^5.30.0 age adoption passing confidence
babel-preset-gatsby 0.5.9 -> 0.12.3 age adoption passing confidence
gatsby (changelog) ^2.24.57 -> ^2.32.13 age adoption passing confidence
gatsby-link ^2.4.13 -> ^2.11.0 age adoption passing confidence
gatsby-plugin-catch-links ^2.3.11 -> ^2.10.0 age adoption passing confidence
gatsby-plugin-feed ^2.5.11 -> ^2.13.1 age adoption passing confidence
gatsby-plugin-flow ^1.3.11 -> ^1.10.0 age adoption passing confidence
gatsby-plugin-google-gtag ^2.1.10 -> ^2.8.0 age adoption passing confidence
gatsby-plugin-manifest ^2.4.28 -> ^2.12.1 age adoption passing confidence
gatsby-plugin-offline ^3.2.27 -> ^3.10.2 age adoption passing confidence
gatsby-plugin-optimize-svgs ^1.0.4 -> ^1.0.5 age adoption passing confidence
gatsby-plugin-react-helmet ^3.3.10 -> ^3.10.0 age adoption passing confidence
gatsby-plugin-sass ^2.3.12 -> ^2.8.0 age adoption passing confidence
gatsby-plugin-sharp ^2.6.35 -> ^2.14.4 age adoption passing confidence
gatsby-plugin-sitemap ^2.4.12 -> ^2.12.0 age adoption passing confidence
gatsby-plugin-twitter ^2.3.12 -> ^2.10.0 age adoption passing confidence
gatsby-remark-autolink-headers ^2.3.12 -> ^2.11.0 age adoption passing confidence
gatsby-remark-copy-linked-files ^2.3.14 -> ^2.10.0 age adoption passing confidence
gatsby-remark-highlight-code (source) ^2.1.0 -> ^2.2.1 age adoption passing confidence
gatsby-remark-images ^3.3.29 -> ^3.11.1 age adoption passing confidence
gatsby-remark-katex ^3.3.11 -> ^3.10.0 age adoption passing confidence
gatsby-remark-prismjs ^3.5.11 -> ^3.13.0 age adoption passing confidence
gatsby-remark-responsive-iframe ^2.4.13 -> ^2.11.0 age adoption passing confidence
gatsby-remark-smartypants ^2.3.10 -> ^2.10.0 age adoption passing confidence
gatsby-source-filesystem ^2.3.29 -> ^2.11.1 age adoption passing confidence
gatsby-transformer-remark ^2.8.35 -> ^2.16.1 age adoption passing confidence
gatsby-transformer-sharp ^2.5.14 -> ^2.12.1 age adoption passing confidence

Release Notes

getsentry/sentry-javascript

v5.30.0

Compare Source

  • [node] fix: esbuild warning dynamic require (#​3164)
  • [tracing] ref: Expose required things for React Native auto tracing (#​3144)
  • [ember] fix: rootURL breaking route recognition (#​3166)
  • [serverless] feat: Zip serverless dependencies for AWS Lambda (#​3110)
  • [build] feat: Target to deploy on AWS Lambda (#​3165)
  • [build] ref: Remove TravisCI (#​3149)
  • [build] ref: Upgrade action-prepare-release to latest version
gatsbyjs/gatsby

v0.12.3

Compare Source

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

v0.12.2

Compare Source

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

v0.12.1

Compare Source

Bug Fixes

v0.12.0

Compare Source

🧾 Release notes

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

v0.11.0

Compare Source

🧾 Release notes

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

v0.10.0

Compare Source

🧾 Release notes

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

0.9.1 (2020-12-23)

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

v0.9.1

Compare Source

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

v0.9.0

Compare Source

Another release with two nice DX improvements.

Also we hit 2500 stars as I was writing this review 🎉

Babel 6

Gatsby started its life on Babel 5 but Babel 6 is out and stable so we'll upgrade along with the rest of the ecosystem and take advantage of its improved performance and awesome new plugin api.

Gatsby must now be installed as a dependency of the site

The global Gatsby install now defers to the local install of Gatsby (and throws if it can't find one). This means you can build a site and not worry about needing to upgrade it again as Gatsby accumulates breaking changes. This also helps ensure Gatsby works in environments where you don't want a global install e.g. build servers.

Upgrade instructions
  • Install Gatsby — npm install --save gatsby
  • Install new Babel 6 dependencies (they must be installed locally) — npm install --save babel-plugin-add-module-exports babel-preset-es2015 babel-preset-react babel-preset-stage-1 and npm install --save-dev babel-preset-react-hmre.
  • Uninstall old Babel 5 dependencies (if you added any).
  • The link function from gatsby-helpers.js was renamed to prefixLink to clarify its purpose.
  • Your .babelrc file needs to be upgraded to look like:
{
  "presets": ['react', 'es2015', 'stage-1'],
  "plugins": ['add-module-exports']
}
  • If you modified the default Webpack config in gatsby.config.js, this functionality is now moved to gatsby-node.js and instead of using module.exports, export your config modification function as modifyWebpackConfig. See the updated instructions in the README.
  • If you were differentiating between pages with content (like .md files) and pages without (like pages/profile.js) by looking for truthy page.data, you'll now need check for truthy page.data.body.
  • If your site is under version control, you might want to ignore the new auto-written module .gatsby-context.js.
  • rare if you used the rewritePath, onRouteChange hooks in your app.js — app.js is now not supported. Instead you should export rewritePath in gatsby-node.js and onRouteChange in gatsby-browser.js. The function signatures didn't change. These new files will be gaining more functionality in future releases.

That's it! See you in the issue queues :-)

v0.8.0

Compare Source

🧾 Release notes

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

v0.7.0

Compare Source

🧾 Release notes

Chores

v0.6.0

Compare Source

🧾 Release notes

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

v0.5.16

Compare Source

v0.5.15

Compare Source

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

v0.5.14

Compare Source

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

v0.5.13

Compare Source

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

v0.5.12

Compare Source

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

v0.5.11

Compare Source

v0.5.10

Compare Source

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

vzhou842/gatsby-plugin-optimize-svgs

v1.0.5

Compare Source

deckgo/gatsby-remark-highlight-code

v2.2.1

Compare Source

Fix
  • syntax highlighting for languages other than javascript
  • empty language default to no attribute language

v2.2.0

Compare Source

Features
  • support for lines highlighting (#​28)
  • bump @deckdeckgo/highlight-code peer dependency requirement to v2.4.0

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the renovate label Jan 12, 2021
@renovate renovate bot force-pushed the renovate/gatsby branch 3 times, most recently from 1379743 to 55df1b3 Compare January 13, 2021 12:42
@renovate renovate bot changed the title chore(deps): update gatsby fix(deps): update gatsby Jan 13, 2021
@renovate renovate bot force-pushed the renovate/gatsby branch 7 times, most recently from 372e8b4 to 2741961 Compare January 21, 2021 18:27
@renovate renovate bot force-pushed the renovate/gatsby branch 3 times, most recently from 32e3667 to fe0e0cf Compare January 29, 2021 17:40
@renovate renovate bot force-pushed the renovate/gatsby branch 5 times, most recently from 2175d8e to 06d1428 Compare February 5, 2021 19:19
@renovate renovate bot force-pushed the renovate/gatsby branch 4 times, most recently from 744c233 to 34d9f9e Compare February 24, 2021 15:57
@renovate renovate bot force-pushed the renovate/gatsby branch 4 times, most recently from 9cb846e to 65ae95b Compare March 1, 2021 18:53
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from bdb5c67 to e3bd620 Compare March 9, 2021 23:10
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from 919313d to e713dfa Compare May 1, 2021 08:28
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
2 participants