You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ki...@apache.org on 2022/08/10 07:21:00 UTC

[trafficserver-ingress-controller] branch master updated: Upgrade ATS 9.1.3 and GO 1.18.5 (#137)

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

kichan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new b81057c  Upgrade ATS 9.1.3 and GO 1.18.5 (#137)
b81057c is described below

commit b81057ce5e995599e00a0c31b124f3aacf159d46
Author: Kit Chan <ki...@apache.org>
AuthorDate: Wed Aug 10 00:20:56 2022 -0700

    Upgrade ATS 9.1.3 and GO 1.18.5 (#137)
    
    * Upgrade ATS 9.1.3 and GO 1.18.5
    
    * fix security problem with zlib
---
 Dockerfile | 8 ++++----
 GO_VERSION | 2 +-
 README.md  | 2 +-
 go.mod     | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index a95b1f5..8b0d28e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,7 +22,7 @@ RUN apk add --no-cache --virtual .tools \
 
 # ATS dependencies
 RUN apk add --no-cache --virtual .ats-build-deps \
-  build-base openssl-dev tcl-dev pcre-dev zlib-dev \
+  build-base openssl-dev tcl-dev pcre-dev zlib-dev=1.2.12-r3 \
   libexecinfo-dev linux-headers libunwind-dev \
   brotli-dev jansson-dev luajit-dev readline-dev geoip-dev 
 
@@ -33,8 +33,8 @@ RUN addgroup -Sg 1000 ats
 RUN adduser -S -D -H -u 1000 -h /tmp -s /sbin/nologin -G ats -g ats ats
 
 # download and build ATS
-RUN curl -L https://downloads.apache.org/trafficserver/trafficserver-9.1.2.tar.bz2 | bzip2 -dc | tar xf - \
-  && cd trafficserver-9.1.2/ \
+RUN curl -L https://downloads.apache.org/trafficserver/trafficserver-9.1.3.tar.bz2 | bzip2 -dc | tar xf - \
+  && cd trafficserver-9.1.3/ \
   && autoreconf -if \
   && ./configure --enable-debug=yes --prefix=/opt/ats --with-user=ats \
   && make \
@@ -126,7 +126,7 @@ RUN apk add --no-cache -U \
     build-base \
     curl ca-certificates \
     pcre \
-    zlib \
+    zlib=1.2.12-r3 \
     openssl \
     brotli \
     jansson \
diff --git a/GO_VERSION b/GO_VERSION
index 4512502..8e8b0a9 100644
--- a/GO_VERSION
+++ b/GO_VERSION
@@ -1 +1 @@
-1.17.12
+1.18.5
diff --git a/README.md b/README.md
index 3521eea..ef93a9a 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ Card](https://goreportcard.com/badge/github.com/apache/trafficserver-ingress-con
 
 ## Versions of Software Used
 - Alpine Linux 3.14.7
-- Apache Traffic Server 9.1.2
+- Apache Traffic Server 9.1.3
 - LuaJIT 2.0.4
 - Go (Version can be found in `GO_VERSION` file found at the base of this repository)
 - Other Packages
diff --git a/go.mod b/go.mod
index beab8ef..7511365 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
 module github.com/apache/trafficserver-ingress-controller
 
-go 1.17
+go 1.18
 
 require (
 	github.com/alicebob/miniredis/v2 v2.13.0