@subql/node-ethereum 2.5.4-2 → 2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -2
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  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
- ## [Unreleased]
7
+ ## [2.6.0] - 2023-06-15
8
+ ### Added
9
+ - Implement multiple-endpoint improvements from node-core (#102)
10
+
8
11
  ### Fixed
9
12
  - Dictionary queries not including null filters (#104)
10
13
 
@@ -132,7 +135,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
132
135
  - Retry request when encouraging timeout/rate limit behaviours (#9)
133
136
 
134
137
  ## [0.1.0] - 2022-10-31
135
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/v2.5.3...HEAD
138
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/v2.6.0...HEAD
139
+ [2.6.0]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.3...node/v2.6.0
136
140
  [2.5.3]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.2...node/v2.5.3
137
141
  [2.5.2]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.1...node/v2.5.2
138
142
  [2.5.1]: https://github.com/subquery/subql-ethereum/compare/node/v2.5.0...node/v2.5.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "2.5.4-2",
3
+ "version": "2.6.0",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "Apache-2.0",
@@ -25,7 +25,7 @@
25
25
  "@nestjs/platform-express": "^8.2.6",
26
26
  "@nestjs/schedule": "^1.0.2",
27
27
  "@subql/common": "^2.2.1",
28
- "@subql/common-ethereum": "2.1.3-0",
28
+ "@subql/common-ethereum": "2.1.3",
29
29
  "@subql/node-core": "^2.5.0",
30
30
  "@subql/testing": "^2.0.0",
31
31
  "@subql/types": "^2.1.2",
@@ -67,6 +67,5 @@
67
67
  "files": [
68
68
  "/dist",
69
69
  "/bin"
70
- ],
71
- "stableVersion": "2.5.4-1"
70
+ ]
72
71
  }