Skip to content

Commit ee24c7d

Browse files
authored
release: v0.5.0 (#115)
2 parents 2c78c5d + beade10 commit ee24c7d

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.5.0
4+
5+
### [0.5.0](https://github.com/openfga/js-sdk/compare/v0.4.0...v0.5.0) (2024-06-14)
6+
- chore!: remove excluded users from ListUsers response
7+
8+
BREAKING CHANGE:
9+
10+
This version removes the `excluded_users` property from the `ListUsersResponse` and `ClientListUsersResponse` interfaces,
11+
for more details see the [associated API change](https://github.com/openfga/api/pull/171).
12+
313
## v0.4.0
414

515
### [0.4.0](https://github.com/openfga/js-sdk/compare/v0.3.5...v0.4.0) (2024-04-30)

configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const DEFAULT_MAX_RETRY = 15;
2121
// default minimum wait period in retry - but will backoff exponentially
2222
const DEFAULT_MIN_WAIT_MS = 100;
2323

24-
const DEFAULT_USER_AGENT = "openfga-sdk js/0.4.0";
24+
const DEFAULT_USER_AGENT = "openfga-sdk js/0.5.0";
2525

2626
export interface RetryParams {
2727
maxRetry?: number;
@@ -73,7 +73,7 @@ export class Configuration {
7373
* @type {string}
7474
* @memberof Configuration
7575
*/
76-
private static sdkVersion = "0.4.0";
76+
private static sdkVersion = "0.5.0";
7777

7878
/**
7979
* provide the full api URL (e.g. `https://api.fga.example`)

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Steps
2828
2. In the Example `package.json` change the `@openfga/sdk` dependency from a semver range like below
2929
```json
3030
"dependencies": {
31-
"@openfga/sdk": "^0.4.0"
31+
"@openfga/sdk": "^0.5.0"
3232
}
3333
```
3434
to a `file:` reference like below

example/example1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "node example1.mjs"
1010
},
1111
"dependencies": {
12-
"@openfga/sdk": "^0.4.0"
12+
"@openfga/sdk": "^0.5.0"
1313
},
1414
"engines": {
1515
"node": ">=16.13.0"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openfga/sdk",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "JavaScript and Node.js SDK for OpenFGA",
55
"author": "OpenFGA",
66
"keywords": [

0 commit comments

Comments
 (0)