Skip to content

Commit bb5544c

Browse files
authored
Release v14.2.0 (#1219)
1 parent 2c766e5 commit bb5544c

3 files changed

Lines changed: 86 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 3 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.2.0](https://github.com/stellar/js-stellar-sdk/compare/v14.1.1...v14.2.0)
11+
912
### Added
1013
* `rpc.Server` now includes `getAccountEntry`, `getTrustlineEntry`, and `getClaimableBalance` methods to facilitate retrieving those entries without manually constructing the ledger keys ([#1218](https://github.com/stellar/js-stellar-sdk/pull/1218), [#1221](https://github.com/stellar/js-stellar-sdk/pull/1221)).
1114
* `rpc.Server`'s

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stellar/stellar-sdk",
3-
"version": "14.1.1",
3+
"version": "14.2.0",
44
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
55
"keywords": [
66
"stellar"
@@ -149,7 +149,7 @@
149149
},
150150
"devDependencies": {
151151
"@babel/cli": "^7.28.0",
152-
"@babel/core": "^7.28.0",
152+
"@babel/core": "^7.28.4",
153153
"@babel/eslint-plugin": "^7.26.10",
154154
"@babel/preset-env": "^7.28.0",
155155
"@babel/preset-typescript": "^7.26.0",
@@ -170,7 +170,7 @@
170170
"@typescript-eslint/parser": "^7.16.1",
171171
"axios-mock-adapter": "^1.22.0",
172172
"babel-loader": "^9.1.3",
173-
"babel-plugin-istanbul": "^7.0.0",
173+
"babel-plugin-istanbul": "^7.0.1",
174174
"babel-plugin-transform-define": "^2.1.4",
175175
"better-docs": "^2.7.3",
176176
"buffer": "^6.0.3",
@@ -215,12 +215,12 @@
215215
"terser-webpack-plugin": "^5.3.14",
216216
"ts-node": "^10.9.2",
217217
"typescript": "5.6.3",
218-
"webpack": "^5.100.1",
218+
"webpack": "^5.101.3",
219219
"webpack-cli": "^5.0.1"
220220
},
221221
"dependencies": {
222222
"@stellar/stellar-base": "^14.0.1",
223-
"axios": "^1.8.4",
223+
"axios": "^1.12.2",
224224
"bignumber.js": "^9.3.1",
225225
"eventsource": "^2.0.2",
226226
"feaxios": "^0.0.23",

yarn.lock

Lines changed: 78 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.0.tgz#9fc6fd58c2a6a15243cd13983224968392070790"
7171
integrity sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==
7272

73-
"@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.28.0", "@babel/core@^7.7.5":
73+
"@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.7.5":
7474
version "7.28.3"
7575
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.3.tgz#aceddde69c5d1def69b839d09efa3e3ff59c97cb"
7676
integrity sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==
@@ -91,6 +91,27 @@
9191
json5 "^2.2.3"
9292
semver "^6.3.1"
9393

94+
"@babel/core@^7.28.4":
95+
version "7.28.4"
96+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.4.tgz#12a550b8794452df4c8b084f95003bce1742d496"
97+
integrity sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==
98+
dependencies:
99+
"@babel/code-frame" "^7.27.1"
100+
"@babel/generator" "^7.28.3"
101+
"@babel/helper-compilation-targets" "^7.27.2"
102+
"@babel/helper-module-transforms" "^7.28.3"
103+
"@babel/helpers" "^7.28.4"
104+
"@babel/parser" "^7.28.4"
105+
"@babel/template" "^7.27.2"
106+
"@babel/traverse" "^7.28.4"
107+
"@babel/types" "^7.28.4"
108+
"@jridgewell/remapping" "^2.3.5"
109+
convert-source-map "^2.0.0"
110+
debug "^4.1.0"
111+
gensync "^1.0.0-beta.2"
112+
json5 "^2.2.3"
113+
semver "^6.3.1"
114+
94115
"@babel/eslint-plugin@^7.26.10":
95116
version "7.27.1"
96117
resolved "https://registry.yarnpkg.com/@babel/eslint-plugin/-/eslint-plugin-7.27.1.tgz#5e7cfeaa7a7b506d0ee74c62244e4e6b7a7043f6"
@@ -260,13 +281,28 @@
260281
"@babel/template" "^7.27.2"
261282
"@babel/types" "^7.28.2"
262283

284+
"@babel/helpers@^7.28.4":
285+
version "7.28.4"
286+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz#fe07274742e95bdf7cf1443593eeb8926ab63827"
287+
integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==
288+
dependencies:
289+
"@babel/template" "^7.27.2"
290+
"@babel/types" "^7.28.4"
291+
263292
"@babel/parser@^7.14.7", "@babel/parser@^7.2.3", "@babel/parser@^7.20.15", "@babel/parser@^7.23.9", "@babel/parser@^7.27.2", "@babel/parser@^7.28.3":
264293
version "7.28.3"
265294
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.3.tgz#d2d25b814621bca5fe9d172bc93792547e7a2a71"
266295
integrity sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==
267296
dependencies:
268297
"@babel/types" "^7.28.2"
269298

299+
"@babel/parser@^7.28.4":
300+
version "7.28.4"
301+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.4.tgz#da25d4643532890932cc03f7705fe19637e03fa8"
302+
integrity sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==
303+
dependencies:
304+
"@babel/types" "^7.28.4"
305+
270306
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.27.1":
271307
version "7.27.1"
272308
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz#61dd8a8e61f7eb568268d1b5f129da3eee364bf9"
@@ -889,6 +925,19 @@
889925
"@babel/types" "^7.28.2"
890926
debug "^4.3.1"
891927

928+
"@babel/traverse@^7.28.4":
929+
version "7.28.4"
930+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.4.tgz#8d456101b96ab175d487249f60680221692b958b"
931+
integrity sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==
932+
dependencies:
933+
"@babel/code-frame" "^7.27.1"
934+
"@babel/generator" "^7.28.3"
935+
"@babel/helper-globals" "^7.28.0"
936+
"@babel/parser" "^7.28.4"
937+
"@babel/template" "^7.27.2"
938+
"@babel/types" "^7.28.4"
939+
debug "^4.3.1"
940+
892941
"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.4.4":
893942
version "7.28.2"
894943
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.2.tgz#da9db0856a9a88e0a13b019881d7513588cf712b"
@@ -897,6 +946,14 @@
897946
"@babel/helper-string-parser" "^7.27.1"
898947
"@babel/helper-validator-identifier" "^7.27.1"
899948

949+
"@babel/types@^7.28.4":
950+
version "7.28.4"
951+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.4.tgz#0a4e618f4c60a7cd6c11cb2d48060e4dbe38ac3a"
952+
integrity sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==
953+
dependencies:
954+
"@babel/helper-string-parser" "^7.27.1"
955+
"@babel/helper-validator-identifier" "^7.27.1"
956+
900957
"@bcoe/v8-coverage@^0.2.3":
901958
version "0.2.3"
902959
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -1092,6 +1149,14 @@
10921149
"@jridgewell/sourcemap-codec" "^1.5.0"
10931150
"@jridgewell/trace-mapping" "^0.3.24"
10941151

1152+
"@jridgewell/remapping@^2.3.5":
1153+
version "2.3.5"
1154+
resolved "https://registry.yarnpkg.com/@jridgewell/remapping/-/remapping-2.3.5.tgz#375c476d1972947851ba1e15ae8f123047445aa1"
1155+
integrity sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==
1156+
dependencies:
1157+
"@jridgewell/gen-mapping" "^0.3.5"
1158+
"@jridgewell/trace-mapping" "^0.3.24"
1159+
10951160
"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0":
10961161
version "3.1.2"
10971162
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
@@ -2172,10 +2237,10 @@ axios-mock-adapter@^1.22.0:
21722237
fast-deep-equal "^3.1.3"
21732238
is-buffer "^2.0.5"
21742239

2175-
axios@^1.8.4:
2176-
version "1.11.0"
2177-
resolved "https://registry.yarnpkg.com/axios/-/axios-1.11.0.tgz#c2ec219e35e414c025b2095e8b8280278478fdb6"
2178-
integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==
2240+
axios@^1.12.2:
2241+
version "1.12.2"
2242+
resolved "https://registry.yarnpkg.com/axios/-/axios-1.12.2.tgz#6c307390136cf7a2278d09cec63b136dfc6e6da7"
2243+
integrity sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==
21792244
dependencies:
21802245
follow-redirects "^1.15.6"
21812246
form-data "^4.0.4"
@@ -2194,10 +2259,10 @@ babel-loader@^9.1.3:
21942259
find-cache-dir "^4.0.0"
21952260
schema-utils "^4.0.0"
21962261

2197-
babel-plugin-istanbul@^7.0.0:
2198-
version "7.0.0"
2199-
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.0.tgz#629a178f63b83dc9ecee46fd20266283b1f11280"
2200-
integrity sha512-C5OzENSx/A+gt7t4VH1I2XsflxyPUmXRFPKBxt33xncdOmq7oROVM3bZv9Ysjjkv8OJYDMa+tKuKMvqU/H3xdw==
2262+
babel-plugin-istanbul@^7.0.1:
2263+
version "7.0.1"
2264+
resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz#d8b518c8ea199364cf84ccc82de89740236daf92"
2265+
integrity sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==
22012266
dependencies:
22022267
"@babel/helper-plugin-utils" "^7.0.0"
22032268
"@istanbuljs/load-nyc-config" "^1.0.0"
@@ -8356,10 +8421,10 @@ webpack-sources@^3.3.3:
83568421
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.3.3.tgz#d4bf7f9909675d7a070ff14d0ef2a4f3c982c723"
83578422
integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==
83588423

8359-
webpack@^5.100.1:
8360-
version "5.101.2"
8361-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.101.2.tgz#08c222b7acfce7da95c593e2f88ea1638a07b344"
8362-
integrity sha512-4JLXU0tD6OZNVqlwzm3HGEhAHufSiyv+skb7q0d2367VDMzrU1Q/ZeepvkcHH0rZie6uqEtTQQe0OEOOluH3Mg==
8424+
webpack@^5.101.3:
8425+
version "5.101.3"
8426+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.101.3.tgz#3633b2375bb29ea4b06ffb1902734d977bc44346"
8427+
integrity sha512-7b0dTKR3Ed//AD/6kkx/o7duS8H3f1a4w3BYpIriX4BzIhjkn4teo05cptsxvLesHFKK5KObnadmCHBwGc+51A==
83638428
dependencies:
83648429
"@types/eslint-scope" "^3.7.7"
83658430
"@types/estree" "^1.0.8"

0 commit comments

Comments
 (0)