File tree Expand file tree Collapse file tree 8 files changed +243
-237
lines changed Expand file tree Collapse file tree 8 files changed +243
-237
lines changed Original file line number Diff line number Diff line change 1
1
* @ openfga/dx
2
- README.md @ openfga/product @ openfga/community
2
+ README.md @ openfga/product @ openfga/community @ openfga/dx
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ example/example1/example1.mjs
33
33
example/example1/package.json
34
34
git_push.sh
35
35
index.ts
36
- package-lock.json
37
36
package.json
38
37
tests/client.test.ts
39
38
tests/helpers/default-config.ts
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.3.4
4
+
5
+ ### [ 0.3.4] ( https://github.com/openfga/js-sdk/compare/v0.3.3...v0.3.4 ) (2024-03-15)
6
+
7
+ - chore: bump deps. resolves [ CVE-2024 -28849] ( https://nvd.nist.gov/vuln/detail/CVE-2024-28849 ) in
8
+ [ follow-redirects] ( https://www.npmjs.com/package/follow-redirects )
9
+
3
10
## v0.3.3
4
11
5
12
### [ 0.3.3] ( https://github.com/openfga/js-sdk/compare/v0.3.2...v0.3.3 ) (2024-02-26)
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const DEFAULT_MAX_RETRY = 15;
21
21
// default minimum wait period in retry - but will backoff exponentially
22
22
const DEFAULT_MIN_WAIT_MS = 100 ;
23
23
24
- const DEFAULT_USER_AGENT = "openfga-sdk js/0.3.3 " ;
24
+ const DEFAULT_USER_AGENT = "openfga-sdk js/0.3.4 " ;
25
25
26
26
export interface RetryParams {
27
27
maxRetry ?: number ;
@@ -74,7 +74,7 @@ export class Configuration {
74
74
* @type {string }
75
75
* @memberof Configuration
76
76
*/
77
- private static sdkVersion = "0.3.3 " ;
77
+ private static sdkVersion = "0.3.4 " ;
78
78
79
79
/**
80
80
* provide the full api URL (e.g. `https://api.fga.example`)
Original file line number Diff line number Diff line change 28
28
2 . In the Example ` package.json ` change the ` @openfga/sdk ` dependency from a semver range like below
29
29
``` json
30
30
"dependencies" : {
31
- "@openfga/sdk" : " ^0.3.3 "
31
+ "@openfga/sdk" : " ^0.3.4 "
32
32
}
33
33
```
34
34
to a ` file: ` reference like below
Original file line number Diff line number Diff line change 9
9
"start" : " node example1.mjs"
10
10
},
11
11
"dependencies" : {
12
- "@openfga/sdk" : " ^0.3.3 "
12
+ "@openfga/sdk" : " ^0.3.4 "
13
13
},
14
14
"engines" : {
15
15
"node" : " >=16.13.0"
You can’t perform that action at this time.
0 commit comments