Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gatsbyjs/gatsby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: gatsby@2.24.26
Choose a base ref
...
head repository: gatsbyjs/gatsby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: gatsby@2.24.27
Choose a head ref
  • 11 commits
  • 117 files changed
  • 13 contributors

Commits on Aug 4, 2020

  1. 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>
    3 people authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0053d24 View commit details
  2. 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. 😊
    SachiraChin authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ea13a3a View commit details
  3. fix(starters): update starters and examples (#25547)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    70698c2 View commit details
  4. fix(docs): correct ESLint plugin name (#26216)

    `gatsby-eslint-plugin` -> `gatsby-plugin-eslint` 👍
    dbgb authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9aecfca View commit details
  5. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a8343de View commit details
  6. 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>
    3 people authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    39a4577 View commit details
  7. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3d524df View commit details
  8. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    93e1ebd View commit details
  9. fix links 404 (#26224)

    muescha authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3fef89f View commit details
  10. 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>
    mgienow and gatsbybot authored Aug 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    62df472 View commit details
  11. chore(release): Publish

     - gatsby-admin@0.1.116
     - gatsby-cli@2.12.72
     - gatsby-recipes@0.2.2
     - gatsby@2.24.27
    wardpeet committed Aug 4, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    a33e1f9 View commit details
Loading