Skip to content

Commit c0050c6

Browse files
authored
chore: Add supoort for trino 479, remove support for 451 and 476 (#839)
* chore: Add supoort for trino 479, remove support for 451 and 476 * test: Add trino 479, remove 451 and 476 * docs: Update supported versions * docs: Update getting started to use 479 * chore: Update changelog * docs: Update trino to 479 * test: Update trino to 479 * docs: Update getting started to use trino-cli 479 * docs: Update trino-cli to 479
1 parent e8a3b8a commit c0050c6

25 files changed

Lines changed: 49 additions & 63 deletions

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
99
- Support objectOverrides using `.spec.objectOverrides`.
1010
See [objectOverrides concepts page](https://docs.stackable.tech/home/nightly/concepts/overrides/#object-overrides) for details ([#831]).
1111
- Enable the [restart-controller](https://docs.stackable.tech/home/nightly/commons-operator/restarter/), so that the Pods are automatically restarted on config changes ([#833]).
12+
- Add support for Trino 479 ([#839]).
1213
- Add `enableColumnMasking` field to `opa` configuration in `authorization` ([#827]).
1314
- Support batched column masks in Rego rules ([#827]).
1415

@@ -19,9 +20,14 @@ All notable changes to this project will be documented in this file.
1920
- BREAKING: The operator no longer sets `opa.policy.column-masking-uri` in `access-control.properties` but
2021
`opa.policy.batch-column-masking-uri` instead, allowing Trino to fetch multiple column masks in a single request ([#827]).
2122

23+
### Removed
24+
25+
- Remove support for Trino 451 and 476 ([#839]).
26+
27+
[#827]: https://github.com/stackabletech/trino-operator/pull/827
2228
[#831]: https://github.com/stackabletech/trino-operator/pull/831
2329
[#833]: https://github.com/stackabletech/trino-operator/pull/833
24-
[#827]: https://github.com/stackabletech/trino-operator/pull/827
30+
[#839]: https://github.com/stackabletech/trino-operator/pull/839
2531

2632
## [25.11.0] - 2025-11-07
2733

docs/modules/trino/examples/getting_started/code/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ sleep 5
7777
echo "Start testing Trino"
7878
echo "Downloading Trino CLI tool as trino.jar"
7979
# tag::download-trino-cli[]
80-
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-477
80+
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-479
8181
# end::download-trino-cli[]
8282

8383
echo "Run chmod +x for trino.jar"

docs/modules/trino/examples/getting_started/code/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ sleep 5
7777
echo "Start testing Trino"
7878
echo "Downloading Trino CLI tool as trino.jar"
7979
# tag::download-trino-cli[]
80-
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-477
80+
curl --fail --output trino.jar https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-479
8181
# end::download-trino-cli[]
8282

8383
echo "Run chmod +x for trino.jar"

docs/modules/trino/examples/getting_started/code/trino.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "477"
8+
productVersion: "479"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/getting_started/code/trino.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-trino
66
spec:
77
image:
8-
productVersion: "477"
8+
productVersion: "479"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/usage-guide/fault-tolerant-execution.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: trino-fault-tolerant
66
spec:
77
image:
8-
productVersion: "477"
8+
productVersion: "479"
99
clusterConfig:
1010
catalogLabelSelector:
1111
matchLabels:

docs/modules/trino/examples/usage-guide/trino-insecure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "477"
20+
productVersion: "479"
2121
clusterConfig:
2222
catalogLabelSelector:
2323
matchLabels:

docs/modules/trino/examples/usage-guide/trino-secure-internal-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "477"
20+
productVersion: "479"
2121
clusterConfig:
2222
tls:
2323
internalSecretClass: trino-internal-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls-only.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "477"
20+
productVersion: "479"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

docs/modules/trino/examples/usage-guide/trino-secure-tls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: simple-trino
1818
spec:
1919
image:
20-
productVersion: "477"
20+
productVersion: "479"
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: trino-tls # <1>

0 commit comments

Comments
 (0)