Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions @stellar/typescript-wallet-sdk-km/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release notes - Typescript Wallet SDK Key Manager - 3.0.1

### Fixed
* `KeyManager.removeKey`: the in-memory cache entry is now actually deleted when `shouldCache: true`, instead of being left stale by a no-op write (#238)

# Release notes - Typescript Wallet SDK Key Manager - 3.0.0

### BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk-km/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk-km",
"version": "3.0.0",
"version": "3.0.1",
"engines": {
"node": ">=20"
},
Expand Down
3 changes: 3 additions & 0 deletions @stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Release notes - Typescript Wallet SDK Soroban - 3.0.1
* Version bump

# Release notes - Typescript Wallet SDK Soroban - 3.0.0

### BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk-soroban/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk-soroban",
"version": "3.0.0",
"version": "3.0.1",
"engines": {
"node": ">=20"
},
Expand Down
7 changes: 7 additions & 0 deletions @stellar/typescript-wallet-sdk/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Release notes - Typescript Wallet SDK - 3.0.1

### Fixed
* SEP-10: verify the auth server returns the same challenge body after `client_domain` re-signing, instead of trusting a server-supplied transaction (#237)
* `submitWithFeeIncrease`: forward `maxFee` across recursive retries so the cap is enforced on every retry, not just the first (#238)
* `submitTransaction`: replace the unbounded recursive 504 retry with a bounded equal-jitter exponential backoff loop, avoiding stack overflow during sustained Horizon outages (#238)

# Release notes - Typescript Wallet SDK - 3.0.0

### BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk",
"version": "3.0.0",
"version": "3.0.1",
"engines": {
"node": ">=20"
},
Expand Down
Loading