Skip to content

Commit 10534cc

Browse files
authored
release: v0.7.0 (#150)
2 parents 66ebf75 + a1dfc43 commit 10534cc

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

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

3+
## v0.7.0
4+
5+
### [0.7.0](https://github.com/openfga/js-sdk/compare/v0.6.3...v0.7.0) (2024-08-30)
6+
7+
- feat!: enhancements to OpenTelemetry support (#149)
8+
9+
BREAKING CHANGE:
10+
11+
This version changes the way in which telemetry is configured and reported. See #149 for additional information.
12+
13+
## v0.6.3
14+
315
### [0.6.3](https://github.com/openfga/js-sdk/compare/v0.6.2...v0.6.3) (2024-08-28)
416

517
- fix: set the consistency parameter correctly in OpenFgaClient (#143)

configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const DEFAULT_MAX_RETRY = 15;
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.6.3";
25+
const DEFAULT_USER_AGENT = "openfga-sdk js/0.7.0";
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.6.3";
78+
private static sdkVersion = "0.7.0";
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.6.3"
34+
"@openfga/sdk": "^0.7.0"
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.6.3"
12+
"@openfga/sdk": "^0.7.0"
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.6.3",
3+
"version": "0.7.0",
44
"description": "JavaScript and Node.js SDK for OpenFGA",
55
"author": "OpenFGA",
66
"keywords": [

0 commit comments

Comments
 (0)