Skip to content

Commit dae3ea2

Browse files
committed
feat(trino): Add 469
1 parent 9525427 commit dae3ea2

File tree

4 files changed

+58
-4
lines changed

4 files changed

+58
-4
lines changed

trino-cli/versions.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
# This image is only used in integration tests and demos.
2+
# It's therefore ok if we only support a single version at a time.
13
versions = [
24
{
3-
"product": "455",
4-
"java-base": "22",
5+
"product": "469",
6+
"java-base": "23",
57
},
68
]
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2+
From: Nick Larsen <[email protected]>
3+
Date: Tue, 4 Feb 2025 10:49:16 +0100
4+
Subject: Add cyclonedx plugin
5+
6+
---
7+
pom.xml | 18 ++++++++++++++++++
8+
1 file changed, 18 insertions(+)
9+
10+
diff --git a/pom.xml b/pom.xml
11+
index 0d27151d77..b1682d7ab3 100644
12+
--- a/pom.xml
13+
+++ b/pom.xml
14+
@@ -2850,6 +2850,24 @@
15+
</excludes>
16+
</configuration>
17+
</plugin>
18+
+ <plugin>
19+
+ <groupId>org.cyclonedx</groupId>
20+
+ <artifactId>cyclonedx-maven-plugin</artifactId>
21+
+ <version>2.9.1</version>
22+
+ <configuration>
23+
+ <projectType>application</projectType>
24+
+ <schemaVersion>1.6</schemaVersion>
25+
+ <skipNotDeployed>false</skipNotDeployed>
26+
+ </configuration>
27+
+ <executions>
28+
+ <execution>
29+
+ <goals>
30+
+ <goal>makeBom</goal>
31+
+ </goals>
32+
+ <phase>package</phase>
33+
+ </execution>
34+
+ </executions>
35+
+ </plugin>
36+
</plugins>
37+
</build>
38+
39+
40+
base-commit: 39ef08e249549a6616916539f4ad21032d084c7a
41+
--
42+
2.40.1
43+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
upstream = "https://github.com/trinodb/trino"
2+
base = "39ef08e249549a6616916539f4ad21032d084c7a"

trino/versions.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,21 @@
33
"product": "451",
44
"java-base": "22",
55
"java-devel": "22",
6-
"jmx_exporter": "1.0.1-stackable",
6+
"jmx_exporter": "1.1.0",
77
"storage_connector": "451",
88
},
99
{
1010
"product": "455",
1111
"java-base": "22",
1212
"java-devel": "22",
13-
"jmx_exporter": "1.0.1-stackable",
13+
"jmx_exporter": "1.1.0",
1414
"storage_connector": "455",
1515
},
16+
{
17+
"product": "469",
18+
"java-base": "23",
19+
"java-devel": "23",
20+
"jmx_exporter": "1.1.0",
21+
"storage_connector": "469",
22+
},
1623
]

0 commit comments

Comments
 (0)