@subql/node-stellar 3.9.2-1 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -6,15 +6,19 @@ 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
9
12
 
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
16
+
12
17
  ### Fixed
13
18
  - Updated with node-core ,also fixed:
14
19
  - Fix modulo block didn't apply correctly with multiple dataSources
15
20
  - Now when `workers` set to 0, it will use block dispatcher instead of throw and exit
16
21
 
17
-
18
22
  ## [3.9.1] - 2024-03-14
19
23
  ### Changed
20
24
  - Update `@subql/node-core` to 4.7.2 with graphql comments escaping fix
@@ -111,7 +115,9 @@ 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.9.1...HEAD
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
120
+ [3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0
115
121
  [3.9.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.0...node-stellar/3.9.1
116
122
  [3.9.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.1...node-stellar/3.9.0
117
123
  [3.8.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.0...node-stellar/3.8.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-stellar",
3
- "version": "3.9.2-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.3.3-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.2.2-2",
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.9.2-0"
67
+ ]
69
68
  }