Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Node.js 23 and Python 3.13 to the kitchen sink and as per-language versions #309

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/matrix/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
versioned = {
"nodejs": {
"default": "18",
"additional": ["20", "22"]
"additional": ["20", "22", "23"]
},
"python": {
"default": "3.9",
"additional": ["3.10", "3.11", "3.12"]
"additional": ["3.10", "3.11", "3.12", "3.13"]
},
"dotnet": {
"default": "6.0",
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,16 +426,18 @@ jobs:
- uses: actions/checkout@master
- name: Define Matrix for UBI SDK Manifests
id: define-matrix-sdk-manifests
# Filter out the nodejs 22 and version from the matrix, as it is not supported on UBI.
# Filter out the nodejs 22 and 23 versions from the matrix, as they are not supported on UBI.
# https://access.redhat.com/articles/3376841
# Filter out the python 3.10 version from the matrix, as it is not supported on UBI.
# Filter out the python 3.10 and 3.13 versions from the matrix, as they are supported on UBI.
# https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/installing_and_using_dynamic_programming_languages/assembly_introduction-to-python_installing-and-using-dynamic-programming-languages#con_python-versions_assembly_introduction-to-python
run: |
echo matrix=$(python ./.github/scripts/matrix/gen-matrix.py --no-arch |
jq '.include |= map(
select(
(.sdk != "nodejs" or .language_version != "22") and
(.sdk != "python" or .language_version != "3.10")
(.sdk != "nodejs" or .language_version != "23") and
(.sdk != "python" or .language_version != "3.10") and
(.sdk != "python" or .language_version != "3.13")
)
)') >> "$GITHUB_OUTPUT"

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add Node.js 23 and Python 3.13 to the kitchen sink and as per-language versions
([#309](https://github.com/pulumi/pulumi-docker-containers/pull/309)

- Add nonroot variant for the kitchen sink image
([#277](https://github.com/pulumi/pulumi-docker-containers/pull/277)

Expand Down