@subql/node-stellar 4.5.1-1 → 4.6.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.
- package/CHANGELOG.md +4 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,8 @@ 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
|
+
## [4.6.0] - 2025-03-05
|
|
8
10
|
### Changed
|
|
9
11
|
- Support http soroban endpoints (#109)
|
|
10
12
|
- Update `@subql/node-core` to latest version and implement blockchain service as well as any relevant changes (#110)
|
|
@@ -204,7 +206,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
204
206
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
205
207
|
|
|
206
208
|
## [2.12.0] - 2023-09-12
|
|
207
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.
|
|
209
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.6.0...HEAD
|
|
210
|
+
[4.6.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.5.0...node-stellar/4.6.0
|
|
208
211
|
[4.5.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.4.0...node-stellar/4.5.0
|
|
209
212
|
[4.4.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.3.0...node-stellar/4.4.0
|
|
210
213
|
[4.3.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.2.2...node-stellar/4.3.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-stellar",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.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": "^13.1.0",
|
|
28
28
|
"@subql/common": "^5.4.0",
|
|
29
|
-
"@subql/common-stellar": "4.
|
|
29
|
+
"@subql/common-stellar": "4.3.0",
|
|
30
30
|
"@subql/node-core": "^17.1.0",
|
|
31
31
|
"@subql/testing": "^2.2.0",
|
|
32
|
-
"@subql/types-stellar": "4.
|
|
32
|
+
"@subql/types-stellar": "4.3.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": "4.5.1-0"
|
|
57
|
+
]
|
|
59
58
|
}
|