Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Traefik to v2.5.0-rc6 #10718

Conversation

ldez
Copy link
Contributor

@ldez ldez commented Aug 13, 2021

Hello,

This PR updates Traefik to v2.5.0-rc6.

/cc @ddtmachado @mpl @jbdoumenjou

Cheers

@github-actions
Copy link

Diff for 09e315e:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index ccd4d69..b1c4d2a 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -26,16 +26,16 @@ GitCommit: ae84d69ecdfbcfeb37a1d727060bcb73db71a213
 Directory: windows/1809
 Constraints: windowsservercore-1809
 
-Tags: v2.5.0-rc5, 2.5.0-rc5, v2.5, 2.5, brie
+Tags: v2.5.0-rc6, 2.5.0-rc6, v2.5, 2.5, brie
 Architectures: amd64, arm32v6, arm64v8
 GitRepo: https://github.com/traefik/traefik-library-image.git
-GitCommit: 12c45824c07644abb315508f20c4e77c83b0fa28
+GitCommit: 03801f145800769a5965bb4b155b9f3d9ba8a2db
 Directory: alpine
 
-Tags: v2.5.0-rc5-windowsservercore-1809, 2.5.0-rc5-windowsservercore-1809, v2.5-windowsservercore-1809, 2.5-windowsservercore-1809, brie-windowsservercore-1809
+Tags: v2.5.0-rc6-windowsservercore-1809, 2.5.0-rc6-windowsservercore-1809, v2.5-windowsservercore-1809, 2.5-windowsservercore-1809, brie-windowsservercore-1809
 Architectures: windows-amd64
 GitRepo: https://github.com/traefik/traefik-library-image.git
-GitCommit: 12c45824c07644abb315508f20c4e77c83b0fa28
+GitCommit: 03801f145800769a5965bb4b155b9f3d9ba8a2db
 Directory: windows/1809
 Constraints: windowsservercore-1809
 
diff --git a/_bashbrew-list b/_bashbrew-list
index e8c1a40..902118f 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -10,8 +10,8 @@ traefik:2.4.13
 traefik:2.4.13-windowsservercore-1809
 traefik:2.5
 traefik:2.5-windowsservercore-1809
-traefik:2.5.0-rc5
-traefik:2.5.0-rc5-windowsservercore-1809
+traefik:2.5.0-rc6
+traefik:2.5.0-rc6-windowsservercore-1809
 traefik:brie
 traefik:brie-windowsservercore-1809
 traefik:latest
@@ -32,6 +32,6 @@ traefik:v2.4.13
 traefik:v2.4.13-windowsservercore-1809
 traefik:v2.5
 traefik:v2.5-windowsservercore-1809
-traefik:v2.5.0-rc5
-traefik:v2.5.0-rc5-windowsservercore-1809
+traefik:v2.5.0-rc6
+traefik:v2.5.0-rc6-windowsservercore-1809
 traefik:windowsservercore-1809
diff --git a/traefik_brie-windowsservercore-1809/Dockerfile b/traefik_brie-windowsservercore-1809/Dockerfile
index 79f9c92..deb409c 100644
--- a/traefik_brie-windowsservercore-1809/Dockerfile
+++ b/traefik_brie-windowsservercore-1809/Dockerfile
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:1809
 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
 
 RUN Invoke-WebRequest \
-        -Uri "https://github.com/traefik/traefik/releases/download/v2.5.0-rc5/traefik_v2.5.0-rc5_windows_amd64.zip" \
+        -Uri "https://github.com/traefik/traefik/releases/download/v2.5.0-rc6/traefik_v2.5.0-rc6_windows_amd64.zip" \
         -OutFile "/traefik.zip"; \
     Expand-Archive -Path "/traefik.zip" -DestinationPath "/" -Force; \
     Remove-Item "/traefik.zip" -Force
@@ -15,5 +15,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
     org.opencontainers.image.url="https://traefik.io" \
     org.opencontainers.image.title="Traefik" \
     org.opencontainers.image.description="A modern reverse-proxy" \
-    org.opencontainers.image.version="v2.5.0-rc5" \
+    org.opencontainers.image.version="v2.5.0-rc6" \
     org.opencontainers.image.documentation="https://docs.traefik.io"
diff --git a/traefik_brie/Dockerfile b/traefik_brie/Dockerfile
index 1dd0aec..beed892 100644
--- a/traefik_brie/Dockerfile
+++ b/traefik_brie/Dockerfile
@@ -8,7 +8,7 @@ RUN set -ex; \
 		x86_64) arch='amd64' ;; \
 		*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
 	esac; \
-	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.5.0-rc5/traefik_v2.5.0-rc5_linux_$arch.tar.gz"; \
+	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v2.5.0-rc6/traefik_v2.5.0-rc6_linux_$arch.tar.gz"; \
 	tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; \
 	rm -f /tmp/traefik.tar.gz; \
 	chmod +x /usr/local/bin/traefik
@@ -22,5 +22,5 @@ LABEL org.opencontainers.image.vendor="Traefik Labs" \
 	org.opencontainers.image.url="https://traefik.io" \
 	org.opencontainers.image.title="Traefik" \
 	org.opencontainers.image.description="A modern reverse-proxy" \
-	org.opencontainers.image.version="v2.5.0-rc5" \
+	org.opencontainers.image.version="v2.5.0-rc6" \
 	org.opencontainers.image.documentation="https://docs.traefik.io"

@tianon tianon merged commit f9ab196 into docker-library:master Aug 13, 2021
@ldez ldez deleted the traefik-new-version-03801f145800769a5965bb4b155b9f3d9ba8a2db branch August 13, 2021 17:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants