@subql/node-stellar 6.0.3-1 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -3
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -5,9 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
+
9
+ ## [6.1.0] - 2025-08-26
8
10
  ### Changed
9
- - Update Stellar SDK to support protocol 23 (#135)
10
- - Update Stellar SDK to v14 with support for protocol 23 (#138)
11
+ - Update Stellar SDK to v14 with support for protocol 23 (#135) (#138)
11
12
 
12
13
  ### Fixed
13
14
  - Pagination for getting events which used the deprecated pagingToken, it now uses the cursor (#138)
@@ -243,7 +244,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
243
244
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
244
245
 
245
246
  ## [2.12.0] - 2023-09-12
246
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/6.0.2...HEAD
247
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/6.1.0...HEAD
248
+ [6.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/6.0.2...node-stellar/6.1.0
247
249
  [6.0.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/6.0.1...node-stellar/6.0.2
248
250
  [6.0.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/6.0.0...node-stellar/6.0.1
249
251
  [6.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/5.0.2...node-stellar/6.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-stellar",
3
- "version": "6.0.3-1",
3
+ "version": "6.1.0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -26,10 +26,10 @@
26
26
  "@nestjs/schedule": "^5.0.1",
27
27
  "@stellar/stellar-sdk": "^14.1.0",
28
28
  "@subql/common": "^5.7.0",
29
- "@subql/common-stellar": "4.4.4-1",
29
+ "@subql/common-stellar": "4.5.0",
30
30
  "@subql/node-core": "^18.2.0",
31
31
  "@subql/testing": "^2.2.0",
32
- "@subql/types-stellar": "5.0.2-1",
32
+ "@subql/types-stellar": "5.1.0",
33
33
  "lodash": "^4.17.21",
34
34
  "reflect-metadata": "^0.1.13"
35
35
  },
@@ -54,6 +54,5 @@
54
54
  "files": [
55
55
  "/dist",
56
56
  "/bin"
57
- ],
58
- "stableVersion": "6.0.3-0"
57
+ ]
59
58
  }