chore: update references from @talos/client to @oplabs/talos-client, …#2946
Merged
Conversation
…add .npmrc for GitHub package registry configuration WIP 🚧
…oyment workflows to use package token
…stall - contracts/pnpm-workspace.yaml: autoInstallPeers false + exclude @oplabs/talos-client from the release-age gate (matches arm-oeth) - remove accidental root pnpm-workspace.yaml + pnpm-lock.yaml
The real fix for the red install — the deletions-only commit before this missed the file. autoInstallPeers false makes pnpm skip the optional @oplabs/talos-client peer (no 404 without a token); matches arm-oeth.
Matches contracts/pnpm-workspace.yaml so frozen-lockfile installs (CI + Docker) don't hit ERR_PNPM_LOCKFILE_CONFIG_MISMATCH. Settings-only change; a full regen is blocked by an unrelated pre-existing vitest catalog ref.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2946 +/- ##
==========================================
- Coverage 47.33% 46.05% -1.29%
==========================================
Files 110 110
Lines 4920 4920
Branches 1362 1362
==========================================
- Hits 2329 2266 -63
- Misses 2587 2650 +63
Partials 4 4 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
sparrowDom
marked this pull request as ready for review
July 21, 2026 17:16
sparrowDom
requested review from
clement-ux,
naddison36,
shahthepro and
sparrowDom
as code owners
July 21, 2026 17:16
- # syntax=docker/dockerfile:1.10 so the env= secret mount is supported - pnpm add --save-prod (pnpm rejects the no-save option on add)
…ension 1.44 drops @lodestar/config's spurious @lodestar/spec-test-util dependency, which shipped a broken 'vitest: catalog:' that broke any workspace re-resolution (e.g. the runner image's pnpm add step). Also removes the now -dead spec-test-util packageExtension; lockfile shrinks ~600 lines.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Migrates the origin-dollar runner off git-installing
@talos/clientfrom the privateoplabs/talosrepo (SSH deploy key) to the published@oplabs/talos-clientGitHub Package. Companion tooplabs/talos#19(which publishes it) andOriginProtocol/arm-oeth#305.Changes
@talos/client→@oplabs/talos-client, declared as an optional peer dependency; the runner Dockerfile installs the pinned version with aread:packagesPAT (TALOS_PACKAGE_TOKENsecret). No more SSH deploy key / git install.autoInstallPeers: false(pnpm-workspace.yaml+ lockfile) so pnpm never tries to resolve the optional peer without a token — token-lesspnpm installpasses locally, in CI, and in the Docker build.requireof the client incontracts/utils/signers.js, behind theDATABASE_URLgate, so hardhat boots when the optional package is absent.# syntax=docker/dockerfile:1.10(for theenv=secret mount) +pnpm add --save-prod.@lodestar^1.41.0 → ^1.44.0(the one non-obvious change — worth a look): 1.44 drops@lodestar/config's spurious@lodestar/spec-test-utildependency, which shipped a brokenvitest: "catalog:"that broke any workspace re-resolution (i.e. the runner image'spnpm add). Net lockfile shrink (~600 lines); retired the now-deadspec-test-utilpackageExtension.@oplabs/talos-client@0.0.28; remove an accidental rootpnpm-workspace.yaml/pnpm-lock.yaml.Validation
mastertoo and is unrelated to@lodestar(Base is L2, no consensus-layer usage).pnpm add @oplabs/talos-client@0.0.28).