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
2 changes: 0 additions & 2 deletions changes/vercel-cache/0.7.0.feature.md

This file was deleted.

2 changes: 0 additions & 2 deletions changes/vercel-celery/0.7.0.feature.md

This file was deleted.

7 changes: 0 additions & 7 deletions changes/vercel-celery/push-inline-settlement.bugfix.md

This file was deleted.

2 changes: 0 additions & 2 deletions changes/vercel-headers/0.7.0.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/vercel-internal-telemetry/0.7.0.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/vercel-oidc/0.7.0.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/vercel-oidc/oidc-freshest-token.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion changes/vercel-queue/0.7.0.feature.md

This file was deleted.

4 changes: 0 additions & 4 deletions changes/vercel-queue/lifecycle-nested-retries.bugfix.md

This file was deleted.

4 changes: 0 additions & 4 deletions changes/vercel/0.7.0.feature.md

This file was deleted.

18 changes: 18 additions & 0 deletions integrations/vercel-celery/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Initial release. `vercel-celery` integration with Kombu transports for Vercel Queue auto, poll, and (#172)
- push delivery modes; Celery result backend backed by Vercel Runtime Cache. (#159) (#172)

### Bug Fixes

- Settle push deliveries within the delivering request: drain the embedded (#175)
- worker's deferred ACKs/rejects before responding, and wait in-request for the (#175)
- handoff lock, consumer readiness, and prefetch capacity (new (#175)
- `push_handoff_wait_seconds` transport option) instead of bouncing deliveries (#175)
- with `RetryAfter`. On Vercel the worker loop thread is suspended between (#175)
- requests, so deferred ACKs never ran, leases silently expired, and every (#175)
- message was redelivered and re-executed on a five-minute cycle. (#175)
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package version metadata."""

__version__ = "0.6.0"
__version__ = "0.7.0"
8 changes: 8 additions & 0 deletions src/vercel-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Split runtime cache helpers into the standalone `vercel-cache` package. (#160) (#172)
- Add strict mode support for runtime cache operations. (#161) (#172)
2 changes: 1 addition & 1 deletion src/vercel-cache/vercel/cache/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
8 changes: 8 additions & 0 deletions src/vercel-headers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Add request header context snapshots for running callbacks with the active Vercel header context. (#166) (#172)
- Add ASGI scope and WSGI environ helpers for constructing Vercel header mappings. (#172)
2 changes: 1 addition & 1 deletion src/vercel-headers/vercel/headers/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
7 changes: 7 additions & 0 deletions src/vercel-internal-telemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Add the standalone `vercel-internal-telemetry` package for shared internal telemetry helpers used by Vercel Python packages. (#172)
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
11 changes: 11 additions & 0 deletions src/vercel-oidc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Prepare `vercel-oidc` for independent workspace releases with dynamic dependency metadata and the shared release build hook. (#172)

### Bug Fixes

- Remember the freshest live request OIDC token process-wide so background SDK work can authenticate outside the originating request context. (#172)
2 changes: 1 addition & 1 deletion src/vercel-oidc/vercel/oidc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"
14 changes: 14 additions & 0 deletions src/vercel-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Initial release (#158) (#172)

### Bug Fixes

- Stop nesting retry wrappers in delivery lifecycle settlement: the RetryAfter (#175)
- and ACK paths wrapped the already-retrying `extend_lease()`/`acknowledge()` (#175)
- client methods in a second retry layer, multiplying retry attempts and (#175)
- logging duplicate `visibility.retry_attempt` events per request. (#175)
2 changes: 1 addition & 1 deletion src/vercel-queue/vercel/queue/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Package version metadata."""

__version__ = "0.6.0"
__version__ = "0.7.0"
10 changes: 10 additions & 0 deletions src/vercel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.7.0 - 2026-07-13

### Features

- Add an experimental `vercel.unstable.sandbox` SDK with sync and async sandbox lifecycle, process, filesystem, snapshot, query, and session APIs. (#128) (#172)
- Add streaming read and write support for Sandbox files and process output. (#135) (#172)
- Improve Workflows sandbox execution with configurable cleanup handlers, passthrough modules, namespaced workflows, and more reliable resume/error handling. (#144, #146, #148, #153, #154, #155, #156, #162, #163, #164, #165) (#172)
- Refactor internal HTTP transport handling to support streamed responses, raw bodies, timeouts, retries, and shared token resolution. (#119) (#172)
2 changes: 1 addition & 1 deletion src/vercel/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.0"
__version__ = "0.7.0"