Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/spotty-poets-shake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wide-ants-buy.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# sandbox

## 4.2.1

### Patch Changes

- Ensure that the interactive server is available before creating websocket connection requests. ([#317](https://github.com/vercel/sandbox/pull/317))

- Updated dependencies [[`bb190077ca365bab432c98a2f5bb6e8e2621cf10`](https://github.com/vercel/sandbox/commit/bb190077ca365bab432c98a2f5bb6e8e2621cf10)]:
- @vercel/sandbox@3.2.1

## 4.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## `sandbox --help`

```
sandbox 4.2.0
sandbox 4.2.1

▲ sandbox [options] <command>

Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sandbox",
"description": "Command line interface for Vercel Sandbox",
"version": "4.2.0",
"version": "4.2.1",
"scripts": {
"clean": "rm -rf node_modules dist",
"sandbox": "tsx ./src/sandbox.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/vercel-sandbox-mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @vercel/sandbox-mock

## 3.2.1

### Patch Changes

- Updated dependencies [[`bb190077ca365bab432c98a2f5bb6e8e2621cf10`](https://github.com/vercel/sandbox/commit/bb190077ca365bab432c98a2f5bb6e8e2621cf10)]:
- @vercel/sandbox@3.2.1

## 3.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-sandbox-mock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/sandbox-mock",
"version": "3.2.0",
"version": "3.2.1",
"description": "Drop-in mock for @vercel/sandbox backed by just-bash.",
"type": "module",
"main": "dist/index.cjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/vercel-sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @vercel/sandbox

## 3.2.1

### Patch Changes

- Reject multiple `tags` filters on `Sandbox.list()` at the type level. The API supports filtering by a single tag, so passing more than one key in `tags` is now a compile-time error instead of a 400 from the API. ([#312](https://github.com/vercel/sandbox/pull/312))

## 3.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vercel/sandbox",
"version": "3.2.0",
"version": "3.2.1",
"description": "Software Development Kit for Vercel Sandbox",
"type": "module",
"main": "dist/index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-sandbox/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Autogenerated by inject-version.ts
export const VERSION = "3.2.0";
export const VERSION = "3.2.1";
Loading