From 3f9fe5ca0a7aed1380365b2b55a1b9a512d51244 Mon Sep 17 00:00:00 2001 From: "marcstraube-release-bot[bot]" <275318129+marcstraube-release-bot[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 09:24:37 +0000 Subject: [PATCH 1/2] chore(master): release 1.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5fdd883..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 44207c3..27debb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.0](https://github.com/marcstraube/zappzarapp-node-browser-utils/compare/v1.1.0...v1.2.0) (2026-04-19) + + +### Features + +* **cache:** add onRevalidate callback for SWR completion notification ([#69](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/69)) ([ed24830](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/ed24830f06b09bf2d81a3f37cfeca3da5f3b27fc)) + + +### Bug Fixes + +* **ci:** trigger npm publish on GitHub Release event ([#65](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/65)) ([d3a1e40](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/d3a1e4044ddc8acbd3010aed2a1230077b315015)) + ## [1.1.0](https://github.com/marcstraube/zappzarapp-node-browser-utils/compare/v1.0.3...v1.1.0) (2026-04-17) diff --git a/package.json b/package.json index 435fcd4..73f894d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zappzarapp/browser-utils", - "version": "1.1.0", + "version": "1.2.0", "description": "Comprehensive browser utilities: storage, cookies, clipboard, keyboard shortcuts, forms, observers, network retry, and more. Type-safe, tree-shakeable, zero dependencies.", "type": "module", "sideEffects": false, From 57b72a4c902249f48ecfcda7027851d52a5d7b63 Mon Sep 17 00:00:00 2001 From: Marc Straube Date: Sun, 19 Apr 2026 11:31:04 +0200 Subject: [PATCH 2/2] chore: add missing feat(request) entry to CHANGELOG --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27debb2..48ba2a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,33 +8,52 @@ and this project adheres to ## [1.2.0](https://github.com/marcstraube/zappzarapp-node-browser-utils/compare/v1.1.0...v1.2.0) (2026-04-19) - ### Features -* **cache:** add onRevalidate callback for SWR completion notification ([#69](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/69)) ([ed24830](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/ed24830f06b09bf2d81a3f37cfeca3da5f3b27fc)) - +- **cache:** add onRevalidate callback for SWR completion notification + ([#69](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/69)) + ([ed24830](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/ed24830f06b09bf2d81a3f37cfeca3da5f3b27fc)) +- **request:** add fetch streaming/progress utilities + ([#68](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/68)) + ([2bd1713](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/2bd17130138ada317d04e0af96470bf42666e7aa)) ### Bug Fixes -* **ci:** trigger npm publish on GitHub Release event ([#65](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/65)) ([d3a1e40](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/d3a1e4044ddc8acbd3010aed2a1230077b315015)) +- **ci:** trigger npm publish on GitHub Release event + ([#65](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/65)) + ([d3a1e40](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/d3a1e4044ddc8acbd3010aed2a1230077b315015)) ## [1.1.0](https://github.com/marcstraube/zappzarapp-node-browser-utils/compare/v1.0.3...v1.1.0) (2026-04-17) - ### Features -* **network:** add circuit breaker pattern to RetryQueue ([#57](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/57)) ([d0c9204](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/d0c9204c40e51050cc7ed42b4f777b65c45a7944)) -* **request:** add Content-Type response validation ([#56](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/56)) ([e3cd5bb](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/e3cd5bb6a9055f87d6100b63563e2511f2f183ab)) -* **request:** expose combineAbortSignals as public utility ([#54](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/54)) ([0adb3a9](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/0adb3a95170d1b183a71f9359816c6401f8d6a94)) -* **storage:** add custom serializer hook for BaseStorageManager ([#58](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/58)) ([052bf66](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/052bf669c0c264f8d6a2cf01e14760f5769667e8)) - +- **network:** add circuit breaker pattern to RetryQueue + ([#57](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/57)) + ([d0c9204](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/d0c9204c40e51050cc7ed42b4f777b65c45a7944)) +- **request:** add Content-Type response validation + ([#56](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/56)) + ([e3cd5bb](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/e3cd5bb6a9055f87d6100b63563e2511f2f183ab)) +- **request:** expose combineAbortSignals as public utility + ([#54](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/54)) + ([0adb3a9](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/0adb3a95170d1b183a71f9359816c6401f8d6a94)) +- **storage:** add custom serializer hook for BaseStorageManager + ([#58](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/58)) + ([052bf66](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/052bf669c0c264f8d6a2cf01e14760f5769667e8)) ### Bug Fixes -* **ci:** exclude CHANGELOG.md from prettier format checks ([#63](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/63)) ([8ea1dae](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/8ea1dae3a6ef45d7f894cfcd0cd9db1f13e53781)) -* **ci:** upgrade npm for OIDC trusted publishing support ([#40](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/40)) ([b84b28a](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/b84b28a429cfc0e3b3626260a611eb88b008fb1d)) -* **ci:** use npm publish for OIDC trusted publishing ([#38](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/38)) ([9f91a5d](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/9f91a5d3d28ef4f58eea34b7cc9e01fd5a6d1eb3)) -* **test:** stabilize flaky OfflineQueue integration test ([#62](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/62)) ([dbce592](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/dbce592ca2cc3bb4bfd32ee5ccc36f7b722ae864)) +- **ci:** exclude CHANGELOG.md from prettier format checks + ([#63](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/63)) + ([8ea1dae](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/8ea1dae3a6ef45d7f894cfcd0cd9db1f13e53781)) +- **ci:** upgrade npm for OIDC trusted publishing support + ([#40](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/40)) + ([b84b28a](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/b84b28a429cfc0e3b3626260a611eb88b008fb1d)) +- **ci:** use npm publish for OIDC trusted publishing + ([#38](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/38)) + ([9f91a5d](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/9f91a5d3d28ef4f58eea34b7cc9e01fd5a6d1eb3)) +- **test:** stabilize flaky OfflineQueue integration test + ([#62](https://github.com/marcstraube/zappzarapp-node-browser-utils/issues/62)) + ([dbce592](https://github.com/marcstraube/zappzarapp-node-browser-utils/commit/dbce592ca2cc3bb4bfd32ee5ccc36f7b722ae864)) ## [1.0.3](https://github.com/marcstraube/zappzarapp-node-browser-utils/compare/v1.0.2...v1.0.3) (2026-04-10)