Skip to content

Commit 0149782

Browse files
Merge branch 'canary' into zt/upgrade-react
2 parents 7e9a2fe + 12e8881 commit 0149782

File tree

25 files changed

+64
-218
lines changed

25 files changed

+64
-218
lines changed

.github/workflows/issue_validator.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Nissuer
21-
uses: balazsorban44/nissuer@1.3.5
21+
uses: balazsorban44/nissuer@1.4.0
2222
with:
2323
label-area-prefix: 'area:'
2424
label-area-section: 'Which area\(s\) are affected\? \(Select all that apply\)(.*)### Additional context'
@@ -32,3 +32,4 @@ jobs:
3232
reproduction-hosts: 'github.com,codesandbox.io'
3333
reproduction-link-section: '### Link to the code that reproduces this issue(.*)### To Reproduce'
3434
reproduction-invalid-label: 'invalid link'
35+
reproduction-issue-labels: 'template: bug'

Cargo.lock

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ swc_core = { version = "0.83.12", features = [
4545
testing = { version = "0.34.1" }
4646

4747
# Turbo crates
48-
turbopack-binding = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230917.1" }
48+
turbopack-binding = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230918.2" }
4949
# [TODO]: need to refactor embed_directory! macro usages, as well as resolving turbo_tasks::function, macros..
50-
turbo-tasks = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230917.1" }
50+
turbo-tasks = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230918.2" }
5151
# [TODO]: need to refactor embed_directory! macro usage in next-core
52-
turbo-tasks-fs = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230917.1" }
52+
turbo-tasks-fs = { git = "https://github.com/vercel/turbo.git", tag = "turbopack-230918.2" }
5353

5454
# General Deps
5555

docs/02-app/02-api-reference/05-next-config-js/optimizePackageImports.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ description:
77

88
Some packages can export hundreds or thousands of modules, which can cause performance issues in development and production.
99

10-
Adding a package to `optimizePackageImports` will only load the modules you are actually using, while still giving you the convenience of writing import statements with many named exports.
10+
Adding a package to `experimental.optimizePackageImports` will only load the modules you are actually using, while still giving you the convenience of writing import statements with many named exports.
1111

1212
```js filename="next.config.js"
1313
module.exports = {
14-
optimizePackageImports: ['package-name'],
14+
experimental: {
15+
optimizePackageImports: ['package-name'],
16+
},
1517
}
1618
```
1719

docs/03-pages/01-building-your-application/06-configuring/12-error-handling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This documentation explains how you can handle development, server-side, and cli
77

88
## Handling Errors in Development
99

10-
When there is a runtime error during the development phase of your Next.js application, you will encounter an **overlay**. It is a modal that covers the webpage. It is **only** visible when the development server runs using `next dev` via `pnpm dev`, `npm run dev`, `yarn dev`, or `bun run dev` and will not be shown in production. Fixing the error will automatically dismiss the overlay.
10+
When there is a runtime error during the development phase of your Next.js application, you will encounter an **overlay**. It is a modal that covers the webpage. It is **only** visible when the development server runs using `next dev` via `pnpm dev`, `npm run dev`, `yarn dev`, or `bun dev` and will not be shown in production. Fixing the error will automatically dismiss the overlay.
1111

1212
Here is an example of an overlay:
1313

examples/with-fauna/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"classnames": "2.3.1",
1111
"date-fns": "2.28.0",
1212
"faunadb": "4.5.4",
13-
"graphql": "16.5.0",
13+
"graphql": "16.8.1",
1414
"graphql-request": "4.3.0",
1515
"next": "latest",
1616
"react": "18.1.0",

0 commit comments

Comments
 (0)