-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare
v1.0.0-beta.0
(testnet) for release (#142)
* Upgrade the codebase to work with testnet XDR (#135) * Using [email protected] * Prepare `v1.0.0-beta.0` for release (#143) * Handle new RPC simulation response variations (#132) * Add Core build reference to changelog for clarity
- Loading branch information
Showing
10 changed files
with
558 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,17 @@ A breaking change should be clearly marked in this log. | |
## Unreleased | ||
|
||
|
||
## v1.0.0-beta.0 | ||
**Note:** This version is currently only compatible with Stellar networks running `[email protected]`, which corresponds to Preview 11, the final Protocol 20 preview (using stellar/stellar-xdr@9ac0264). | ||
|
||
### Breaking Changes | ||
* The XDR has been upgraded to the final testnet version via the `stellar-base` dependency ([v10.0.0-beta.0](https://github.com/stellar/js-stellar-base/releases/tag/v10.0.0-beta.0), [#135](https://github.com/stellar/js-soroban-client/pull/135)). | ||
* The `simulateTransaction` endpoint will now return a `restorePreamble` structure containing the recommended footprint and minimum resource fee for an `Operation.restoreFootprint` which would have made the simulation succeed ([#132](https://github.com/stellar/js-soroban-client/pull/132)). | ||
|
||
### Fixed | ||
* Result types are now handled correctly by `ContractSpec` ([#138](https://github.com/stellar/js-soroban-client/pull/138)). | ||
|
||
|
||
## v0.11.2 | ||
|
||
### Fixed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "soroban-client", | ||
"version": "0.11.2", | ||
"version": "1.0.0-beta.0", | ||
"description": "A library for working with Stellar's Soroban RPC servers.", | ||
"author": "Stellar Development Foundation <[email protected]>", | ||
"homepage": "https://github.com/stellar/js-soroban-client", | ||
|
@@ -77,30 +77,30 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.22.10", | ||
"@babel/core": "^7.22.11", | ||
"@babel/eslint-parser": "^7.22.11", | ||
"@babel/cli": "^7.22.15", | ||
"@babel/core": "^7.22.17", | ||
"@babel/eslint-parser": "^7.22.15", | ||
"@babel/eslint-plugin": "^7.22.10", | ||
"@babel/preset-env": "^7.22.10", | ||
"@babel/preset-typescript": "^7.22.11", | ||
"@babel/register": "^7.22.5", | ||
"@definitelytyped/dtslint": "^0.0.176", | ||
"@babel/preset-env": "^7.22.15", | ||
"@babel/preset-typescript": "^7.22.15", | ||
"@babel/register": "^7.22.15", | ||
"@definitelytyped/dtslint": "^0.0.177", | ||
"@istanbuljs/nyc-config-babel": "3.0.0", | ||
"@stellar/tsconfig": "^1.0.2", | ||
"@types/chai": "^4.3.5", | ||
"@types/chai": "^4.3.6", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^20.5.4", | ||
"@types/node": "^20.6.0", | ||
"@types/sinon": "^10.0.16", | ||
"@types/urijs": "^1.19.6", | ||
"@typescript-eslint/parser": "^6.4.1", | ||
"axios-mock-adapter": "^1.21.5", | ||
"@typescript-eslint/parser": "^6.7.0", | ||
"axios-mock-adapter": "^1.22.0", | ||
"babel-loader": "^9.1.2", | ||
"babel-plugin-istanbul": "^6.1.1", | ||
"chai": "^4.3.8", | ||
"chai-as-promised": "^7.1.1", | ||
"chai-http": "^4.4.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.47.0", | ||
"eslint": "^8.49.0", | ||
"eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-import": "^2.28.1", | ||
|
@@ -139,7 +139,7 @@ | |
"axios": "^1.4.0", | ||
"bignumber.js": "^9.1.1", | ||
"buffer": "^6.0.3", | ||
"stellar-base": "10.0.0-soroban.8", | ||
"stellar-base": "v10.0.0-beta.0", | ||
"urijs": "^1.19.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.