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
11 changes: 0 additions & 11 deletions .changeset/friendly-cats-type.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/filesystem-snapshots/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# sandbox-filesystem-snapshots

## 0.0.11

### Patch Changes

- Updated dependencies [[`957eda3c1b03035a672bfdeb0addf52c3c78f837`](https://github.com/vercel/sandbox/commit/957eda3c1b03035a672bfdeb0addf52c3c78f837)]:
- @vercel/sandbox@1.9.0

## 0.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/filesystem-snapshots/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sandbox-filesystem-snapshots",
"version": "0.0.10",
"version": "0.0.11",
"private": true,
"description": "Example demonstrating filesystem snapshotting",
"main": "filesystem-snapshots.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# sandbox

## 2.5.6

### Patch Changes

- Updated dependencies [[`957eda3c1b03035a672bfdeb0addf52c3c78f837`](https://github.com/vercel/sandbox/commit/957eda3c1b03035a672bfdeb0addf52c3c78f837)]:
- @vercel/sandbox@1.9.0

## 2.5.5

### Patch 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 2.5.5
sandbox 2.5.6

▲ 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": "2.5.5",
"version": "2.5.6",
"scripts": {
"clean": "rm -rf node_modules dist",
"sandbox": "ts-node ./src/sandbox.ts",
Expand Down
16 changes: 16 additions & 0 deletions packages/vercel-sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @vercel/sandbox

## 1.9.0

### Minor Changes

- Add support for setting file permissions (mode) in the `writeFiles` API. Files can now include an optional `mode` property to set permissions on the tarball, avoiding the need for a separate `chmod` command. ([#90](https://github.com/vercel/sandbox/pull/90))

```ts
await sandbox.writeFiles([
{
path: "/usr/local/bin/myscript",
content: Buffer.from("#!/bin/bash\necho hello"),
mode: 0o755,
},
]);
```

## 1.8.1

### Patch 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": "1.8.1",
"version": "1.9.0",
"description": "Software Development Kit for Vercel Sandbox",
"main": "dist/index.js",
"types": "dist/index.d.ts",
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 = "1.8.1";
export const VERSION = "1.9.0";
Loading