vercel@50.25.2
Breaking Changes📦 vercel-cliView on GitHub →
⚠ 3 breaking✨ 2 features🐛 2 fixes🔧 13 symbols
Summary
This patch release updates the metrics schema, removes the deprecated `--order-by` flag from metric queries, and fixes OOM issues in the development server for large functions.
⚠️ Breaking Changes
- The metrics schema has changed: the unit type `tokens` is removed and replaced with `count`, the `unique` aggregation is dropped, and `p50` is added.
- Unsupported events (`analyticsEvent`, `analyticsPageview`, `blobStoreState`, `dataCacheState`) have been removed from the metrics schema.
- The CLI flag `--order-by` for the `metrics query` command has been removed; ordering is now exclusively handled server-side.
Migration Steps
- If using metrics queries, update code to use `count` instead of the removed `tokens` unit type.
- If relying on the removed aggregations or events, update metric queries accordingly.
- Remove usage of the `--order-by` flag from `metrics query` commands.
✨ New Features
- Added skills matrix support for evaluations.
- Long group values (over 60 characters) in `metrics` text output are now ellipsized to prevent overly wide tables.
🐛 Bug Fixes
- Resolved Out-Of-Memory (OOM) issues occurring in the development server when handling large functions.
- The CLI help output no longer incorrectly shows the region flag as required, as region selection is now handled by the server.