fix(aztec-up): allow offline publish to local verdaccio#23376
Open
AztecBot wants to merge 1 commit into
Open
Conversation
ad2bd92 to
f66631b
Compare
alexghr
approved these changes
May 18, 2026
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.
aztec-up/bootstrap.shspins up a local Verdaccio withproxy: npmjson@*/*and**, then runsdeploy_npmfor each@aztec/*,@noir-lang/*, and@aztec/bb.jspackage. On publish, Verdaccio consults the npmjs uplink for existence/version checks; if the npmjs uplink is briefly unreachable, it returns503 Service Unavailable - one of the uplinks is down, refuse to publishand the wholeaztec-up-test-imagebuild fails (e.g. #23327).This is a "fake publish" path — we never actually consult npmjs for our own scoped packages, we just need verdaccio to accept the PUT. Verdaccio's
publish.allow_offlineopts into exactly that: publishes succeed when uplinks are unreachable.Why this over enumerating namespaces in
packages:without a proxy:@aztec/*(44 packages:@aztec/bb.js+ 43 yarn-project workspaces) and@noir-lang/*(5:types,noir_js,noir_codegen,noirc_abi,acvm_js). A wildcard-per-namespace works today but silently breaks the day a new scope is added.allow_offline: trueis one line, namespace-agnostic, and only changes behaviour during the transient-failure case — the happy path still uses the uplink for normal validation and the**proxy still primes transitive deps.prep_test_macalready runs verdaccio with no uplinks at all (true offline) and is unaffected.Created by claudebox · group:
slackbot