@forzalabs/remora 1.2.9 → 1.2.11
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 +7 -0
- package/index.js +517 -301
- package/json_schemas/consumer-schema.json +4 -0
- package/package.json +1 -1
- package/workers/ExecutorWorker.js +513 -294
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## V 1.2.11 - 2026-06-30
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Added `lineCount` as a consumer field property, allowing consumers to emit a consistent 1-based source line number even when files are processed across multiple workers
|
|
13
|
+
- Added a dedicated `ConsumerExecutor` post-processing pass to normalize `lineCount` values after worker merge, with tracked execution timing similar to other dataset-level steps
|
|
14
|
+
- Added `lineCount` test coverage to canary and CLI consumer configurations for easier verification of the feature
|
|
15
|
+
|
|
9
16
|
## V 1.2.2 - 2026-04-10
|
|
10
17
|
|
|
11
18
|
### Added
|