Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update gatsby monorepo (major) #377

Merged
merged 1 commit into from May 27, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
babel-preset-gatsby 0.3.1 -> 1.6.0 age adoption passing confidence
gatsby (changelog) 2.20.17 -> 3.6.1 age adoption passing confidence
gatsby-image 2.3.2 -> 3.6.0 age adoption passing confidence
gatsby-plugin-emotion 4.2.1 -> 6.6.0 age adoption passing confidence
gatsby-plugin-manifest 2.3.3 -> 3.6.0 age adoption passing confidence
gatsby-plugin-react-helmet 3.2.2 -> 4.6.0 age adoption passing confidence
gatsby-plugin-sharp 2.5.4 -> 3.6.0 age adoption passing confidence
gatsby-source-filesystem 2.2.2 -> 3.6.0 age adoption passing confidence
gatsby-transformer-screenshot 2.2.1 -> 3.6.0 age adoption passing confidence
gatsby-transformer-sharp 2.4.4 -> 3.6.0 age adoption passing confidence
gatsby-transformer-yaml 2.3.1 -> 3.6.0 age adoption passing confidence

Release Notes

gatsbyjs/gatsby

v1.6.0

Compare Source

v1.5.0

Compare Source

v1.4.0

Compare Source

Added
Fixed

v1.3.0

Compare Source

Added
Fixed

v1.2.0

Compare Source

A few more days, another minor release 😎

Highlight of this release is @​felixjung adding support for hot reloading changes to site's html.js during development in #​1473

Beyond that, lots of bug fixes and small feature additions from the community!

Added
Fixed

v1.1.1

Compare Source

v1.1.0

Compare Source

Continuing our blistering development pace, in the five days since our initial 1.0.0 release there's been 44 merged PRs by 20 different authors. Thanks everyone!

Added
Fixed

v1.0.0

Compare Source

v0.12.3

Compare Source

Quick release to add this very nice UX improvement contributed by @​LukeSheard and borrowed from Create React App's similar feature: facebook/create-react-app#101

gatsbyjs/gatsby#371

v0.12.2

Compare Source

v0.12.1

Compare Source

v0.12.0

Compare Source

Gatsby now ships with richer support for images. Now you can "import" or "require" an image and use it within your React components and under the hood, the images will be automatically optimized.

import myImage from './my-image.jpg'

// in render function
<div>
  <h1>Hi friends!</h1>
  <img src={myImage} />
</div>

We're using the image-webpack-loader which uses the popular Imagemin project to minify your images.

There's future (responsive) image work planned! See gatsbyjs/gatsby#285 if you want to get involved.

Upgrade

This is marked as a breaking release as it could interfere with your Webpack config if you already have added image loader support.

If you have added custom image loaders already, to upgrade, in your modifyWebpackConfig function in gatsby-node.js add this line: config.removeLoader('images')

You'll also need to add image-webpack-loader to your site:

npm install --save-dev image-webpack-loader

Enjoy!

v0.11.0

Compare Source

The headliner of this release is you can now inline CSS in the <head> of your site. This is a best practice recommended by Google's AMP project among others as you then avoid additional requests which can signifcantly slow down your site. Testing using webpagetest.org showed that moving css inline improved the Speed Index 20-50%!! In one test on a simulated 3G connection, the time to initial render went from ~1.8 seconds to ~1 second.

It's a very simple switch to make. See this commit in the default starter gatsbyjs/gatsby-starter-default@1faecb5 It's also documented at https://github.com/gatsbyjs/gatsby#inline-css

Breaking changes
  • post-build.js moved inside gatsby-node.js. If you had added a post-build.js module to your code, this function should now be exported from gatsby-node.js. A simple way to make the change is to simply require post-build.js there e.g. exports.postBuild = require('./post-build'). Thanks to @​LukeSheard for this! #​273
  • The "stages" were renamed. If you override Webpack configs and are switching behavior based on the stage, static is split into two stages, build-css and build-html and production is now build-javascript. We think these are much more sensible names. Thanks to @​scottnonnenberg for the this! #​253
Other notable non-breaking changes

@​benstepp did a deep refactor of how we're loading Babel plugins. There shouldn't be any breaking changes but it fixes a number of bugs gatsbyjs/gatsby#279

Some highlights:

  • User can override the .babelrc passed to webpack.
  • User can use whatever babel plugins they want.
  • User babel config is extended with react-hmre rather than being overwritten in develop.js.
  • Object.assign is now polyfilled by default.
  • Non breaking change as starters previously required a babelrc and gatsby will just read them as normal.
  • Fixes three issues #​129, #​235, #​264

v0.10.0

Compare Source

Thanks to the efforts of @​patrykkopycinski, Gatsby now supports React 15. This should be an easy upgrade for most people as long as your current site is showing deprecation warnings in the console.log. gatsbyjs/gatsby#252

@​alampros also contributed a bug fix as he noticed that when setting the host option for gatsby develop and gatsby serve-build that the short version -h overrode the default help option. He changed that to -H so there would no longer be a conflict gatsbyjs/gatsby#247.

v0.9.1

Compare Source

New tests!

@​benstepp waded into the center of Gatsby and refactored one of the core functions AND setup a test framework AND added a number of tests. Awesome! gatsbyjs/gatsby#232

Bug fixes

Developer Experience (DX) improvements

Thanks everyone!

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

v0.7.0

Compare Source

Update to React 0.14

The big change for this release was updating React to 0.14. Thanks to @​patrykkopycinski for his PR!

We're still on the 0.13 series of React Router as their recent 1.0 release will require internal updates to Gatsby. Follow along at #​32 if interested.

gatsby serve now gatsby develop

Serve implied Gatsby was just serving up files. Develop conveys the idea better that you're starting up a full-fledged development server with the intent to start developing.

Can now do webpack requires in your html.jsx

Previously you couldn't do webpack requires in your html component as the development server was requiring the module in node context. But with the help of @​petehunt's webpack-require project, you can now require css or anything else you'd like in your html.jsx.

Improved support for prefixing site links e.g. when building for Github Pages.

See the documentation that's been added to the README.

How to upgrade

You'll need to update React in your project to React 0.14 as well as upgrade any React components that relied on older React APIs. Make sure to not install the latest react-router.

v0.6.0

Compare Source

Bug fix

v0.5.16

Compare Source

v0.5.15

Compare Source

v0.5.14

Compare Source

v0.5.13

Compare Source

v0.5.12

Compare Source

v0.5.11

Compare Source

v0.5.10

Compare Source

v0.5.9

Compare Source

v0.5.8

Compare Source

v0.5.7

Compare Source

v0.5.6

Compare Source

v0.5.5

Compare Source

v0.5.4

Compare Source

v0.5.3

Compare Source

v0.5.2

Compare Source

v0.5.1

Compare Source

v0.5.0

Compare Source

v0.4.12

Compare Source

v0.4.11

Compare Source

v0.4.10

Compare Source

v0.4.9

Compare Source

v0.4.8

Compare Source

v0.4.7

Compare Source

v0.4.6

Compare Source

v0.4.5

Compare Source

v0.4.4

Compare Source

v0.4.3

Compare Source

v0.4.2

Compare Source

v0.4.1

Compare Source

Gatsby previously was crashing when trying to copy assets in the post-build step where the asset was not in a directory with a page.

#​39

Fixed in gatsbyjs/gatsby@55fee06

v0.4.0

Compare Source

@​fson added SVG support to the Webpack config in #​34

v0.3.6

Compare Source

v0.3.5

Compare Source

v0.3.4

Compare Source

v0.3.3

Compare Source

v0.3.2

Compare Source


Configuration

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

🚦 Automerge: Enabled.

♻️ 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 force-pushed the renovate/major-gatsby-monorepo branch from 5169971 to d9a28d3 Compare December 15, 2020 18:01
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch from d9a28d3 to 929157d Compare January 5, 2021 20:22
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch from 929157d to e1a0624 Compare January 19, 2021 19:51
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch from e1a0624 to b7189cf Compare February 2, 2021 17:54
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 3 times, most recently from e443b86 to 6f5d117 Compare February 13, 2021 11:37
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 6 times, most recently from 942a909 to b0aacbe Compare March 2, 2021 11:05
@renovate renovate bot changed the title fix(deps): update dependency gatsby-plugin-emotion to v5 chore(deps): update gatsby monorepo (major) Mar 2, 2021
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 5 times, most recently from 1a7e2c4 to 62202ab Compare March 5, 2021 22:40
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 3 times, most recently from c80b0e8 to 22827da Compare March 16, 2021 19:44
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 4 times, most recently from 22683a6 to 9e9a209 Compare March 23, 2021 21:13
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 4 times, most recently from 3013e9d to c564d7c Compare March 24, 2021 16:20
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 7 times, most recently from a994a70 to 3676bea Compare April 2, 2021 08:08
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 2 times, most recently from 3eadc16 to a3993cc Compare April 13, 2021 20:23
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 3 times, most recently from 8cfc554 to 644a94d Compare April 26, 2021 02:36
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 3 times, most recently from dbcc624 to d0fc706 Compare April 30, 2021 03:30
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 5 times, most recently from d85bd46 to da7804f Compare May 11, 2021 03:43
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 3 times, most recently from 3a4e462 to 166aeb6 Compare May 13, 2021 11:21
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch 2 times, most recently from 92a13e2 to aa31562 Compare May 25, 2021 18:07
@renovate renovate bot force-pushed the renovate/major-gatsby-monorepo branch from aa31562 to 0c903e4 Compare May 27, 2021 14:14
@renovate renovate bot merged commit f0b03a5 into master May 27, 2021
@renovate renovate bot deleted the renovate/major-gatsby-monorepo branch May 27, 2021 14:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant