@subql/node-stellar 3.10.1-0 → 3.10.1
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 +6 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.10.1] - 2024-04-11
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed failed previous release
|
|
12
|
+
|
|
9
13
|
## [3.10.0] - 2024-04-10
|
|
10
14
|
### Changed
|
|
11
15
|
- Updated with node-core. Now dictionary supports multiple endpoints, indexer will fetch and switch dictionaries based on available blocks
|
|
@@ -111,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
111
115
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
112
116
|
|
|
113
117
|
## [2.12.0] - 2023-09-12
|
|
114
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.
|
|
118
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...HEAD
|
|
119
|
+
[3.10.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...node-stellar/3.10.1
|
|
115
120
|
[3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0
|
|
116
121
|
[3.9.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.0...node-stellar/3.9.1
|
|
117
122
|
[3.9.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.1...node-stellar/3.9.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-stellar",
|
|
3
|
-
"version": "3.10.1
|
|
3
|
+
"version": "3.10.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"@nestjs/platform-express": "^9.4.0",
|
|
27
27
|
"@nestjs/schedule": "^3.0.1",
|
|
28
28
|
"@subql/common": "^3.5.0",
|
|
29
|
-
"@subql/common-stellar": "3.4.1
|
|
29
|
+
"@subql/common-stellar": "3.4.1",
|
|
30
30
|
"@subql/node-core": "^8.0.1",
|
|
31
31
|
"@subql/testing": "^2.0.0",
|
|
32
32
|
"@subql/types": "^2.2.1-1",
|
|
33
|
-
"@subql/types-stellar": "3.3.1
|
|
33
|
+
"@subql/types-stellar": "3.3.1",
|
|
34
34
|
"cacheable-lookup": "6",
|
|
35
35
|
"cron-converter": "^1.0.2",
|
|
36
36
|
"eventemitter2": "^6.4.5",
|
|
@@ -64,6 +64,5 @@
|
|
|
64
64
|
"files": [
|
|
65
65
|
"/dist",
|
|
66
66
|
"/bin"
|
|
67
|
-
]
|
|
68
|
-
"stableVersion": "3.10.0"
|
|
67
|
+
]
|
|
69
68
|
}
|