Skip to content

Commit f3217b8

Browse files
authored
release: v0.8.1 (#223)
1 parent 170cc2e commit f3217b8

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog
22

33

4-
## [Unreleased](https://github.com/openfga/js-sdk/compare/v0.8.0...HEAD)
4+
## [Unreleased](https://github.com/openfga/js-sdk/compare/v0.8.1...HEAD)
5+
6+
## v0.8.1
7+
8+
### [v0.8.1](https://github.com/openfga/js-sdk/compare/v0.8.0...v0.8.1) (2025-04-24)
9+
10+
- fix: change check for Node.js environment to fix issue where `process.title` cannot be read (#222)
511

612
## v0.8.0
713

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ If you have found a bug or if you have a feature request, please report them on
793793

794794
### Pull Requests
795795

796-
While we accept Pull Requests on this repository, the SDKs are autogenerated so please consider additionally submitting your Pull Requests to the [sdk-generator](https://github.com/openfga/sdk-generator) and linking the two PRs together and to the corresponding issue. This will greatly assist the OpenFGA team in being able to give timely reviews as well as deploying fixes and updates to our other SDKs as well.
796+
While we accept Pull Requests on this repository, the SDKs are autogenerated so please consider additionally submitting your Pull Requests to the [sdk-generator](https://github.com/openfga/sdk-generator) and linking the two PRs together and to the corresponding issue. This will greatly assist the OpenFGA team in being able to give timely reviews as well as deploying fixes and updates to our other SDKs as well.
797797

798798
## Author
799799

configuration.ts

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

25-
const DEFAULT_USER_AGENT = "openfga-sdk js/0.8.0";
25+
const DEFAULT_USER_AGENT = "openfga-sdk js/0.8.1";
2626

2727
export interface RetryParams {
2828
maxRetry?: number;
@@ -75,7 +75,7 @@ export class Configuration {
7575
* @type {string}
7676
* @memberof Configuration
7777
*/
78-
private static sdkVersion = "0.8.0";
78+
private static sdkVersion = "0.8.1";
7979

8080
/**
8181
* 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
@@ -31,7 +31,7 @@ Steps
3131
2. In the Example `package.json` change the `@openfga/sdk` dependency from a semver range like below
3232
```json
3333
"dependencies": {
34-
"@openfga/sdk": "^0.8.0"
34+
"@openfga/sdk": "^0.8.1"
3535
}
3636
```
3737
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.8.0"
12+
"@openfga/sdk": "^0.8.1"
1313
},
1414
"engines": {
1515
"node": ">=16.13.0"

package-lock.json

Lines changed: 2 additions & 2 deletions
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.8.0",
3+
"version": "0.8.1",
44
"description": "JavaScript and Node.js SDK for OpenFGA",
55
"author": "OpenFGA",
66
"keywords": [

0 commit comments

Comments
 (0)