From 6c1615edcdd1b65758859c566ec65e632d8bd810 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 09:49:49 +0000 Subject: [PATCH] chore: release packages --- .changeset/add-storage-listing.md | 5 ----- .changeset/add-upload-validation.md | 5 ----- .changeset/rename-retry-attempt.md | 5 ----- packages/firebase-storage-kit/CHANGELOG.md | 10 ++++++++++ packages/firebase-storage-kit/package.json | 2 +- 5 files changed, 11 insertions(+), 16 deletions(-) delete mode 100644 .changeset/add-storage-listing.md delete mode 100644 .changeset/add-upload-validation.md delete mode 100644 .changeset/rename-retry-attempt.md diff --git a/.changeset/add-storage-listing.md b/.changeset/add-storage-listing.md deleted file mode 100644 index 0477811..0000000 --- a/.changeset/add-storage-listing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"firebase-storage-kit": minor ---- - -Add `StorageManager.list()` and `StorageManager.listAll()` for listing folders and files at a storage prefix. diff --git a/.changeset/add-upload-validation.md b/.changeset/add-upload-validation.md deleted file mode 100644 index 48c6e4d..0000000 --- a/.changeset/add-upload-validation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"firebase-storage-kit": minor ---- - -Add optional pre-upload validation via `UploadOptions.validate`. Reject files before the provider upload starts using `maxSizeBytes`, `allowedMimeTypes`, `allowedExtensions`, and optional image dimension limits (`maxImageWidth`, `maxImageHeight`). Validation failures surface as `ValidationError` with stable `validation/*` codes on `error.code` (for example `validation/file-too-large`). Export `validateUpload`, `validateUploadSync`, `validateImageDimensions`, `validateImageDimensionLimits`, `readImageDimensions`, `getFileExtension`, `VALIDATION_ERROR_CODES`, and the `ValidationErrorCode` type for standalone use. diff --git a/.changeset/rename-retry-attempt.md b/.changeset/rename-retry-attempt.md deleted file mode 100644 index 4172bf8..0000000 --- a/.changeset/rename-retry-attempt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"firebase-storage-kit": minor ---- - -Add `UploadItem.attempt` as the preferred name for the 1-based attempt counter (the initial upload is attempt `1`, and each retry increments it). `UploadItem.retryAttempt` is now deprecated but continues to work as an alias that always mirrors `attempt`, so this change is non-breaking. Prefer `upload.attempt` going forward. diff --git a/packages/firebase-storage-kit/CHANGELOG.md b/packages/firebase-storage-kit/CHANGELOG.md index ca4757e..8eb65af 100644 --- a/packages/firebase-storage-kit/CHANGELOG.md +++ b/packages/firebase-storage-kit/CHANGELOG.md @@ -1,5 +1,15 @@ # firebase-storage-kit +## 1.6.0 + +### Minor Changes + +- [#46](https://github.com/marknesh/firebase-storage-kit/pull/46) [`424a4f9`](https://github.com/marknesh/firebase-storage-kit/commit/424a4f9618ea7ffdac93dc0c6464efb039290414) Thanks [@marknesh](https://github.com/marknesh)! - Add `StorageManager.list()` and `StorageManager.listAll()` for listing folders and files at a storage prefix. + +- [#47](https://github.com/marknesh/firebase-storage-kit/pull/47) [`b7c5855`](https://github.com/marknesh/firebase-storage-kit/commit/b7c5855127c92dc749766337ced52dba359639f0) Thanks [@marknesh](https://github.com/marknesh)! - Add optional pre-upload validation via `UploadOptions.validate`. Reject files before the provider upload starts using `maxSizeBytes`, `allowedMimeTypes`, `allowedExtensions`, and optional image dimension limits (`maxImageWidth`, `maxImageHeight`). Validation failures surface as `ValidationError` with stable `validation/*` codes on `error.code` (for example `validation/file-too-large`). Export `validateUpload`, `validateUploadSync`, `validateImageDimensions`, `validateImageDimensionLimits`, `readImageDimensions`, `getFileExtension`, `VALIDATION_ERROR_CODES`, and the `ValidationErrorCode` type for standalone use. + +- [#46](https://github.com/marknesh/firebase-storage-kit/pull/46) [`424a4f9`](https://github.com/marknesh/firebase-storage-kit/commit/424a4f9618ea7ffdac93dc0c6464efb039290414) Thanks [@marknesh](https://github.com/marknesh)! - Add `UploadItem.attempt` as the preferred name for the 1-based attempt counter (the initial upload is attempt `1`, and each retry increments it). `UploadItem.retryAttempt` is now deprecated but continues to work as an alias that always mirrors `attempt`, so this change is non-breaking. Prefer `upload.attempt` going forward. + ## 1.5.0 ### Minor Changes diff --git a/packages/firebase-storage-kit/package.json b/packages/firebase-storage-kit/package.json index 2849188..7af26bc 100644 --- a/packages/firebase-storage-kit/package.json +++ b/packages/firebase-storage-kit/package.json @@ -1,6 +1,6 @@ { "name": "firebase-storage-kit", - "version": "1.5.0", + "version": "1.6.0", "description": "Storage manager for Firebase Storage with uploads, progress tracking, batch uploads, and file query helpers.", "keywords": [ "browser",