From a4a76c0ce32fea6f6eff7eba4a2d2259a2d9c4fb Mon Sep 17 00:00:00 2001 From: Anurag Bandyopadhyay Date: Wed, 6 May 2026 20:01:05 +0530 Subject: [PATCH 1/2] chore: release 0.9.6 Release-As: 0.9.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ constants/index.ts | 2 +- package-lock.json | 4 ++-- package.json | 2 +- release-please-config.json | 4 +--- 6 files changed, 24 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 871c1ad9..bfa837fb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.5" + ".": "0.9.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f810f399..cde27d76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Changelog +## [0.9.6](https://github.com/openfga/js-sdk/compare/v0.9.5...v0.9.6) (2026-05-11) + + +### Added + +* add APIExecutor dedicated examples ([#385](https://github.com/openfga/js-sdk/issues/385)) ([e1faea8](https://github.com/openfga/js-sdk/commit/e1faea8)) +* draft releases, version verification, and reusable workflows ([#396](https://github.com/openfga/js-sdk/issues/396)) ([83bf30e](https://github.com/openfga/js-sdk/commit/83bf30e)) + +### Fixed + +* correctly set default retry params ([#394](https://github.com/openfga/js-sdk/issues/394)) ([6b03882](https://github.com/openfga/js-sdk/commit/6b03882)) , Thanks @kamilogorek +* prevent token refresh thundering herd ([#333](https://github.com/openfga/js-sdk/issues/333)) ([025346f](https://github.com/openfga/js-sdk/commit/025346f)) +* stop mutating token refresh errors into auth errors ([#329](https://github.com/openfga/js-sdk/issues/329)) ([d5cbccb](https://github.com/openfga/js-sdk/commit/d5cbccb)) + +### Documentation + +* parse raw stream ([#389](https://github.com/openfga/js-sdk/issues/389)) ([7331c56](https://github.com/openfga/js-sdk/commit/7331c56)) + ## [0.9.5](https://github.com/openfga/js-sdk/compare/v0.9.4...v0.9.5) (2026-04-10) diff --git a/constants/index.ts b/constants/index.ts index 11d59b8d..3a9b81c3 100644 --- a/constants/index.ts +++ b/constants/index.ts @@ -15,7 +15,7 @@ * Version of the OpenFGA JavaScript SDK. */ -const SdkVersion = "0.9.5"; // x-release-please-version +const SdkVersion = "0.9.6"; // x-release-please-version /** * User agent used in HTTP requests. diff --git a/package-lock.json b/package-lock.json index 52d6c600..7bc3525b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@openfga/sdk", - "version": "0.9.5", + "version": "0.9.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@openfga/sdk", - "version": "0.9.5", + "version": "0.9.6", "license": "Apache-2.0", "dependencies": { "@opentelemetry/api": "^1.9.1", diff --git a/package.json b/package.json index 73422711..b455f617 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openfga/sdk", - "version": "0.9.5", + "version": "0.9.6", "description": "JavaScript and Node.js SDK for OpenFGA", "author": "OpenFGA", "keywords": [ diff --git a/release-please-config.json b/release-please-config.json index 5614931e..95514695 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -25,9 +25,7 @@ { "type": "release", "section": "Miscellaneous", "hidden": true } ], "extra-files": [ - { "type": "json", "path": "package.json", "jsonpath": "$.version" }, - { "type": "json", "path": "example/example1/package.json", "jsonpath": "$.dependencies['@openfga/sdk']" }, - { "type": "json", "path": "example/streamed-list-objects/package.json", "jsonpath": "$.dependencies['@openfga/sdk']" }, + { "type": "json", "path": "package.json", "jsonpath": "$.version" }, { "type": "generic", "path": "constants/index.ts" }, { "type": "generic", "path": "example/README.md" } ] From c335fe1b287b681025390fcd183c3860a77505b2 Mon Sep 17 00:00:00 2001 From: Anurag Bandyopadhyay Date: Mon, 11 May 2026 18:34:51 +0530 Subject: [PATCH 2/2] fix: address comment --- CHANGELOG.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cde27d76..d9996524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,21 +4,12 @@ ## [0.9.6](https://github.com/openfga/js-sdk/compare/v0.9.5...v0.9.6) (2026-05-11) -### Added - -* add APIExecutor dedicated examples ([#385](https://github.com/openfga/js-sdk/issues/385)) ([e1faea8](https://github.com/openfga/js-sdk/commit/e1faea8)) -* draft releases, version verification, and reusable workflows ([#396](https://github.com/openfga/js-sdk/issues/396)) ([83bf30e](https://github.com/openfga/js-sdk/commit/83bf30e)) - ### Fixed * correctly set default retry params ([#394](https://github.com/openfga/js-sdk/issues/394)) ([6b03882](https://github.com/openfga/js-sdk/commit/6b03882)) , Thanks @kamilogorek * prevent token refresh thundering herd ([#333](https://github.com/openfga/js-sdk/issues/333)) ([025346f](https://github.com/openfga/js-sdk/commit/025346f)) * stop mutating token refresh errors into auth errors ([#329](https://github.com/openfga/js-sdk/issues/329)) ([d5cbccb](https://github.com/openfga/js-sdk/commit/d5cbccb)) -### Documentation - -* parse raw stream ([#389](https://github.com/openfga/js-sdk/issues/389)) ([7331c56](https://github.com/openfga/js-sdk/commit/7331c56)) - ## [0.9.5](https://github.com/openfga/js-sdk/compare/v0.9.4...v0.9.5) (2026-04-10)