Skip to content

Commit 09855cf

Browse files
committed
fix: revert speculative engine pin and fix hardcoded version assertions
release-please regenerated this branch from current main, which reintroduced two issues already fixed once on the branch's prior incarnation: - packages/gittensory-miner/package.json's @loopover/engine dependency was speculatively cross-bumped to an exact "2.0.0" pin by release-please's node-workspace plugin, matching the engine component's own still-open, still-unpublished release PR (#5713). The local workspace member is still 1.0.0 on this branch (main hasn't merged that bump), and 2.0.0 isn't on the npm registry either, so npm ci failed with ETARGET. Reverted to "*" so the workspace-local link resolves regardless of which sibling version lands first, and dropped the now-inaccurate CHANGELOG "Dependencies" section. - test/unit/miner-cli.test.ts hardcoded "0.1.0" in the two assertions that check the real package/CLI version, stale against this cut's real 1.0.0.
1 parent ee48eef commit 09855cf

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

packages/gittensory-miner/CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,3 @@
139139
* **miner:** wire recordOwnSubmission's write side into the real attempt pipeline ([#5678](https://github.com/JSONbored/gittensory/issues/5678)) ([ebb540d](https://github.com/JSONbored/gittensory/commit/ebb540d51c5ffa67581fb7e018e2ce9d439b8a30))
140140
* **miner:** write acceptance criteria safely ([#5322](https://github.com/JSONbored/gittensory/issues/5322)) ([dada3ec](https://github.com/JSONbored/gittensory/commit/dada3ecb39fde4f6bd43ba01ca4ee080e642caca))
141141
* **observability:** avoid exposing live AMS ledgers ([#5471](https://github.com/JSONbored/gittensory/issues/5471)) ([2fd9196](https://github.com/JSONbored/gittensory/commit/2fd91962aff3cd43d2afa0f6fcbf51383c524ec5))
142-
143-
144-
### Dependencies
145-
146-
* The following workspace dependencies were updated
147-
* dependencies
148-
* @loopover/engine bumped from * to 2.0.0

packages/gittensory-miner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"build": "node --check bin/gittensory-miner.js && node --check bin/gittensory-miner-mcp.js && node --check lib/ams-policy.js && node --check lib/attempt-cli.js && node --check lib/attempt-input-builder.js && node --check lib/attempt-log.js && node --check lib/attempt-runner.js && node --check lib/attempt-worktree.js && node --check lib/calibration-run.js && node --check lib/calibration-types.js && node --check lib/calibration.js && node --check lib/ci-poller.js && node --check lib/claim-adjudication.js && node --check lib/claim-conflict-resolver.js && node --check lib/claim-ledger-cli.js && node --check lib/claim-ledger-expiry.js && node --check lib/claim-ledger.js && node --check lib/cli.js && node --check lib/coding-agent-construction.js && node --check lib/coding-agent-house-rules.js && node --check lib/coding-task-spec.js && node --check lib/deny-check.js && node --check lib/deny-hook-synthesis.js && node --check lib/deny-hooks.js && node --check lib/deployment-docs-audit.js && node --check lib/discover-cli.js && node --check lib/event-ledger-cli.js && node --check lib/event-ledger.js && node --check lib/execute-local-write.js && node --check lib/feasibility-cli.js && node --check lib/governor-action-mode.js && node --check lib/governor-chokepoint-persisted.js && node --check lib/governor-chokepoint.js && node --check lib/governor-kill-switch.js && node --check lib/governor-ledger-cli.js && node --check lib/governor-ledger.js && node --check lib/governor-metrics-cli.js && node --check lib/governor-open-pr.js && node --check lib/governor-pause-cli.js && node --check lib/governor-run-halt.js && node --check lib/governor-state.js && node --check lib/governor-write-rate-limit.js && node --check lib/harness-submission-trigger.js && node --check lib/init-wizard.js && node --check lib/laptop-init.js && node --check lib/live-issue-snapshot.js && node --check lib/local-store.js && node --check lib/logger.js && node --check lib/loop-cli.js && node --check lib/loop-closure.js && node --check lib/loop-reentry.js && node --check lib/manage-poll.js && node --check lib/manage-status.js && node --check lib/metrics-cli.js && node --check lib/miner-goal-spec.js && node --check lib/opportunity-fanout.js && node --check lib/opportunity-ranker.js && node --check lib/orb-export.js && node --check lib/plan-store-cli.js && node --check lib/plan-store.js && node --check lib/policy-doc-cache.js && node --check lib/policy-verdict-cache.js && node --check lib/portfolio-dashboard.js && node --check lib/portfolio-discovery.js && node --check lib/portfolio-queue-cli.js && node --check lib/portfolio-queue-manager.js && node --check lib/portfolio-queue.js && node --check lib/portfolio-queue-expiry.js && node --check lib/pr-disposition-poller.js && node --check lib/pr-number-parse.js && node --check lib/pr-outcome.js && node --check lib/prediction-ledger.js && node --check lib/pretooluse-hook.js && node --check lib/purge-cli.js && node --check lib/ranked-candidates.js && node --check lib/rejection-signal.js && node --check lib/rejection-state-machine.js && node --check lib/rejection-templates.js && node --check lib/replay-objective-anchor.js && node --check lib/replay-snapshot.js && node --check lib/replay-task-generation.js && node --check lib/repo-clone.js && node --check lib/run-state-cli.js && node --check lib/run-state.js && node --check lib/self-review-context.js && node --check lib/slop-assessment.js && node --check lib/stack-detection.js && node --check lib/status.js && node --check lib/submission-freshness-check.js && node --check lib/update-check.js && node --check lib/version.js && node --check lib/worktree-allocator.js"
4242
},
4343
"dependencies": {
44-
"@loopover/engine": "2.0.0",
44+
"@loopover/engine": "*",
4545
"@modelcontextprotocol/sdk": "1.29.0",
4646
"zod": "^4.4.3"
4747
},

test/unit/miner-cli.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe("gittensory-miner CLI helpers", () => {
100100
"../../packages/gittensory-miner/package.json",
101101
{ with: { type: "json" } }
102102
);
103-
expect(packageJson.default.version).toBe("0.1.0");
103+
expect(packageJson.default.version).toBe("1.0.0");
104104
});
105105
});
106106

@@ -319,7 +319,7 @@ describe("gittensory-miner startup update check (#2331)", () => {
319319

320320
it("serves --version without blocking when update checks are disabled", () => {
321321
const output = runCapture(["--version", "--no-update-check"]);
322-
expect(output).toContain("@loopover/miner/0.1.0");
322+
expect(output).toContain("@loopover/miner/1.0.0");
323323
});
324324

325325
it("serves --help immediately without waiting for a slow registry check", async () => {

0 commit comments

Comments
 (0)