Skip to content

Commit ae3de86

Browse files
committed
[release] 20250424
1 parent 3032e77 commit ae3de86

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.yarn/versions/84941eaf.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
undecided:
2+
- "@subql/cli"

packages/node-core/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [18.0.3] - 2025-04-24
10+
### Changed
11+
- Update blockDispactcherFactory args for worker data
12+
913
## [18.0.2] - 2025-04-24
1014
### Changed
1115
- Don't inject MultichainRewindService in workers (#2758)
@@ -965,7 +969,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
965969
### Changed
966970
- Move blockchain agnostic code from `node` to `node-core` package. (#1222)
967971

968-
[Unreleased]: https://github.com/subquery/subql/compare/node-core/18.0.2...HEAD
972+
[Unreleased]: https://github.com/subquery/subql/compare/node-core/18.0.3...HEAD
973+
[18.0.3]: https://github.com/subquery/subql/compare/node-core/18.0.2...node-core/18.0.3
969974
[18.0.2]: https://github.com/subquery/subql/compare/node-core/18.0.1...node-core/18.0.2
970975
[18.0.1]: https://github.com/subquery/subql/compare/node-core/18.0.0...node-core/18.0.1
971976
[18.0.0]: https://github.com/subquery/subql/compare/node-core/17.2.2...node-core/18.0.0

packages/node-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@subql/node-core",
3-
"version": "18.0.2",
3+
"version": "18.0.3",
44
"description": "Common node features that are agnostic to blockchains",
55
"homepage": "https://github.com/subquery/subql",
66
"repository": "github:subquery/subql",

packages/node-core/src/indexer/blockDispatcher/factory.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ import {WorkerBlockDispatcher} from './worker-block-dispatcher';
2525
export const blockDispatcherFactory =
2626
<DS extends BaseDataSource, Block, ApiConn extends IApiConnectionSpecific, Worker extends IBaseIndexerWorker>(
2727
workerPath: string,
28-
workerFns: Parameters<typeof createIndexerWorker<Worker, ApiConn, Block, DS>>[1]
28+
workerFns: Parameters<typeof createIndexerWorker<Worker, ApiConn, Block, DS>>[1],
29+
workerData?: unknown
2930
) =>
3031
(
3132
nodeConfig: NodeConfig,
@@ -43,8 +44,7 @@ export const blockDispatcherFactory =
4344
blockchainService: IBlockchainService<DS>,
4445
indexerManager: IIndexerManager<Block, DS>,
4546
multiChainRewindService: MultiChainRewindService,
46-
monitorService?: MonitorService,
47-
workerData?: unknown
47+
monitorService?: MonitorService
4848
): IBlockDispatcher<Block> => {
4949
return nodeConfig.workers
5050
? new WorkerBlockDispatcher<DS, Worker, Block, ApiConn>(

0 commit comments

Comments
 (0)