Skip to content

Commit

Permalink
Merge branch 'master' into renovate/typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Jul 28, 2022
2 parents 715b9bd + 483d18e commit 64863b9
Show file tree
Hide file tree
Showing 564 changed files with 23,750 additions and 19,634 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Expand Up @@ -320,6 +320,13 @@ jobs:
test_path: integration-tests/functions
test_command: yarn test

integration_tests_head_function_export:
executor: node
steps:
- e2e-test:
test_path: integration-tests/head-function-export
test_command: yarn test

e2e_tests_path-prefix:
<<: *e2e-executor
environment:
Expand Down Expand Up @@ -626,6 +633,8 @@ workflows:
<<: *e2e-test-workflow
- integration_tests_functions:
<<: *e2e-test-workflow
- integration_tests_head_function_export:
<<: *e2e-test-workflow
- integration_tests_gatsby_cli:
requires:
- bootstrap
Expand Down
9 changes: 8 additions & 1 deletion .github/ISSUE_TEMPLATE/BUG_REPORT.yml
Expand Up @@ -37,7 +37,14 @@ body:
attributes:
label: Reproduction Link
placeholder: "https://github.com/username/repository-name/"
description: "Link to a reproduction (GitHub repository, Codesandbox, etc.). **Do not link to your actual project**, but provide a minimal reproduction in a fresh project -- how to make a minimal reproduction: https://gatsby.dev/reproduction"
description: |
Link to a minimal reproduction (GitHub repository, CodeSandbox, StackBlitz, etc.).
**Do not link to your actual project**, but provide a minimal reproduction in a fresh project — how to make a minimal reproduction: https://gatsby.dev/reproduction
You can use these links to quickly set up a new reproduction:
- CodeSandbox: https://githubbox.com/gatsbyjs/gatsby-starter-minimal
- StackBlitz: https://githubblitz.com/gatsbyjs/gatsby-starter-minimal
validations:
required: true
- type: textarea
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1 @@
packages/gatsby/src/utils/source-nodes-api-runner.ts @gatsbyjs/integrations-collaboration
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@4.19.0/packages/gatsby-plugin-remove-trailing-slashes) (2022-07-19)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.19)

**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes

## [4.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@4.18.0/packages/gatsby-plugin-remove-trailing-slashes) (2022-07-05)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.18)

**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes

## [4.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@4.17.0/packages/gatsby-plugin-remove-trailing-slashes) (2022-06-21)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.17)

**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes

## [4.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@4.16.0/packages/gatsby-plugin-remove-trailing-slashes) (2022-06-07)

[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.16)
Expand Down
@@ -1,6 +1,6 @@
# gatsby-plugin-remove-trailing-slashes

**Please Note:** This plugin will soon be **deprecated**, please use Gatsby's `trailingSlash` option. Read the [documentation](https://gatsby.dev/trailing-slash) to learn more.
**Please Note:** This plugin is **deprecated**, please use Gatsby's `trailingSlash` option. Read the [documentation](https://gatsby.dev/trailing-slash) to learn more.

This plugin removes trailing slashes from your project's paths. For
example, `yoursite.com/about/` becomes `yoursite.com/about`.
Expand Down
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-remove-trailing-slashes",
"description": "Removes trailing slashes from your project's paths. For example, yoursite.com/about/ becomes yoursite.com/about",
"version": "4.19.0-next.0",
"version": "4.20.0-next.0",
"author": "scott.eckenthal@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
Expand All @@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^2.19.0-next.0",
"babel-preset-gatsby-package": "^2.20.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes#readme",
Expand Down
8 changes: 5 additions & 3 deletions docs/contributing/how-to-make-a-reproducible-test-case.md
Expand Up @@ -21,10 +21,12 @@ A reproducible test case is a great way to share a specific environment that cau
- Add the code needed to recreate the error you've seen.
- Publish the code (your GitHub account is a good place to do this) and then link to it when [creating an issue](/contributing/how-to-file-an-issue/).

## Places to develop a reproducible test case
## Online Development Environments

- Locally with a starter: You can start with a starter locally and then build it on your own machine. Gatsby's official [`gatsby-starter-minimal`](https://github.com/gatsbyjs/gatsby-starter-minimal) is a good foundation for a reproducible test case.
- Host on CodeSandbox: You can develop a Gatsby site straight from your browser with CodeSandbox using their [Gatsby template](https://codesandbox.io/s/github/gatsbyjs/gatsby-starter-default). CodeSandbox also hosts your site automatically, which can be useful to demonstrate the behavior of your site.
Instead of cloning `gatsby-starter-minimal` to your local computer and working on it there, you can also use Online IDEs that set up the environment for you. Available options:

- [CodeSandbox](https://githubbox.com/gatsbyjs/gatsby-starter-minimal)
- [StackBlitz](https://githubblitz.com/gatsbyjs/gatsby-starter-minimal)

## Benefits of reproducible test cases

Expand Down
4 changes: 4 additions & 0 deletions docs/contributing/rfc-process.md
Expand Up @@ -48,6 +48,10 @@ In short, to get a major feature added to Gatsby, one usually first puts up a Di

<!-- When defining a canary for installation, tell users to use `--save-exact` (npm) or `--exact` (yarn) flag. -->

### CodeSandbox

Provide an up-to-date CodeSandbox with an example project using the canary. Users can use this project to provide minimal reproductions.

## Basic example

If the proposal involves a new or changed API, include a basic code example.
Expand Down
30 changes: 0 additions & 30 deletions docs/docs/add-a-service-worker.md

This file was deleted.

54 changes: 0 additions & 54 deletions docs/docs/add-page-metadata.md

This file was deleted.

0 comments on commit 64863b9

Please sign in to comment.