Skip to content

Commit

Permalink
Release beta.6 with various bugfixes (#877)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Nov 3, 2023
1 parent 489bead commit f1a53d3
Show file tree
Hide file tree
Showing 4 changed files with 323 additions and 349 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,7 +5,11 @@ A breaking change will get clearly marked in this log.

## Unreleased


## [v11.0.0-beta.6](https://github.com/stellar/js-stellar-sdk/compare/v11.0.0-beta.5...v11.0.0-beta.6)

### Fixed
* The `stellar-base` library has been upgraded to `beta.4` which contains a bugfix for large sequence numbers ([#877](https://github.com/stellar/js-stellar-sdk/pull/877)).
* The `SorobanRpc.Server.getTransaction()` method will now return the full response when encountering a `FAILED` transaction result ([#872](https://github.com/stellar/js-stellar-sdk/pull/872)).
* The `SorobanRpc.Server.getEvents()` method will correctly parse the event value (which is an `xdr.ScVal` rather than an `xdr.DiagnosticEvent`, see the modified `SorobanRpc.Api.EventResponse.value`; [#876](https://github.com/stellar/js-stellar-sdk/pull/876)).

Expand Down
12 changes: 6 additions & 6 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "stellar-sdk",
"version": "11.0.0-beta.5",
"version": "11.0.0-beta.6",
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
"keywords": [
"stellar"
Expand Down Expand Up @@ -83,19 +83,19 @@
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@babel/register": "^7.22.15",
"@definitelytyped/dtslint": "^0.0.184",
"@definitelytyped/dtslint": "^0.0.189",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@stellar/tsconfig": "^1.0.2",
"@types/chai": "^4.3.6",
"@types/detect-node": "^2.0.0",
"@types/eventsource": "^1.1.12",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.8",
"@types/node": "^20.8.10",
"@types/randombytes": "^2.0.1",
"@types/sinon": "^10.0.19",
"@types/urijs": "^1.19.20",
"@typescript-eslint/parser": "^6.7.4",
"@typescript-eslint/parser": "^6.9.1",
"axios-mock-adapter": "^1.22.0",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
Expand Down Expand Up @@ -142,11 +142,11 @@
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^1.5.1",
"axios": "^1.6.0",
"bignumber.js": "^9.1.2",
"eventsource": "^2.0.2",
"randombytes": "^2.1.0",
"stellar-base": "10.0.0-beta.3",
"stellar-base": "10.0.0-beta.4",
"toml": "^3.0.0",
"urijs": "^1.19.1"
}
Expand Down

0 comments on commit f1a53d3

Please sign in to comment.