Skip to content

Commit 6f32c11

Browse files
authored
chore: move product versions into product directory in preparation for individual product build workflows (#732)
* chore: move product versions into product directory in preparation for individual product build workflows * chore: update changelog * ci: bump image-tools version to 0.0.8
1 parent 2c175ff commit 6f32c11

29 files changed

Lines changed: 487 additions & 424 deletions

File tree

.github/workflows/dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Set up syft
7777
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
7878
- name: Install image-tools-stackabletech
79-
run: pip install image-tools-stackabletech==0.0.5
79+
run: pip install image-tools-stackabletech==0.0.8
8080
- uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
8181
with:
8282
registry: docker.stackable.tech

.github/workflows/preflight.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
7171
with:
7272
python-version: '3.x'
73-
- run: pip install image-tools-stackabletech
73+
- run: pip install image-tools-stackabletech==0.0.8
7474
- name: Install preflight
7575
run: |
7676
wget https://github.com/redhat-openshift-ecosystem/openshift-preflight/releases/download/1.9.1/preflight-linux-amd64

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Set up syft
6464
uses: anchore/sbom-action/download-syft@e8d2a6937ecead383dfe75190d104edd1f9c5751 # v0.16.0
6565
- name: Install image-tools-stackabletech
66-
run: pip install image-tools-stackabletech==0.0.5
66+
run: pip install image-tools-stackabletech==0.0.8
6767
- uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
6868
with:
6969
registry: docker.stackable.tech

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ All notable changes to this project will be documented in this file.
4848
- trino: Build from source ([#687]).
4949
- spark: Build from source ([#679])
5050
- all: Moved the LOG4J_FORMAT_MSG_NO_LOOKUPS env variable from the individual Dockerfiles to `java-base` and `java-devel` ([#727])
51+
- all: move product versions into product directory in preparation for individual product build workflows ([#732])
5152

5253
### Fixed
5354

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

106108
## [24.3.0] - 2024-03-20
107109

airflow/versions.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
versions = [
2+
{
3+
"product": "2.6.3",
4+
"python": "3.9",
5+
"git_sync": "v4.2.1",
6+
"statsd_exporter": "0.26.0",
7+
"tini": "0.19.0",
8+
"vector": "0.35.0",
9+
},
10+
{
11+
"product": "2.7.2",
12+
"python": "3.9",
13+
"git_sync": "v4.2.1",
14+
"statsd_exporter": "0.26.0",
15+
"tini": "0.19.0",
16+
"vector": "0.35.0",
17+
},
18+
{
19+
"product": "2.7.3",
20+
"python": "3.9",
21+
"git_sync": "v4.2.1",
22+
"statsd_exporter": "0.26.0",
23+
"tini": "0.19.0",
24+
"vector": "0.35.0",
25+
},
26+
{
27+
"product": "2.8.1",
28+
"python": "3.9",
29+
"git_sync": "v4.2.1",
30+
"statsd_exporter": "0.26.0",
31+
"tini": "0.19.0",
32+
"vector": "0.35.0",
33+
},
34+
{
35+
"product": "2.8.3",
36+
"python": "3.9",
37+
"git_sync": "v4.2.1",
38+
"statsd_exporter": "0.26.0",
39+
"tini": "0.19.0",
40+
"vector": "0.35.0",
41+
},
42+
]

0 commit comments

Comments
 (0)