Skip to content

Commit 3b8be2b

Browse files
Merge branch 'main' into corepath-debug
2 parents 161e783 + b4986bb commit 3b8be2b

File tree

17 files changed

+64
-33
lines changed

17 files changed

+64
-33
lines changed

.changeset/afraid-beers-invite.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

.changeset/slow-kings-enjoy.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changeset/smooth-glasses-obey.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/wild-mails-refuse.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# vercel
22

3+
## 35.0.0
4+
5+
### Major Changes
6+
7+
- [breaking] `vc logs` now returns runtime logs. Use `vc inspect --logs` and `vc deploy --logs` to get build logs ([#11788](https://github.com/vercel/vercel/pull/11788))
8+
9+
### Patch Changes
10+
11+
- Add download of diagnostics ([#11859](https://github.com/vercel/vercel/pull/11859))
12+
13+
- Updated dependencies [[`4c892f040`](https://github.com/vercel/vercel/commit/4c892f04014cf7b7bc662740296cae93fa93a3df), [`11e22746a`](https://github.com/vercel/vercel/commit/11e22746a54a3a17d860bfe32b7a9e885bd8e925)]:
14+
- @vercel/next@4.3.3
15+
- @vercel/redwood@2.1.1
16+
- @vercel/remix-builder@2.1.11
17+
- @vercel/node@3.2.4
18+
319
## 34.4.0
420

521
### Minor Changes

packages/cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vercel",
3-
"version": "34.4.0",
3+
"version": "35.0.0",
44
"preferGlobal": true,
55
"license": "Apache-2.0",
66
"description": "The command-line interface for Vercel",
@@ -36,11 +36,11 @@
3636
"@vercel/fun": "1.1.0",
3737
"@vercel/go": "3.1.1",
3838
"@vercel/hydrogen": "1.0.2",
39-
"@vercel/next": "4.3.2",
40-
"@vercel/node": "3.2.3",
39+
"@vercel/next": "4.3.3",
40+
"@vercel/node": "3.2.4",
4141
"@vercel/python": "4.3.0",
42-
"@vercel/redwood": "2.1.0",
43-
"@vercel/remix-builder": "2.1.10",
42+
"@vercel/redwood": "2.1.1",
43+
"@vercel/remix-builder": "2.1.11",
4444
"@vercel/ruby": "2.1.0",
4545
"@vercel/static-build": "2.5.14",
4646
"chokidar": "3.3.1"

packages/cli/src/commands/build/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import minimatch from 'minimatch';
66
import { join, normalize, relative, resolve, sep } from 'path';
77
import { frameworkList } from '@vercel/frameworks';
88
import {
9+
download,
910
getDiscontinuedNodeVersions,
1011
getInstalledPackageVersion,
1112
normalizePath,
@@ -587,6 +588,13 @@ async function doBuild(
587588
buildJsonBuild.error = toEnumerableError(err);
588589
}
589590
throw err;
591+
} finally {
592+
ops.push(
593+
download(diagnostics, join(outputDir, 'diagnostics')).then(
594+
() => undefined,
595+
err => err
596+
)
597+
);
590598
}
591599
}
592600

packages/next/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @vercel/next
22

3+
## 4.3.3
4+
5+
### Patch Changes
6+
7+
- fix glob path for next.js diagnostics ([#11859](https://github.com/vercel/vercel/pull/11859))
8+
9+
- Upgrade to @vercel/nft 0.27.3 with a bug fix for browser mapping support ([#11841](https://github.com/vercel/vercel/pull/11841))
10+
311
## 4.3.2
412

513
### Patch Changes

packages/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vercel/next",
3-
"version": "4.3.2",
3+
"version": "4.3.3",
44
"license": "Apache-2.0",
55
"main": "./dist/index",
66
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",

packages/next/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2749,7 +2749,7 @@ export const diagnostics: Diagnostics = async ({
27492749
return {
27502750
// Collect output in `.next/diagnostics`
27512751
...(await glob(
2752-
'diagnostics/*',
2752+
'*',
27532753
path.join(basePath, diagnosticsEntrypoint, outputDirectory, 'diagnostics')
27542754
)),
27552755
// Collect `.next/trace` file

0 commit comments

Comments
 (0)