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
10 changes: 0 additions & 10 deletions .changeset/containers-list-dash-api.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/filter-metadata-sqlite.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/four-teachers-double.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/graduate-nodejs-experimental-flags.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/local-explorer-worker-filter.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/nasty-bars-study.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/open-gifts-repair.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/purple-towns-tell.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/sour-lions-march.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/sour-sides-enjoy.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/spicy-buttons-heal.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/tender-hoops-strive.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/workflows-instance-methods.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/workflows-vitest-pool-waitforstatus.md

This file was deleted.

16 changes: 16 additions & 0 deletions packages/containers-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @cloudflare/containers-shared

## 0.13.0

### Minor Changes

- [#12943](https://github.com/cloudflare/workers-sdk/pull/12943) [`0f10583`](https://github.com/cloudflare/workers-sdk/commit/0f10583f53d050df06413e1f65fb147a4aea9976) Thanks [@gabivlj](https://github.com/gabivlj)! - containers: Upgrade proxy-everything to cloudflare/proxy-everything:3cb1195

This proxy-everything version adds support to filter DNS queries, necessary for interceptOutboundHttp constrained by domain.

### Patch Changes

- [#12893](https://github.com/cloudflare/workers-sdk/pull/12893) [`782df44`](https://github.com/cloudflare/workers-sdk/commit/782df4495f14f1366cf03e808ddddea0102eb011) Thanks [@gpanders](https://github.com/gpanders)! - Rewrite `wrangler containers list` to use the paginated Dash API endpoint

`wrangler containers list` now fetches from the `/dash/applications` endpoint instead of `/applications`, displaying results in a paginated table with columns for ID, Name, State, Live Instances, and Last Modified. Container state is derived from health instance counters (active, degraded, provisioning, ready).

The command supports `--per-page` (default 25) for interactive pagination with Enter to load more and q/Esc to quit, and `--json` for machine-readable output. Non-interactive environments load all results in a single request.

## 0.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/containers-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/containers-shared",
"version": "0.12.0",
"version": "0.13.0",
"private": true,
"description": "Package that contains shared container functionality for Cloudflare Workers SDK.",
"homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/containers-shared#readme",
Expand Down
26 changes: 26 additions & 0 deletions packages/local-explorer-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @cloudflare/local-explorer-ui

## 0.9.0

### Minor Changes

- [#12972](https://github.com/cloudflare/workers-sdk/pull/12972) [`cb71403`](https://github.com/cloudflare/workers-sdk/commit/cb714036d95ad0429f7e7a24c3c3a4317748ce22) Thanks [@NuroDev](https://github.com/NuroDev)! - Add worker filtering to the local explorer UI

When multiple workers share a dev registry, all their bindings were previously shown together in a single flat list. The explorer now shows a worker selector dropdown, letting you inspect each worker's bindings independently.

The selected worker is reflected in the URL as a `?worker=` search param, so deep links work correctly. By default the explorer selects the worker that is hosting the dashboard itself.

- [#12888](https://github.com/cloudflare/workers-sdk/pull/12888) [`3a1c149`](https://github.com/cloudflare/workers-sdk/commit/3a1c149e1edf126ab072bf74ed624d3c42d561fb) Thanks [@emily-shen](https://github.com/emily-shen)! - Add R2 support to the local explorer.

The local explorer now supports the following:

- Viewing, modifying & deleting objects
- Uploading files
- Creating directories / prefixes

Note: The local explorer is an experimental WIP feature that is now enabled by default. This can still be opt-ed out of by using `X_LOCAL_EXPLORER=false` to disable it.

### Patch Changes

- [#12918](https://github.com/cloudflare/workers-sdk/pull/12918) [`3de3ce5`](https://github.com/cloudflare/workers-sdk/commit/3de3ce519383b634bd1315eb94d789ec8def0670) Thanks [@NuroDev](https://github.com/NuroDev)! - Fixed listing internal Cloudflare Durable Object tables.

The internal `_cf_KV` table that is used when using Durable Objects KV storage is now hidden from the table list dropdown in the local explorer as it is not accessible.

## 0.8.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/local-explorer-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/local-explorer-ui",
"version": "0.8.2",
"version": "0.9.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading
Loading