@subql/node-stellar 3.12.2-0 → 4.0.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 +8 -4
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -6,15 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [4.0.0] - 2024-08-27
9
10
  ### Added
10
- - Suport for network endpoint config providing the ability to set headers and rpc batch sizes (#82)
11
+ - Support for network endpoint config providing the ability to set headers and rpc batch sizes (#82)
12
+
11
13
  ### Changed
12
14
  - Enable ts strict mode (#82)
13
15
  - Use Subquery Project code from node core (#82)
14
16
  - Breaking change: Update to latest `@subql/node-core`, require indexing environment timezone set to UTC (#82)
17
+
15
18
  ### Fixed
16
- - fix admin api `dbSize` issue
17
- - fixed various issues causing poi inconsistency
19
+ - fix admin api `dbSize` issue
20
+ - fixed various issues causing poi inconsistency
18
21
 
19
22
  ## [3.12.1] - 2024-08-21
20
23
  ### Fixed
@@ -151,7 +154,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
151
154
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
152
155
 
153
156
  ## [2.12.0] - 2023-09-12
154
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.12.1...HEAD
157
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.0.0...HEAD
158
+ [4.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.12.1...node-stellar/4.0.0
155
159
  [3.12.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.12.0...node-stellar/3.12.1
156
160
  [3.12.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.2...node-stellar/3.12.0
157
161
  [3.11.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.1...node-stellar/3.11.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-stellar",
3
- "version": "3.12.2-0",
3
+ "version": "4.0.0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -25,10 +25,10 @@
25
25
  "@nestjs/platform-express": "^9.4.0",
26
26
  "@nestjs/schedule": "^3.0.1",
27
27
  "@stellar/stellar-sdk": "^12.2.0",
28
- "@subql/common-stellar": "4.0.2-0",
28
+ "@subql/common-stellar": "4.1.0",
29
29
  "@subql/node-core": "^14.1.2",
30
30
  "@subql/testing": "^2.2.0",
31
- "@subql/types-stellar": "3.5.1-0",
31
+ "@subql/types-stellar": "3.6.0",
32
32
  "lodash": "^4.17.21",
33
33
  "pg": "^8.11.5",
34
34
  "reflect-metadata": "^0.1.13",
@@ -56,6 +56,5 @@
56
56
  "files": [
57
57
  "/dist",
58
58
  "/bin"
59
- ],
60
- "stableVersion": "3.12.1"
59
+ ]
61
60
  }