Skip to content

Commit

Permalink
Fix cluster url issue (#60)
Browse files Browse the repository at this point in the history
* Fix cluster url issue in webhook config 

* Update changelog

* 0.7.9

---------

Co-authored-by: vivek-gofynd <[email protected]>
  • Loading branch information
jinalviranii and vivek-gofynd authored Aug 20, 2024
1 parent 2632bfe commit 673134e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.7.9] - 2024-08-20
### Changed
- Use api.fynd.com as default cluster domain for webhooks.
---
## [v0.7.8] - 2024-07-31
### Added
- `SQLiteStorage` storage class added for storing extension session data in SQLite database.
Expand Down
2 changes: 2 additions & 0 deletions express/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ class Extension {
}
this.cluster = data.cluster;
}
else
data.cluster = this.cluster;
this.webhookRegistry = new WebhookRegistry(this._retryManager);

await this.getExtensionDetails();
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"name": "@gofynd/fdk-extension-javascript",
"description": "FDK Extension Helper Library",
"version": "0.7.7",
"version": "0.7.9",
"main": "index.js",
"directories": {
"example": "examples"
Expand Down

0 comments on commit 673134e

Please sign in to comment.