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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog


## [Unreleased](https://github.com/openfga/js-sdk/compare/v0.9.3...HEAD)
## [Unreleased](https://github.com/openfga/js-sdk/compare/v0.9.4...HEAD)

## v0.9.4

### [v0.9.4](https://github.com/openfga/js-sdk/compare/v0.9.3...v0.9.4) (2026-03-31)

- fix(deps): pin axios to 1.14.0 and fix brace-expansion audit vulnerability (#363)
Comment thread
SoulPancake marked this conversation as resolved.
Outdated

## v0.9.3

Expand Down
4 changes: 2 additions & 2 deletions constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
/**
* Version of the OpenFGA JavaScript SDK.
*/
const SdkVersion = "0.9.3";
const SdkVersion = "0.9.4";
Comment thread
SoulPancake marked this conversation as resolved.

/**
* User agent used in HTTP requests.
*/
const UserAgent = "openfga-sdk js/0.9.3";
const UserAgent = "openfga-sdk js/0.9.4";

/**
* Example API domain for documentation/tests.
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Steps
2. In the Example `package.json` change the `@openfga/sdk` dependency from a semver range like below
```json
"dependencies": {
"@openfga/sdk": "^0.9.3"
"@openfga/sdk": "^0.9.4"
}
Comment thread
SoulPancake marked this conversation as resolved.
```
to a `file:` reference like below
Expand Down
2 changes: 1 addition & 1 deletion example/example1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "node example1.mjs"
},
"dependencies": {
"@openfga/sdk": "^0.9.3"
"@openfga/sdk": "^0.9.4"
},
"engines": {
"node": ">=16.13.0"
Comment thread
SoulPancake marked this conversation as resolved.
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.3",
"version": "0.9.4",
"description": "JavaScript and Node.js SDK for OpenFGA",
"author": "OpenFGA",
"keywords": [
Expand Down
Loading