Skip to content

Commit 3ddffc1

Browse files
committed
Upgrade to 1.9.3
1 parent 5a4d348 commit 3ddffc1

File tree

4 files changed

+24
-32
lines changed

4 files changed

+24
-32
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.9.3](https://github.com/Creit-Tech/Stellar-Wallets-Kit/compare/v1.9.2...v1.9.3) (2025-09-03)
6+
### Change
7+
- Upgrade Freighter API's library to latest
8+
9+
### Fix
10+
- Update the types in kit's class so it includes the new `skipRequestAccess` parameter
11+
512
### [1.9.2](https://github.com/Creit-Tech/Stellar-Wallets-Kit/compare/v1.9.1...v1.9.2) (2025-09-02)
613
### Add
714
- Include a `skipRequestAccess` parameter for devs that need to ignore the `requestAccess` to freighter when calling the `getAddress` method.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@creit.tech/stellar-wallets-kit",
3-
"version": "1.9.2",
3+
"version": "1.9.3",
44
"description": "A kit to handle all Stellar Wallets at once",
55
"author": {
66
"name": "Creit Technologies LLP",
@@ -45,7 +45,7 @@
4545
"@ngneat/elf-devtools": "1.3.0",
4646
"@ngneat/elf-entities": "5.0.2",
4747
"@ngneat/elf-persist-state": "1.2.1",
48-
"@stellar/freighter-api": "4.1.0",
48+
"@stellar/freighter-api": "5.0.0",
4949
"@trezor/connect-plugin-stellar": "9.2.1",
5050
"@trezor/connect-web": "9.6.2",
5151
"@walletconnect/modal": "2.6.2",

pnpm-lock.yaml

Lines changed: 14 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/stellar-wallets-kit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class StellarWalletsKit implements KitActions {
102102
setSelectedModuleId(target.productId);
103103
}
104104

105-
public async getAddress(params?: { path?: string }): Promise<{ address: string }> {
105+
public async getAddress(params?: { path?: string; skipRequestAccess?: boolean; }): Promise<{ address: string }> {
106106
const { address } = await this.selectedModule.getAddress(params);
107107
setAddress(address);
108108
return { address };

0 commit comments

Comments
 (0)