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

Beta release prep #1180

Merged
merged 4 commits into from
Jun 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Change Log

## [1.0.0-beta.1] - 2017-06-15

Our first beta!!! 🎉

### Added
* Allow for gatsby-remark-smartypants options #1166 @mitchejj
* New design (for gatsbyjs.org) + new home page #1170 @kyleamathews
* Add ability to locally define plugins #1126 @0x80
* Add rough draft for docs for creating source plugins #1159 @kyleamathews
* Optimizations around prefetching page resources #1133 @kyleamathews
* Redux example site #1081 @scottyeck
* Sitemap Generator Plugin #1115 @nicholaswyoung
* Add documentation to gatsby-remark-prism @kyleamathews

### Changed
* Move all filter operators for connections under a top-level "filter" field #1177 @kyleamathews
* Change `linkPrefix` to `pathPrefix` and add an example site #1155 @kyleamathews
* Make the plugin options for remark plugins the second argument (like everywhere else) #1167 @kyleamathews
* Start using next instead of canary in example sites for package versions @kyleamathews

### Fixed
* Fix graphql compiler on typescript #949 @fabien0102
* Replace react.createClass with ES6 classes in exmaples html.js, add PropTypes #1169 @abachuk
* Fix windows build issue #1158 @kyleamathews
* Use custom delimiter when flattening example values for enum fields so easy to convert back @kyleamathews
* gatsby-remark-responsive-images: use span instead of div #1151 @rstacruz
* Add check that we can actually find a linked image file node @kyleamathews
* Ignore SVGs in gatsby-remark-responsive-image #1157 @fk
* Replace using levelup for caching with lowdb to avoid native dependency #1142 @kyleamathews
* Fix Appveyor bug regarding build all examples on release #1118 @jbolda


## [1.0.0-alpha20] - 2017-06-05

### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial/part-one.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Now type `cat package.json` and you should see that `gatsby` and `gatsby-link` a
"author": "",
"license": "ISC",
"dependencies": {
"gatsby": "^1.0.0-alpha19",
"gatsby-link": "^1.0.0-alpha16"
"gatsby": "^1.0.0-beta.1",
"gatsby-link": "^1.0.0-beta.1"
}
}
```
Expand Down
10 changes: 5 additions & 5 deletions examples/client-only-paths/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-source-drupal": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-source-drupal": "next",
"lodash": "^4.16.4",
"react-addons-css-transition-group": "^15.5.2",
"react-typography": "^0.15.0",
Expand Down
8 changes: 4 additions & 4 deletions examples/feed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"version": "1.0.0",
"author": "Nicholas Young <nicholas@nicholaswyoung.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-source-filesystem": "canary",
"gatsby-transformer-remark": "canary",
"gatsby-plugin-feed": "canary"
"gatsby": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-remark": "next",
"gatsby-plugin-feed": "next"
},
"keywords": [
"gatsby"
Expand Down
20 changes: 10 additions & 10 deletions examples/gatsbygram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-glamor": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-manifest": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-plugin-sharp": "canary",
"gatsby-source-filesystem": "canary",
"gatsby-transformer-json": "canary",
"gatsby-transformer-sharp": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-glamor": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-sharp": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-json": "next",
"gatsby-transformer-sharp": "next",
"instagram-screen-scrape": "^2.0.0",
"lodash": "^4.16.4",
"mkdirp": "^0.5.1",
Expand Down
12 changes: 6 additions & 6 deletions examples/hn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"flat": "^2.0.1",
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-manifest": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-source-hacker-news": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-offline": "next",
"gatsby-source-hacker-news": "next",
"lodash": "^4.16.4",
"slash": "^1.0.0"
},
Expand Down
16 changes: 8 additions & 8 deletions examples/image-processing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-plugin-sharp": "canary",
"gatsby-source-drupal": "canary",
"gatsby-source-filesystem": "canary",
"gatsby-transformer-sharp": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-sharp": "next",
"gatsby-source-drupal": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-sharp": "next",
"react-typography": "^0.15.0",
"typography": "^0.15.8",
"typography-theme-bootstrap": "^0.15.10"
Expand Down
4 changes: 2 additions & 2 deletions examples/no-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"version": "1.0.0",
"author": "Scotty Eckenthal <scott.eckenthal@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby": "next",
"gatsby-link": "next",
"lodash": "^4.16.4",
"slash": "^1.0.0"
},
Expand Down
8 changes: 4 additions & 4 deletions examples/no-trailing-slashes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"version": "1.0.0",
"author": "Scotty Eckenthal <scott.eckenthal@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"lodash": "^4.16.4",
"slash": "^1.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"version": "1.0.0",
"author": "Scotty Eckenthal <scott.eckenthal@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby": "next",
"gatsby-link": "next",
"lodash": "^4.16.4",
"react-redux": "5.0.5",
"react-router-redux": "4.0.8",
Expand Down
8 changes: 4 additions & 4 deletions examples/sitemap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"version": "1.0.0",
"author": "Nicholas Young <nicholas@nicholaswyoung.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-source-filesystem": "canary",
"gatsby-transformer-remark": "canary",
"gatsby-plugin-sitemap": "canary"
"gatsby": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-remark": "next",
"gatsby-plugin-sitemap": "next"
},
"keywords": [
"gatsby"
Expand Down
10 changes: 5 additions & 5 deletions examples/using-contentful/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "1.0.0",
"author": "Marcus Ericsson <mericsson@gmail.com> (mericsson.com)",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-source-contentful": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-source-contentful": "next",
"lodash": "^4.16.4",
"react-typography": "^0.15.0",
"slash": "^1.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/using-drupal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-source-drupal": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-source-drupal": "next",
"lodash": "^4.16.4",
"react-typography": "^0.15.0",
"slash": "^1.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/using-glamor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-plugin-glamor": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-glamor": "next",
"lodash": "^4.16.4",
"react-typography": "^0.15.0",
"slash": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/using-page-loading-indicator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Gatsby example site using using-page-loading-indicator",
"author": "Kyle Mathews<mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-nprogress": "^0.2.0"
},
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions examples/using-path-prefix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Gatsby example site using using-path-prefix",
"author": "Kyle Mathews &lt;mathews.kyle@gmail.com&gt;",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary"
"gatsby": "next",
"gatsby-link": "next"
},
"license": "MIT",
"main": "n/a",
Expand Down
10 changes: 5 additions & 5 deletions examples/using-postcss-sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"license": "MIT",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-plugin-postcss-sass": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-postcss-sass": "next",
"lost": "^8.0.0",
"react-typography": "^0.15.10",
"typography": "^0.15.10"
Expand Down
10 changes: 5 additions & 5 deletions examples/using-styled-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"version": "1.0.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"dependencies": {
"gatsby": "canary",
"gatsby-link": "canary",
"gatsby-plugin-google-analytics": "canary",
"gatsby-plugin-offline": "canary",
"gatsby-plugin-styled-components": "canary",
"gatsby": "next",
"gatsby-link": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-styled-components": "next",
"lodash": "^4.16.4",
"react-typography": "^0.15.0",
"slash": "^1.0.0",
Expand Down
Loading