veris-cli 2.4.2__tar.gz → 2.4.3__tar.gz
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.
- {veris_cli-2.4.2 → veris_cli-2.4.3}/PKG-INFO +1 -1
- {veris_cli-2.4.2 → veris_cli-2.4.3}/pyproject.toml +1 -1
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/scripts/docker_push.sh +3 -1
- {veris_cli-2.4.2 → veris_cli-2.4.3}/.gitignore +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/README.md +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/__init__.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/api.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/cli.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/config.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/output.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/prompts.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/scripts/__init__.py +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/scripts/docker_build.sh +0 -0
- {veris_cli-2.4.2 → veris_cli-2.4.3}/src/veris_cli/templates.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: veris-cli
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.3
|
|
4
4
|
Summary: CLI to connect local agents to the Veris backend
|
|
5
5
|
Project-URL: Homepage, https://github.com/veris-ai/veris-cli
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/veris-ai/veris-cli/issues
|
|
@@ -23,10 +23,12 @@ trap "rm -rf $TEMP_DOCKER_CONFIG" EXIT
|
|
|
23
23
|
# Preserve credential helpers from the default config.
|
|
24
24
|
# We only copy credHelpers (not the full config) to avoid importing
|
|
25
25
|
# Docker Desktop context references that break in the temp directory.
|
|
26
|
+
# Exclude the target registry from credHelpers so docker login token is used
|
|
27
|
+
# instead of a potentially-stale gcloud credential helper.
|
|
26
28
|
DEFAULT_DOCKER_CONFIG="${HOME}/.docker"
|
|
27
29
|
if [ -f "$DEFAULT_DOCKER_CONFIG/config.json" ]; then
|
|
28
30
|
if command -v jq &> /dev/null; then
|
|
29
|
-
jq '{"credHelpers": (.credHelpers // {})}' "$DEFAULT_DOCKER_CONFIG/config.json" > "$TEMP_DOCKER_CONFIG/config.json"
|
|
31
|
+
jq --arg reg "$REGISTRY" '{"credHelpers": ((.credHelpers // {}) | del(.[$reg]))}' "$DEFAULT_DOCKER_CONFIG/config.json" > "$TEMP_DOCKER_CONFIG/config.json"
|
|
30
32
|
fi
|
|
31
33
|
fi
|
|
32
34
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|