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

Registry v3.rc-1 release #17862

Merged
merged 1 commit into from
Nov 8, 2024
Merged

Conversation

milosgajdos
Copy link
Contributor

Signed-off-by: Milos Gajdos <[email protected]>
@milosgajdos milosgajdos requested a review from a team as a code owner November 8, 2024 07:32
Copy link

github-actions bot commented Nov 8, 2024

Diff for 63d4ee7:
diff --git a/_bashbrew-arches b/_bashbrew-arches
index 6e2b82c..f36cdf9 100644
--- a/_bashbrew-arches
+++ b/_bashbrew-arches
@@ -3,4 +3,5 @@ arm32v6
 arm32v7
 arm64v8
 ppc64le
+riscv64
 s390x
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 50f4ff6..7e11a13 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -5,6 +5,6 @@ Tags: 2.8.3, 2.8, 2, latest
 Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
 GitCommit: 39dd72feaab7066334829d6945c54bc51a0aee98
 
-Tags: 3.0.0-beta.1
-Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, s390x
-GitCommit: a943e89c3efe06134cd9a4b439203c5341082cbc
+Tags: 3.0.0-rc.1
+Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, riscv64, s390x
+GitCommit: be4eca0a5f3af34a026d1e9294d63f3464c06131
diff --git a/_bashbrew-list b/_bashbrew-list
index 72d3c92..8d010b3 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,5 +1,5 @@
 registry:2
 registry:2.8
 registry:2.8.3
-registry:3.0.0-beta.1
+registry:3.0.0-rc.1
 registry:latest
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 576583f..1edc3dc 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,2 +1,2 @@
-registry:3.0.0-beta.1
+registry:3.0.0-rc.1
 registry:latest
diff --git a/registry_3.0.0-beta.1/Dockerfile b/registry_3.0.0-rc.1/Dockerfile
similarity index 50%
rename from registry_3.0.0-beta.1/Dockerfile
rename to registry_3.0.0-rc.1/Dockerfile
index 949b653..dacf944 100644
--- a/registry_3.0.0-beta.1/Dockerfile
+++ b/registry_3.0.0-rc.1/Dockerfile
@@ -4,15 +4,16 @@ RUN apk add --no-cache ca-certificates
 
 RUN set -eux; \
 # https://github.com/distribution/distribution/releases
-	version='3.0.0-beta.1'; \
+	version='3.0.0-rc.1'; \
 	apkArch="$(apk --print-arch)"; \
 	case "$apkArch" in \
-		x86_64)  arch='amd64';   sha256='96344f15da3ddbef8cf300f9642d03a2b0a7aaa0b593dfe89a9ad266c5aa4ff4' ;; \
-		aarch64) arch='arm64';   sha256='62e3e0c168f62ac274672446a3f6ea89ebdfedc6630e4b02d93900b7022dbe88' ;; \
-		armhf)   arch='armv6';   sha256='01a5373d1e05bf539a1ddf5892c3bfa7377bbc02b340f6260eb7a3c62da99897' ;; \
-		armv7)   arch='armv7';   sha256='fb3748b3108950ba3a0b2868f4cd2317ab308d7436944bdcd3ac62f734b68eb5' ;; \
-		ppc64le) arch='ppc64le'; sha256='eccd060cf2d0d801fad27994d09aa43c945629cff7664f5d27bee9698b58f2a6' ;; \
-		s390x)   arch='s390x';   sha256='b4c415a28c9d58453455068542e92b94b080dbbbc6e990f2360098a64756c71d' ;; \
+		x86_64)  arch='amd64';   sha256='ca7a81752601dcfbc6e6c00fb5b87fd117ac35553e3025b40033e03945077bb0' ;; \
+		aarch64) arch='arm64';   sha256='47b45df09919e89091c7e9225b92b75b41fe6bdf5767793a26de011c046f88e3' ;; \
+		armhf)   arch='armv6';   sha256='6cbf67de5f0e2927f0a4e0863bbc88f8831aaf94348c2f930a411aebcb6ca694' ;; \
+		armv7)   arch='armv7';   sha256='4819de376733af19427ce4f5b0944db195f0e5f8bfd93e46e6c5784ad50d53b6' ;; \
+		ppc64le) arch='ppc64le'; sha256='3289e9012133947f28a85c29f667755f6ad63856dd3b8891aa5a46443813a3f7' ;; \
+		s390x)   arch='s390x';   sha256='2d0026e09fec4b0bd4dafddf6ab1b22c6ea19ab49c866ec0ec8dd8fe12f6ef21' ;; \
+                riscv64) arch='riscv64'; sha256='32ae070e57596dab3b23dd48877069792a70fe13e9b429c498cfee6b56be860a' ;; \
 		*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; \
 	esac; \
 	wget -O registry.tar.gz "https://github.com/distribution/distribution/releases/download/v${version}/registry_${version}_linux_${arch}.tar.gz"; \
diff --git a/registry_3.0.0-beta.1/config-example.yml b/registry_3.0.0-rc.1/config-example.yml
similarity index 100%
rename from registry_3.0.0-beta.1/config-example.yml
rename to registry_3.0.0-rc.1/config-example.yml
diff --git a/registry_3.0.0-beta.1/entrypoint.sh b/registry_3.0.0-rc.1/entrypoint.sh
similarity index 100%
rename from registry_3.0.0-beta.1/entrypoint.sh
rename to registry_3.0.0-rc.1/entrypoint.sh

Relevant Maintainers:

@tianon tianon merged commit e5e5e8d into docker-library:master Nov 8, 2024
7 checks passed
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