Skip to content

Commit 19ccb64

Browse files
authored
Release v14.0.0-rc.2 (#1184)
1 parent a684f50 commit 19ccb64

File tree

3 files changed

+297
-279
lines changed

3 files changed

+297
-279
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ A breaking change will get clearly marked in this log.
66

77
## Unreleased
88

9+
10+
## [v14.0.0-rc.2](https://github.com/stellar/js-stellar-sdk/compare/v13.1.0...v14.0.0-rc.2)
11+
912
### Breaking Changes
1013
* The RPC server's `getTransaction` and `getTransactions` responses have dropped the `events.diagnosticEventsXdr` field ([#1183](https://github.com/stellar/js-stellar-sdk/pull/1183)):
1114
```diff
@@ -15,6 +18,10 @@ export interface TransactionEvents {
1518
}
1619
```
1720

21+
### Fixed
22+
* Fixed type for Horizon streaming endpoints, namely `EventSourceOptions.onmessage` now extends `CollectionPage` ([#1100](https://github.com/stellar/js-stellar-sdk/pull/1100)).
23+
24+
1825
## [v14.0.0-rc.1](https://github.com/stellar/js-stellar-sdk/compare/v13.1.0...v14.0.0-rc.1)
1926

2027
### Breaking Changes

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-sdk",
3-
"version": "14.0.0-rc.1",
3+
"version": "14.0.0-rc.2",
44
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
55
"keywords": [
66
"stellar"
@@ -145,10 +145,10 @@
145145
]
146146
},
147147
"devDependencies": {
148-
"@babel/cli": "^7.26.4",
149-
"@babel/core": "^7.26.10",
148+
"@babel/cli": "^7.28.0",
149+
"@babel/core": "^7.28.0",
150150
"@babel/eslint-plugin": "^7.26.10",
151-
"@babel/preset-env": "^7.26.9",
151+
"@babel/preset-env": "^7.28.0",
152152
"@babel/preset-typescript": "^7.26.0",
153153
"@babel/register": "^7.25.9",
154154
"@definitelytyped/dtslint": "^0.2.29",
@@ -158,7 +158,7 @@
158158
"@types/detect-node": "^2.0.0",
159159
"@types/eventsource": "^1.1.12",
160160
"@types/json-schema": "^7.0.15",
161-
"@types/lodash": "^4.17.19",
161+
"@types/lodash": "^4.17.20",
162162
"@types/mocha": "^10.0.9",
163163
"@types/node": "^20.14.11",
164164
"@types/randombytes": "^2.0.1",
@@ -204,21 +204,21 @@
204204
"node-polyfill-webpack-plugin": "^3.0.0",
205205
"null-loader": "^4.0.1",
206206
"nyc": "^17.0.0",
207-
"prettier": "^3.6.1",
207+
"prettier": "^3.6.2",
208208
"randombytes": "^2.1.0",
209209
"sinon": "^17.0.1",
210210
"sinon-chai": "^3.7.0",
211211
"taffydb": "^2.7.3",
212212
"terser-webpack-plugin": "^5.3.14",
213213
"ts-node": "^10.9.2",
214214
"typescript": "5.6.3",
215-
"webpack": "^5.98.0",
215+
"webpack": "^5.100.1",
216216
"webpack-cli": "^5.0.1"
217217
},
218218
"dependencies": {
219219
"@stellar/stellar-base": "^14.0.0-rc.2",
220220
"axios": "^1.8.4",
221-
"bignumber.js": "^9.1.2",
221+
"bignumber.js": "^9.3.1",
222222
"eventsource": "^2.0.2",
223223
"feaxios": "^0.0.23",
224224
"randombytes": "^2.1.0",

0 commit comments

Comments
 (0)