Version Packages (#10384)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Vercel Release Bot
2023-08-24 14:56:29 -04:00
committed by GitHub
parent f06776468f
commit cfc1bb180b
24 changed files with 86 additions and 59 deletions

View File

@@ -1,6 +0,0 @@
---
"@vercel/next": patch
"api": patch
---
fix RSC matching behavior & 404 status code on `fallback: false`

View File

@@ -1,5 +0,0 @@
---
'vercel': patch
---
Remove use of mri preferring use of arg package

View File

@@ -1,7 +0,0 @@
---
"vercel": patch
"@vercel/edge": patch
"@vercel/node": patch
---
upgrade edge-runtime

View File

@@ -1,5 +0,0 @@
---
"@vercel/next": patch
---
Add handling to leverage RSC prefetch outputs

View File

@@ -1,5 +0,0 @@
---
'vercel': patch
---
Update dns commands to new structure

View File

@@ -1,5 +0,0 @@
---
"@vercel/node": patch
---
use `undici` instead of `node-fetch`

View File

@@ -1,5 +0,0 @@
---
'@vercel/remix-builder': patch
---
Update `@remix-run/dev` fork to v1.19.3

7
api/CHANGELOG.md Normal file
View File

@@ -0,0 +1,7 @@
# api
## 0.0.1
### Patch Changes
- fix RSC matching behavior & 404 status code on `fallback: false` ([#10388](https://github.com/vercel/vercel/pull/10388))

View File

@@ -1,7 +1,7 @@
{
"name": "api",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"description": "API for the vercel/vercel repo",
"main": "index.js",
"scripts": {},

View File

@@ -1,5 +1,21 @@
# vercel
## 32.0.2
### Patch Changes
- Remove use of mri preferring use of arg package ([#10389](https://github.com/vercel/vercel/pull/10389))
- upgrade edge-runtime ([#10385](https://github.com/vercel/vercel/pull/10385))
- Update dns commands to new structure ([#10379](https://github.com/vercel/vercel/pull/10379))
- Updated dependencies [[`09446a8fe`](https://github.com/vercel/vercel/commit/09446a8fe8b8201dbe3ead3ca645ef0aa1833b6b), [`597a8a817`](https://github.com/vercel/vercel/commit/597a8a81764c39e70c65b98e78bf4c3827a779a7), [`442232686`](https://github.com/vercel/vercel/commit/44223268651f1bbd5c6f2b0b315239685dd5716e), [`3f6d99470`](https://github.com/vercel/vercel/commit/3f6d99470db86681e006d66507f32afcea086b41), [`37e93a91a`](https://github.com/vercel/vercel/commit/37e93a91a8659934eac7f5cd441b310511bf5646)]:
- @vercel/next@4.0.1
- @vercel/node@3.0.2
- @vercel/remix-builder@2.0.1
- @vercel/static-build@2.0.2
## 32.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "vercel",
"version": "32.0.1",
"version": "32.0.2",
"preferGlobal": true,
"license": "Apache-2.0",
"description": "The command-line interface for Vercel",
@@ -34,13 +34,13 @@
"@vercel/build-utils": "7.0.0",
"@vercel/go": "3.0.0",
"@vercel/hydrogen": "1.0.0",
"@vercel/next": "4.0.0",
"@vercel/node": "3.0.1",
"@vercel/next": "4.0.1",
"@vercel/node": "3.0.2",
"@vercel/python": "4.0.0",
"@vercel/redwood": "2.0.0",
"@vercel/remix-builder": "2.0.0",
"@vercel/remix-builder": "2.0.1",
"@vercel/ruby": "2.0.0",
"@vercel/static-build": "2.0.1"
"@vercel/static-build": "2.0.2"
},
"devDependencies": {
"@alex_neo/jest-expect-message": "1.0.5",

View File

@@ -1,5 +1,11 @@
# @vercel/edge
## 1.0.1
### Patch Changes
- upgrade edge-runtime ([#10385](https://github.com/vercel/vercel/pull/10385))
## 1.0.0
### Major Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/edge",
"version": "1.0.0",
"version": "1.0.1",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",

View File

@@ -1,5 +1,12 @@
# @vercel/gatsby-plugin-vercel-builder
## 2.0.2
### Patch Changes
- Updated dependencies [[`597a8a817`](https://github.com/vercel/vercel/commit/597a8a81764c39e70c65b98e78bf4c3827a779a7), [`3f6d99470`](https://github.com/vercel/vercel/commit/3f6d99470db86681e006d66507f32afcea086b41)]:
- @vercel/node@3.0.2
## 2.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/gatsby-plugin-vercel-builder",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/index.js",
"files": [
"dist",
@@ -21,7 +21,7 @@
"dependencies": {
"@sinclair/typebox": "0.25.24",
"@vercel/build-utils": "7.0.0",
"@vercel/node": "3.0.1",
"@vercel/node": "3.0.2",
"@vercel/routing-utils": "3.0.0",
"esbuild": "0.14.47",
"etag": "1.8.1",

View File

@@ -1,5 +1,13 @@
# @vercel/next
## 4.0.1
### Patch Changes
- fix RSC matching behavior & 404 status code on `fallback: false` ([#10388](https://github.com/vercel/vercel/pull/10388))
- Add handling to leverage RSC prefetch outputs ([#10390](https://github.com/vercel/vercel/pull/10390))
## 4.0.0
### Major Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/next",
"version": "4.0.0",
"version": "4.0.1",
"license": "Apache-2.0",
"main": "./dist/index",
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",

View File

@@ -1,5 +1,13 @@
# @vercel/node
## 3.0.2
### Patch Changes
- upgrade edge-runtime ([#10385](https://github.com/vercel/vercel/pull/10385))
- use `undici` instead of `node-fetch` ([#10387](https://github.com/vercel/vercel/pull/10387))
## 3.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/node",
"version": "3.0.1",
"version": "3.0.2",
"license": "Apache-2.0",
"main": "./dist/index",
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",

View File

@@ -1,5 +1,11 @@
# @vercel/remix-builder
## 2.0.1
### Patch Changes
- Update `@remix-run/dev` fork to v1.19.3 ([#10381](https://github.com/vercel/vercel/pull/10381))
## 2.0.0
### Major Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/remix-builder",
"version": "2.0.0",
"version": "2.0.1",
"license": "Apache-2.0",
"main": "./dist/index.js",
"homepage": "https://vercel.com/docs",

View File

@@ -1,5 +1,12 @@
# @vercel/static-build
## 2.0.2
### Patch Changes
- Updated dependencies []:
- @vercel/gatsby-plugin-vercel-builder@2.0.2
## 2.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vercel/static-build",
"version": "2.0.1",
"version": "2.0.2",
"license": "Apache-2.0",
"main": "./dist/index",
"homepage": "https://vercel.com/docs/build-step",
@@ -20,7 +20,7 @@
},
"dependencies": {
"@vercel/gatsby-plugin-vercel-analytics": "1.0.10",
"@vercel/gatsby-plugin-vercel-builder": "2.0.1"
"@vercel/gatsby-plugin-vercel-builder": "2.0.2"
},
"devDependencies": {
"@types/aws-lambda": "8.10.64",

14
pnpm-lock.yaml generated
View File

@@ -319,10 +319,10 @@ importers:
specifier: 1.0.0
version: link:../hydrogen
'@vercel/next':
specifier: 4.0.0
specifier: 4.0.1
version: link:../next
'@vercel/node':
specifier: 3.0.1
specifier: 3.0.2
version: link:../node
'@vercel/python':
specifier: 4.0.0
@@ -331,13 +331,13 @@ importers:
specifier: 2.0.0
version: link:../redwood
'@vercel/remix-builder':
specifier: 2.0.0
specifier: 2.0.1
version: link:../remix
'@vercel/ruby':
specifier: 2.0.0
version: link:../ruby
'@vercel/static-build':
specifier: 2.0.1
specifier: 2.0.2
version: link:../static-build
devDependencies:
'@alex_neo/jest-expect-message':
@@ -966,7 +966,7 @@ importers:
specifier: 7.0.0
version: link:../build-utils
'@vercel/node':
specifier: 3.0.1
specifier: 3.0.2
version: link:../node
'@vercel/routing-utils':
specifier: 3.0.0
@@ -1476,7 +1476,7 @@ importers:
specifier: 1.0.10
version: link:../gatsby-plugin-vercel-analytics
'@vercel/gatsby-plugin-vercel-builder':
specifier: 2.0.1
specifier: 2.0.2
version: link:../gatsby-plugin-vercel-builder
devDependencies:
'@types/aws-lambda':
@@ -9105,7 +9105,7 @@ packages:
'@typescript-eslint/eslint-plugin': 5.54.1(@typescript-eslint/parser@5.54.1)(eslint@8.42.0)(typescript@4.9.4)
'@typescript-eslint/utils': 5.54.1(eslint@8.42.0)(typescript@4.9.4)
eslint: 8.42.0
jest: 29.5.0(@types/node@14.14.31)
jest: 29.5.0(@types/node@14.18.33)
transitivePeerDependencies:
- supports-color
- typescript