changesets
Installation
SKILL.md
Changesets & Releases
This repository uses changesets to drive a fully automated release pipeline. Create a changeset whenever your change affects published packages.
Creating a Changeset
A changeset should be created when there is a change that is observable to a consumer of the
@cloudflare/sandbox package. This includes:
- Changes to the API surface area, new methods, deprecations or removals.
- Changes to the performance or security characteristics of the SDK.
- Bug fixes that are user visible.
Create a new file in .changeset/ (e.g. .changeset/your-feature-name.md):
---
'@cloudflare/sandbox': patch
---