Skip to content

Commit 19222bb

Browse files
authored
Merge branch 'canary' into fix-filesystem-cache
2 parents 63a23c3 + b04c705 commit 19222bb

48 files changed

Lines changed: 376 additions & 230 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: build-and-deploy
33
on:
44
push:
55
branches: ['canary']
6+
workflow_dispatch:
67

78
env:
89
NAPI_CLI_VERSION: 2.14.7
@@ -24,7 +25,7 @@ jobs:
2425
outputs:
2526
docsChange: ${{ steps.docs-change.outputs.DOCS_CHANGE }}
2627
codemodChange: ${{ steps.codemod-change.outputs.CODEMOD_CHANGE }}
27-
isRelease: ${{ steps.check-release.outputs.IS_RELEASE }}
28+
isRelease: ${{ github.event_name != 'workflow_dispatch' && steps.check-release.outputs.IS_RELEASE }}
2829
swcChange: ${{ steps.swc-change.outputs.SWC_CHANGE }}
2930
turboToken: ${{ steps.turbo-token.outputs.TURBO_TOKEN }}
3031
weekNum: ${{ steps.get-week.outputs.WEEK }}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"registry": "https://registry.npmjs.org/"
1717
}
1818
},
19-
"version": "13.4.5-canary.3"
19+
"version": "13.4.5-canary.6"
2020
}

packages/create-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-next-app",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"keywords": [
55
"react",
66
"next",

packages/eslint-config-next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-next",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"description": "ESLint configuration used by NextJS.",
55
"main": "index.js",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"directory": "packages/eslint-config-next"
1010
},
1111
"dependencies": {
12-
"@next/eslint-plugin-next": "13.4.5-canary.3",
12+
"@next/eslint-plugin-next": "13.4.5-canary.6",
1313
"@rushstack/eslint-patch": "^1.1.3",
1414
"@typescript-eslint/parser": "^5.42.0",
1515
"eslint-import-resolver-node": "^0.3.6",

packages/eslint-plugin-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/eslint-plugin-next",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"description": "ESLint plugin for NextJS.",
55
"main": "dist/index.js",
66
"license": "MIT",

packages/font/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/font",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"repository": {
55
"url": "vercel/next.js",
66
"directory": "packages/font"

packages/next-bundle-analyzer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/bundle-analyzer",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"license": "MIT",

packages/next-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/codemod",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

packages/next-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/env",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"keywords": [
55
"react",
66
"next",

packages/next-mdx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/mdx",
3-
"version": "13.4.5-canary.3",
3+
"version": "13.4.5-canary.6",
44
"main": "index.js",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)