Skip to content

Releases: gatsbyjs/gatsby

Now using React 0.14!

22 Nov 01:34
Compare
Choose a tag to compare

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.

require('babel/register') doesn't work when installed globally

04 Oct 02:18
Compare
Choose a tag to compare

Hopefully this will be fixed soon.

Reported by @luandro at #54

Babel bug report at babel/babel#1889

v0.6.0

03 Oct 20:53
Compare
Choose a tag to compare

Bug fix

  • Previously Gatsby was compiling the production bundle.js with source-maps inlined. @fson noticed this and wrote a PR to fix this which reduced bundle.js size by 3x! #48

Fix for asset copying bug

22 Sep 16:02
Compare
Choose a tag to compare

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 55fee06

Support SVG

15 Sep 00:35
Compare
Choose a tag to compare

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

Fully support ES6 and babel

11 Sep 17:20
Compare
Choose a tag to compare

@gesposito fixed up Gatsby's support for Babel in #31 as well as converting the starter blog to ES6

Thanks!

Fix path error on builds for non-index pages

04 Sep 16:58
Compare
Choose a tag to compare

Fix "Cannot find module" error"

23 Jul 15:31
Compare
Choose a tag to compare

Bugs fixed:

  • #11 Error: Cannot find module '../lib/utils/init-starter' on second step of tutorial

0.2.0

22 Jul 21:51
Compare
Choose a tag to compare

First somewhat stable public release

Features added:

  • Install pre-built starter sites from Github.
  • Support adding link prefixes e.g. for Github sites.
  • Added two demo/starter sites, a blog and documentation site
  • Added two helper functions for auto-prefixing links and for finding the child pages for a template.