Skip to content

Commit d147768

Browse files
authored
Prepare v13.1.0 for release (#1123)
1 parent 548e5c3 commit d147768

File tree

3 files changed

+715
-545
lines changed

3 files changed

+715
-545
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ A breaking change will get clearly marked in this log.
66

77
## Unreleased
88

9+
10+
## [v13.1.0](https://github.com/stellar/js-stellar-sdk/compare/v13.0.0...v13.1.0)
11+
12+
### Added
13+
* Added `Horizon.Server.root` to obtain information from the Horizon root endpoint ([#1122](https://github.com/stellar/js-stellar-sdk/pull/1122/)).
14+
915
### Fixed
1016
* When using a friendbot that points to a Horizon instance that has ledger metadata disabled, you can no longer extract the account sequence from the response. Instead, we hit RPC directly ([#1107](https://github.com/stellar/js-stellar-sdk/pull/1107/)).
17+
* `rpc.Server.getEvents()` now correctly returns the `cursor` field at the top-level response ([#1124](https://github.com/stellar/js-stellar-sdk/pull/1124)).
1118

12-
### Added
13-
* Added `Horizon.Server.root` to obtain information from the Horizon root endpoint. ([#1122](https://github.com/stellar/js-stellar-sdk/pull/1122/))
1419

1520
## [v13.0.0](https://github.com/stellar/js-stellar-sdk/compare/v12.3.0...v13.0.0)
1621
This is a direct re-tag of rc.2 with the only change being an upgrade to the `stellar-base` library to incorporate a patch release. Nonetheless, the entire changelog from the prior major version here is replicated for a comprehensive view on what's broken, added, and fixed.

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-sdk",
3-
"version": "13.0.0",
3+
"version": "13.1.0",
44
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
55
"keywords": [
66
"stellar"
@@ -142,13 +142,13 @@
142142
]
143143
},
144144
"devDependencies": {
145-
"@babel/cli": "^7.25.9",
145+
"@babel/cli": "^7.26.4",
146146
"@babel/core": "^7.26.0",
147147
"@babel/eslint-plugin": "^7.25.9",
148148
"@babel/preset-env": "^7.26.0",
149149
"@babel/preset-typescript": "^7.26.0",
150150
"@babel/register": "^7.25.9",
151-
"@definitelytyped/dtslint": "^0.2.27",
151+
"@definitelytyped/dtslint": "^0.2.28",
152152
"@istanbuljs/nyc-config-babel": "3.0.0",
153153
"@stellar/tsconfig": "^1.0.2",
154154
"@types/chai": "^4.3.19",
@@ -172,7 +172,7 @@
172172
"chai-as-promised": "^7.1.1",
173173
"chai-http": "^4.3.0",
174174
"cross-env": "^7.0.3",
175-
"dotenv": "^16.4.5",
175+
"dotenv": "^16.4.7",
176176
"eslint": "^8.57.0",
177177
"eslint-config-airbnb-base": "^15.0.0",
178178
"eslint-config-airbnb-typescript": "^18.0.0",
@@ -195,26 +195,26 @@
195195
"karma-mocha": "^2.0.0",
196196
"karma-sinon-chai": "^2.0.2",
197197
"karma-webpack": "^5.0.1",
198-
"lint-staged": "^15.2.10",
198+
"lint-staged": "^15.2.11",
199199
"lodash": "^4.17.21",
200200
"mocha": "^10.8.2",
201201
"node-polyfill-webpack-plugin": "^3.0.0",
202202
"null-loader": "^4.0.1",
203203
"nyc": "^17.0.0",
204-
"prettier": "^3.3.3",
204+
"prettier": "^3.4.2",
205205
"randombytes": "^2.1.0",
206206
"sinon": "^17.0.1",
207207
"sinon-chai": "^3.7.0",
208208
"taffydb": "^2.7.3",
209-
"terser-webpack-plugin": "^5.3.10",
209+
"terser-webpack-plugin": "^5.3.11",
210210
"ts-node": "^10.9.2",
211211
"typescript": "^5.6.3",
212-
"webpack": "^5.96.1",
212+
"webpack": "^5.97.1",
213213
"webpack-cli": "^5.0.1"
214214
},
215215
"dependencies": {
216216
"@stellar/stellar-base": "^13.0.1",
217-
"axios": "^1.7.7",
217+
"axios": "^1.7.9",
218218
"bignumber.js": "^9.1.2",
219219
"eventsource": "^2.0.2",
220220
"feaxios": "^0.0.23",

0 commit comments

Comments
 (0)