This is an automated email from the ASF dual-hosted git repository.

yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 12ad7e5ee1 [#10334] fix(trino-connector): Update base Trino docker 
image version from 469 to 478 (#10342)
12ad7e5ee1 is described below

commit 12ad7e5ee1ed726491c2257d93ab134bfb7e71a4
Author: Yuhui <[email protected]>
AuthorDate: Tue Mar 10 23:10:17 2026 +0800

    [#10334] fix(trino-connector): Update base Trino docker image version from 
469 to 478 (#10342)
    
    ### What changes were proposed in this pull request?
    
    Update the base Trino image in the playground Dockerfile from
    `trinodb/trino:469` to `trinodb/trino:478`.
    
    ### Why are the changes needed?
    
    The playground Docker image was using `trinodb/trino:469` as the base
    image, but the Gravitino Trino connector only supports versions 473-478.
    This mismatch caused a startup failure:
    
    ```
    Unsupported Trino-469 version. The Supported version for the 
Gravitino-Trino-connector from Trino-473 to Trino-478.
    ```
    
    Fix: #10334
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    The fix aligns the base image version with the supported connector
    version range (473-478).
---
 dev/docker/trino/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/docker/trino/Dockerfile b/dev/docker/trino/Dockerfile
index 7684283779..02e6f42767 100644
--- a/dev/docker/trino/Dockerfile
+++ b/dev/docker/trino/Dockerfile
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-FROM trinodb/trino:469
+FROM trinodb/trino:478
 LABEL maintainer="[email protected]"
 
 USER root

Reply via email to