@cloudflare/voice@0.1.1

cloudflare/agents@cloudflare/voice@0.1.1Apr 15, 2026by github-actions[bot]

AI Summary

This patch release fixes incorrect peer dependency ranges in the `agents` package that were causing install warnings with `agents@0.11.0`. The published packages had tight `^0.10.x` ranges instead of the intended broader ranges (`>=0.8.7 <1.0.0` / `>=0.9.0 <1.0.0`). Additionally, the changesets configuration was updated to prevent this issue from recurring in future releases.

Key Highlights

  • Fixed peer dependency ranges for `agents` package - changed from tight `^0.10.x` to proper `>=0.8.7 <1.0.0` / `>=0.9.0 <1.0.0` ranges
  • Resolved install warnings when using `agents@0.11.0`
  • Updated changesets config to set `updateInternalDependencies` from "patch" to "minor" to prevent ranges from being overwritten in future releases

Full Release Notes

### Patch Changes

-   [#1310](https://github.com/cloudflare/agents/pull/1310) [`bd0346e`](https://github.com/cloudflare/agents/commit/bd0346ec05406e258b3c8904874c7a8c0f4608e5) Thanks [@threepointone](https://github.com/threepointone)! - Fix peer dependency ranges for `agents` — published packages incorrectly had tight `^0.10.x` ranges instead of the intended `>=0.8.7 <1.0.0` / `>=0.9.0 <1.0.0`, causing install warnings with `agents@0.11.0`. Also changed `updateInternalDependencies` from `"patch"` to `"minor"` in changesets config to prevent the ranges from being overwritten on future releases.