@subql/node-ethereum 4.3.0 → 4.3.2-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 +8 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/dictionary/v2/utils.spec.js +1 -1
- package/dist/indexer/dictionary/v2/utils.spec.js.map +1 -1
- package/dist/indexer/indexer.manager.d.ts +1 -0
- package/dist/indexer/indexer.manager.js +3 -0
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
### Fixed
|
|
9
|
+
- Wrong value being injected for unsafeApi into sandbox (#291)
|
|
10
|
+
|
|
11
|
+
## [4.3.1] - 2024-05-02
|
|
12
|
+
### Fixed
|
|
13
|
+
- Sandbox Uint8Array and missing pg dep issue
|
|
8
14
|
|
|
9
15
|
## [4.3.0] - 2024-05-02
|
|
10
16
|
### Changed
|
|
@@ -462,7 +468,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
462
468
|
### Added
|
|
463
469
|
- Init release
|
|
464
470
|
|
|
465
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.3.
|
|
471
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.3.1...HEAD
|
|
472
|
+
[4.3.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.3.0...node-ethereum/4.3.1
|
|
466
473
|
[4.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.2.0...node-ethereum/4.3.0
|
|
467
474
|
[4.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.1...node-ethereum/4.2.0
|
|
468
475
|
[4.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.0...node-ethereum/4.1.1
|