-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Comparing changes
Open a pull request
base repository: gatsbyjs/gatsby
base: gatsby@2.24.26
head repository: gatsbyjs/gatsby
compare: gatsby@2.24.27
- 11 commits
- 117 files changed
- 13 contributors
Commits on Aug 4, 2020
-
feat(gatsby-recipes): add sitemetadata provider (#26160)
* feat(gatsby-recipes): add sitemetadata provider * Fix format of sitemetadata provider * Make setting sitemetadata fields work * Fix falsy values * Fix non-existant sitemetadata erroring out * Rename and cleanup filename * Add e2e test, handle other JSON parsing edge cases Co-authored-by: John Otander <johnotander@gmail.com> Co-authored-by: gatsbybot <mathews.kyle+gatsbybot@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0053d24 - Browse repository at this point
Copy the full SHA 0053d24View commit details -
Fixed precondition where it adds perma cache to .json files (#26210)
I've deployed my gatsby site with this web.config with few changes and noticed that `.json` files in other locations are getting cached. Culprit for that was this line, ```xml <add input="{REQUEST_FILENAME}" pattern="(.*\.js)|(.*\.css)" /> ``` Since this regex does not detect end of line, it take `.json` files also as `.js` and add permanent cache header to it. Fix for it is add tracking end of line to `IsCachePermanentlyFile` pre-condition like this, ``` <add input="{REQUEST_FILENAME}" pattern="((.*\.js)|(.*\.css))$" /> ``` Suggesting to fix this for future users like me. 😊
Configuration menu - View commit details
-
Copy full SHA for ea13a3a - Browse repository at this point
Copy the full SHA ea13a3aView commit details -
fix(starters): update starters and examples (#25547)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Configuration menu - View commit details
-
Copy full SHA for 70698c2 - Browse repository at this point
Copy the full SHA 70698c2View commit details -
fix(docs): correct ESLint plugin name (#26216)
`gatsby-eslint-plugin` -> `gatsby-plugin-eslint` 👍
Configuration menu - View commit details
-
Copy full SHA for 9aecfca - Browse repository at this point
Copy the full SHA 9aecfcaView commit details -
Configuration menu - View commit details
-
Copy full SHA for a8343de - Browse repository at this point
Copy the full SHA a8343deView commit details -
Create blog post for Recipes Alpha II launch (#26145)
* Create index.md * chore: format * Adjust formatting, fix NPM -> npm * chore: format * add code fencing * fix language * chore: format * mdx => MDX * Update and rename docs/blog/2020-07-30-Announcing-Gatsby-Recipes-Alpha-2/index.md to docs/blog/2020-07-31-Announcing-Gatsby-Recipes-Alpha-2/index.md * Rename docs/blog/2020-07-31-Announcing-Gatsby-Recipes-Alpha-2/index.md to docs/blog/2020-08-03-Announcing-Gatsby-Recipes-Alpha-2/index.md * adjust verb tense * Change date, shorten links Change frontmatter and filename to reflect new run date Shorten local links Co-authored-by: gatsbybot <mathews.kyle+gatsbybot@gmail.com> Co-authored-by: Kyle Mathews <mathews.kyle@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 39a4577 - Browse repository at this point
Copy the full SHA 39a4577View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d524df - Browse repository at this point
Copy the full SHA 3d524dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93e1ebd - Browse repository at this point
Copy the full SHA 93e1ebdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fef89f - Browse repository at this point
Copy the full SHA 3fef89fView commit details -
Add blog post for Community Permissions Changes (#26223)
* Add blog post for Community Permissions Changes * chore: format * Update index.md * Add Forem to dictionary.txt * Add "pm" to dictionary.txt * update spelling of "résumé" Co-authored-by: gatsbybot <mathews.kyle+gatsbybot@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 62df472 - Browse repository at this point
Copy the full SHA 62df472View commit details -
- gatsby-admin@0.1.116 - gatsby-cli@2.12.72 - gatsby-recipes@0.2.2 - gatsby@2.24.27
Configuration menu - View commit details
-
Copy full SHA for a33e1f9 - Browse repository at this point
Copy the full SHA a33e1f9View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff gatsby@2.24.26...gatsby@2.24.27