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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

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

## v0.9.2-beta.1

### [v0.9.2-beta.1](https://github.com/openfga/js-sdk/compare/v0.9.1...v0.9.2-beta.1) (2026-02-10)
Comment thread
SoulPancake marked this conversation as resolved.
Outdated

Comment thread
SoulPancake marked this conversation as resolved.
- feat: add support for [streamedListObjects](https://openfga.dev/api/service#/Relationship%20Queries/StreamedListObjects). See [documentation](#streamed-list-objects)

## v0.9.1
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.1";
const SdkVersion = "0.9.2-beta.1";

/**
* User agent used in HTTP requests.
*/
const UserAgent = "openfga-sdk js/0.9.1";
const UserAgent = "openfga-sdk js/0.9.2-beta.1";

/**
* 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.1"
"@openfga/sdk": "^0.9.2-beta.1"
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.1"
"@openfga/sdk": "^0.9.2-beta.1"
},
"engines": {
"node": ">=16.13.0"
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.1",
"version": "0.9.2-beta.1",
"description": "JavaScript and Node.js SDK for OpenFGA",
"author": "OpenFGA",
"keywords": [
Expand Down
Loading