@subql/node-ethereum 3.3.2-1 → 3.3.3-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 +10 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/dictionary.service.js +7 -4
- package/dist/indexer/dictionary.service.js.map +1 -1
- package/dist/yargs.d.ts +1 -227
- package/dist/yargs.js +7 -265
- package/dist/yargs.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ 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
|
+
### Changed
|
|
9
|
+
- Updates to match changes in `@subql/node-core` (#210)
|
|
10
|
+
- Dictionary service to use dictionary registry
|
|
11
|
+
- Use yargs from node core
|
|
12
|
+
|
|
13
|
+
## [3.3.2] - 2023-11-08
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fixed docker build pipeline, release to re-publish docker image(#207)
|
|
8
16
|
|
|
9
17
|
## [3.3.1] - 2023-11-08
|
|
10
18
|
### Fixed
|
|
@@ -316,7 +324,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
316
324
|
### Added
|
|
317
325
|
- Init release
|
|
318
326
|
|
|
319
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.
|
|
327
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.2...HEAD
|
|
328
|
+
[3.3.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.1...node-ethereum/3.3.2
|
|
320
329
|
[3.3.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.0...node-ethereum/3.3.1
|
|
321
330
|
[3.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.2...node-ethereum/3.3.0
|
|
322
331
|
[3.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.1...node-ethereum/3.1.2
|