Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Set up syft
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
- name: Install image-tools-stackabletech
run: pip install image-tools-stackabletech==0.0.5
run: pip install image-tools-stackabletech==0.0.8
- uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
with:
registry: docker.stackable.tech
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preflight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: '3.x'
- run: pip install image-tools-stackabletech
- run: pip install image-tools-stackabletech==0.0.8
- name: Install preflight
run: |
wget https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.1/preflight-linux-amd64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Set up syft
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
- name: Install image-tools-stackabletech
run: pip install image-tools-stackabletech==0.0.5
run: pip install image-tools-stackabletech==0.0.8
- uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
with:
registry: docker.stackable.tech
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ All notable changes to this project will be documented in this file.
- trino: Build from source ([#687]).
- spark: Build from source ([#679])
- all: Moved the LOG4J_FORMAT_MSG_NO_LOOKUPS env variable from the individual Dockerfiles to `java-base` and `java-devel` ([#727])
- all: move product versions into product directory in preparation for individual product build workflows ([#732])

### Fixed

Expand Down Expand Up @@ -102,6 +103,7 @@ All notable changes to this project will be documented in this file.
[#706]: https://github.com/stackabletech/docker-images/pull/706
[#721]: https://github.com/stackabletech/docker-images/pull/721
[#727]: https://github.com/stackabletech/docker-images/pull/727
[#732]: https://github.com/stackabletech/docker-images/pull/732

## [24.3.0] - 2024-03-20

Expand Down
42 changes: 42 additions & 0 deletions airflow/versions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
versions = [
{
"product": "2.6.3",
"python": "3.9",
"git_sync": "v4.2.1",
"statsd_exporter": "0.26.0",
"tini": "0.19.0",
"vector": "0.35.0",
},
{
"product": "2.7.2",
"python": "3.9",
"git_sync": "v4.2.1",
"statsd_exporter": "0.26.0",
"tini": "0.19.0",
"vector": "0.35.0",
},
{
"product": "2.7.3",
"python": "3.9",
"git_sync": "v4.2.1",
"statsd_exporter": "0.26.0",
"tini": "0.19.0",
"vector": "0.35.0",
},
{
"product": "2.8.1",
"python": "3.9",
"git_sync": "v4.2.1",
"statsd_exporter": "0.26.0",
"tini": "0.19.0",
"vector": "0.35.0",
},
{
"product": "2.8.3",
"python": "3.9",
"git_sync": "v4.2.1",
"statsd_exporter": "0.26.0",
"tini": "0.19.0",
"vector": "0.35.0",
},
]
Loading