Dependency sweep blocked: package feed blob storage unreachable - #2514
Closed
Derek Worthen (dworthen) with Copilot wants to merge 1 commit into
Closed
Dependency sweep blocked: package feed blob storage unreachable#2514Derek Worthen (dworthen) with Copilot wants to merge 1 commit into
Derek Worthen (dworthen) with Copilot wants to merge 1 commit into
Conversation
Copilot
AI
changed the title
[WIP] Update dependencies to the latest versions
Dependency sweep blocked: package feed blob storage unreachable
Aug 19, 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.
Description
Automated dependency sweep to bump all workspace dependencies to their latest versions via the
update-depsskill. No changes were made — the sweep is blocked by a sandbox firewall restriction that prevents package downloads.Related Issues
Automated dependency update sweep.
Proposed Changes
No dependency or lockfile changes could be produced. Investigation findings:
packagefeedproxy.microsoft.ioserves the simple index (HTTP 200) but 303-redirects every wheel/sdist download to*.vsblob.vsassets.io, which fails DNS resolution (No address associated with hostname).data-core-metadata; the.metadataURL 404s, souvmust download full wheels to resolve — which the block prevents.uv lock --upgradefails fetching metadata for any new version (e.g.pandas 3.0.5);uv sync --all-packagesfails downloading already-locked deps. Checks/tests cannot run without an installed environment.uv.lockleft untouched (no hand-edits, no index overrides).Unblock: allowlist
*.vsblob.vsassets.io(blob CDN backing the MS feed proxy; regional subdomains vary, wildcard required).*.pkgs.visualstudio.comalready resolves.Checklist
Additional Notes
Once
*.vsblob.vsassets.iois reachable, the standard sweep can complete: bump specifiers in the rootdevgroup andpackages/*/pyproject.toml,uv lock --upgrade,uv sync --all-packages, repair fallout, add asemversionerchangelog entry, and verifyuv run poe check+uv run poe test_unit.