Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.9.5"
".": "0.9.6"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Comment thread
SoulPancake marked this conversation as resolved.
Outdated

### 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)


Expand Down
2 changes: 1 addition & 1 deletion constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
4 changes: 1 addition & 3 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
]
Expand Down
Loading