Skip to content

Commit

Permalink
release: v0.3.4 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh authored Mar 15, 2024
2 parents 2e66d6a + c8f09d9 commit 2cf4991
Show file tree
Hide file tree
Showing 8 changed files with 243 additions and 237 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* @openfga/dx
README.md @openfga/product @openfga/community
README.md @openfga/product @openfga/community @openfga/dx
1 change: 0 additions & 1 deletion .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ example/example1/example1.mjs
example/example1/package.json
git_push.sh
index.ts
package-lock.json
package.json
tests/client.test.ts
tests/helpers/default-config.ts
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.3.4

### [0.3.4](https://github.com/openfga/js-sdk/compare/v0.3.3...v0.3.4) (2024-03-15)

- chore: bump deps. resolves [CVE-2024-28849](https://nvd.nist.gov/vuln/detail/CVE-2024-28849) in
[follow-redirects](https://www.npmjs.com/package/follow-redirects)

## v0.3.3

### [0.3.3](https://github.com/openfga/js-sdk/compare/v0.3.2...v0.3.3) (2024-02-26)
Expand Down
4 changes: 2 additions & 2 deletions configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const DEFAULT_MAX_RETRY = 15;
// default minimum wait period in retry - but will backoff exponentially
const DEFAULT_MIN_WAIT_MS = 100;

const DEFAULT_USER_AGENT = "openfga-sdk js/0.3.3";
const DEFAULT_USER_AGENT = "openfga-sdk js/0.3.4";

export interface RetryParams {
maxRetry?: number;
Expand Down Expand Up @@ -74,7 +74,7 @@ export class Configuration {
* @type {string}
* @memberof Configuration
*/
private static sdkVersion = "0.3.3";
private static sdkVersion = "0.3.4";

/**
* provide the full api URL (e.g. `https://api.fga.example`)
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Steps
2. In the Example `package.json` change the `@openfga/sdk` dependency from a semver range like below
```json
"dependencies": {
"@openfga/sdk": "^0.3.3"
"@openfga/sdk": "^0.3.4"
}
```
to a `file:` reference like below
Expand Down
2 changes: 1 addition & 1 deletion example/example1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "node example1.mjs"
},
"dependencies": {
"@openfga/sdk": "^0.3.3"
"@openfga/sdk": "^0.3.4"
},
"engines": {
"node": ">=16.13.0"
Expand Down
Loading

0 comments on commit 2cf4991

Please sign in to comment.