-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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-2 release #18137
Merged
Merged
Registry v3.rc-2 release #18137
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
See: * https://github.com/distribution/distribution/releases/tag/v3.0.0-rc.2 * distribution/distribution-library-image#180 Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
Diff for 3849890:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 7e11a13..7729fa6 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-rc.1
+Tags: 3.0.0-rc.2
Architectures: amd64, arm32v6, arm32v7, arm64v8, ppc64le, riscv64, s390x
-GitCommit: be4eca0a5f3af34a026d1e9294d63f3464c06131
+GitCommit: 588e2e5ee607521e48cdc66147a42a2b6decd749
diff --git a/_bashbrew-list b/_bashbrew-list
index 8d010b3..5d821a9 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,5 +1,5 @@
registry:2
registry:2.8
registry:2.8.3
-registry:3.0.0-rc.1
+registry:3.0.0-rc.2
registry:latest
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 1edc3dc..ee46ba8 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,2 +1,2 @@
-registry:3.0.0-rc.1
+registry:3.0.0-rc.2
registry:latest
diff --git a/registry_3.0.0-rc.1/Dockerfile b/registry_3.0.0-rc.2/Dockerfile
similarity index 49%
rename from registry_3.0.0-rc.1/Dockerfile
rename to registry_3.0.0-rc.2/Dockerfile
index dacf944..a037380 100644
--- a/registry_3.0.0-rc.1/Dockerfile
+++ b/registry_3.0.0-rc.2/Dockerfile
@@ -1,19 +1,19 @@
-FROM alpine:3.20
+FROM alpine:3.21
RUN apk add --no-cache ca-certificates
RUN set -eux; \
# https://github.com/distribution/distribution/releases
- version='3.0.0-rc.1'; \
+ version='3.0.0-rc.2'; \
apkArch="$(apk --print-arch)"; \
case "$apkArch" in \
- 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' ;; \
+ x86_64) arch='amd64'; sha256='79d16fec004780982d65f190c97a8e0f1516bf619bfbbc44975db916a21fa08d' ;; \
+ aarch64) arch='arm64'; sha256='5564b3aed056bcaf08aac7d696c5643bbc43ddbd3b55a7e129bccda94ae02053' ;; \
+ armhf) arch='armv6'; sha256='72ac41a85f45f1e2a5df9bf976a1ee4bf36e9bce9628e9d0f1ee9cef9465f5f7' ;; \
+ armv7) arch='armv7'; sha256='e652f8174a7079941826409d86d073e40d49e70ab4519540501cfef770cdfe3e' ;; \
+ ppc64le) arch='ppc64le'; sha256='c02248db69dbdc0dac1d9b44801198101a19defdfd78223050ab68c0d66d0056' ;; \
+ s390x) arch='s390x'; sha256='92163ab2b308a0431fd607bc93df699ec64286725ed7f77925971c30ab965054' ;; \
+ riscv64) arch='riscv64'; sha256='ac471747ae01c218166265bbb73b4416f8fad5d84dda855ee422804dab71a584' ;; \
*) 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-rc.1/config-example.yml b/registry_3.0.0-rc.2/config-example.yml
similarity index 100%
rename from registry_3.0.0-rc.1/config-example.yml
rename to registry_3.0.0-rc.2/config-example.yml
diff --git a/registry_3.0.0-rc.1/entrypoint.sh b/registry_3.0.0-rc.2/entrypoint.sh
similarity index 100%
rename from registry_3.0.0-rc.1/entrypoint.sh
rename to registry_3.0.0-rc.2/entrypoint.sh Relevant Maintainers:
|
thaJeztah
reviewed
Dec 18, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
LaurentGoderre
approved these changes
Dec 18, 2024
whalelines
approved these changes
Dec 18, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
yosifkit
approved these changes
Dec 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See: