[universal] - Update toolings and vulnerability fix#1820
Merged
abdurriq merged 4 commits intodevcontainers:mainfrom Apr 9, 2026
Merged
[universal] - Update toolings and vulnerability fix#1820abdurriq merged 4 commits intodevcontainers:mainfrom
abdurriq merged 4 commits intodevcontainers:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Universal dev container image/tooling to newer Python/Ruby versions, applies a security patch for GHSA-r6ph-v2qm-q3c2 (Conda/OpenSSL-related), and aligns tests + documentation with the new image version.
Changes:
- Bump Universal image version to 6.0.1 and update README tag example.
- Update Universal devcontainer feature pins for Python and Ruby.
- Update Conda patching and test expectations for
cryptography/pyopensslversions.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/universal/test-project/test.sh | Removes Python 3.11-specific checks; updates Conda package version expectations. |
| src/universal/manifest.json | Bumps Universal image version from 6.0.0 to 6.0.1. |
| src/universal/README.md | Updates documented example tag to 6.0.1-noble. |
| src/universal/.devcontainer/local-features/patch-python/install.sh | Removes Python 3.11-specific patching logic (script now effectively no-ops). |
| src/universal/.devcontainer/local-features/patch-conda/install.sh | Updates vulnerability reference and bumps cryptography/pyopenssl versions (mixes conda + pip). |
| src/universal/.devcontainer/devcontainer.json | Updates Python and Ruby feature version pins. |
Comments suppressed due to low confidence (1)
src/universal/.devcontainer/local-features/patch-python/install.sh:41
patch-python/install.shnow only definesupdate_packageand then exits without applying any updates. If this feature is no longer needed (now that Python 3.11 is removed), consider removing thepatch-pythonfeature entirely from the universal build/test configuration; otherwise add the intended package update calls so the feature actually patches something.
update_package() {
PYTHON_PATH=$1
PACKAGE=$2
VERSION=$3
sudo_if "$PYTHON_PATH -m pip uninstall --yes $PACKAGE"
sudo_if "$PYTHON_PATH -m pip install --upgrade --no-cache-dir $PACKAGE==$VERSION"
sudo_if "$PYTHON_PATH -m pip show --no-python-version-warning $PACKAGE"
}
abdurriq
approved these changes
Apr 1, 2026
abdurriq
previously approved these changes
Apr 1, 2026
abdurriq
reviewed
Apr 2, 2026
abdurriq
approved these changes
Apr 2, 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.
Changelog: The following files are changed.
9.39.2+wherejsonc-eslint-parserdropped its default export, breaking the old importjsoncParserfromjsonc-eslint-parser. Using FlatCompat as a workaround then caused a circular structure error. The native flat config avoids both issues. Removed@eslint/eslintrc (FlatCompat)andjsonc-eslint-parserimports as both are no longer needed. Added direct import ofeslint-plugin-jsonc, which natively supports ESLint flat config.Checklist: