Skip to content

Commit 2cf4991

Browse files
authored
release: v0.3.4 (#76)
2 parents 2e66d6a + c8f09d9 commit 2cf4991

File tree

8 files changed

+243
-237
lines changed

8 files changed

+243
-237
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
* @openfga/dx
2-
README.md @openfga/product @openfga/community
2+
README.md @openfga/product @openfga/community @openfga/dx

.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ example/example1/example1.mjs
3333
example/example1/package.json
3434
git_push.sh
3535
index.ts
36-
package-lock.json
3736
package.json
3837
tests/client.test.ts
3938
tests/helpers/default-config.ts

CHANGELOG.md

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

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+
310
## v0.3.3
411

512
### [0.3.3](https://github.com/openfga/js-sdk/compare/v0.3.2...v0.3.3) (2024-02-26)

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.3.3";
24+
const DEFAULT_USER_AGENT = "openfga-sdk js/0.3.4";
2525

2626
export interface RetryParams {
2727
maxRetry?: number;
@@ -74,7 +74,7 @@ export class Configuration {
7474
* @type {string}
7575
* @memberof Configuration
7676
*/
77-
private static sdkVersion = "0.3.3";
77+
private static sdkVersion = "0.3.4";
7878

7979
/**
8080
* 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.3.3"
31+
"@openfga/sdk": "^0.3.4"
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.3.3"
12+
"@openfga/sdk": "^0.3.4"
1313
},
1414
"engines": {
1515
"node": ">=16.13.0"

0 commit comments

Comments
 (0)