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
8 changes: 0 additions & 8 deletions .changeset/pageable-file-search.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/retry-safe-token-minting.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/retry-safe-uploads.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/safe-gallery-retries.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/skip-list-metadata-hydration.md

This file was deleted.

22 changes: 22 additions & 0 deletions packages/uploads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @buildinternet/uploads

## 0.47.0

### Minor Changes

- 5af793e: Page through file search. `findFiles` now returns an opaque `cursor` and
accepts one back. The new `findFilesAll` follows that cursor, up to a page cap.
`uploads find` and `uploads list --meta` gained `--cursor` and `--all`. The
`find_files` MCP tool takes and returns the same cursor.
- cac30d3: `list`/`listAll` now skip the server's per-key metadata hydration when the
caller didn't request `metadata: true`, instead of fetching it and throwing
it away.

### Patch Changes

- d6e49f7: Mint workspace tokens safely on retry: `mintWorkspaceToken` now accepts an
optional `idempotencyKey` so a retried request replays the original one-time
token instead of minting a duplicate.
- 5bd56dd: Upload files safely on retry: `put` now accepts an optional `idempotencyKey`
so a retried request replays the original response instead of writing a
duplicate object.
- 5c27ee3: Retry gallery creation safely with caller-scoped idempotency keys.

## 0.46.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/uploads/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@buildinternet/uploads",
"version": "0.46.3",
"version": "0.47.0",
"description": "CLI and client for uploads.sh — workspace-scoped image hosting for GitHub embeds",
"type": "module",
"sideEffects": false,
Expand Down
Loading