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

Update CrateDB to 5.7.3 #17168

Merged
merged 2 commits into from
Jul 12, 2024
Merged

Update CrateDB to 5.7.3 #17168

merged 2 commits into from
Jul 12, 2024

Conversation

matriv
Copy link
Contributor

@matriv matriv commented Jul 12, 2024

Also remove 5.4 which has reached EOL.

@matriv matriv requested a review from a team as a code owner July 12, 2024 08:31

This comment has been minimized.

Copy link

Diff for 164eee7:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index f748280..9d6ae95 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,10 +1,6 @@
 Maintainers: Mathias Fußenegger <[email protected]> (@mfussenegger), Sebastian Utz <[email protected]> (@seut), Michael Kleen <[email protected]> (@mkleen), Andreas Motl <[email protected]> (@amotl)
 GitRepo: https://github.com/crate/docker-crate.git
 
-Tags: 5.4.8, 5.4
-Architectures: amd64, arm64v8
-GitCommit: 87d8fc91744a3760211335884ba8cb82884451c2
-
 Tags: 5.5.5, 5.5.4, 5.5
 Architectures: amd64, arm64v8
 GitCommit: 976468768511b4574a26631fe646ff7fdfaf03ef
@@ -13,6 +9,6 @@ Tags: 5.6.5, 5.6
 Architectures: amd64, arm64v8
 GitCommit: b47c08eac6dc3148ef596eac6749ed5b3210ee7a
 
-Tags: 5.7.2, 5.7, latest
+Tags: 5.7.3, 5.7, latest
 Architectures: amd64, arm64v8
-GitCommit: aa2d1170ed5040ca10b99dcee4f8b63190e5b3c1
+GitCommit: 72ee4689255f3f67ff7e3a39af19fe8b53263dbf
diff --git a/_bashbrew-list b/_bashbrew-list
index 98a661f..7e67bf9 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,10 +1,8 @@
-crate:5.4
-crate:5.4.8
 crate:5.5
 crate:5.5.4
 crate:5.5.5
 crate:5.6
 crate:5.6.5
 crate:5.7
-crate:5.7.2
+crate:5.7.3
 crate:latest
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 0455cfc..caffdb7 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,4 +1,3 @@
-crate:5.4
 crate:5.5
 crate:5.6
 crate:latest
diff --git a/crate_5.4/Dockerfile b/crate_5.4/Dockerfile
deleted file mode 100644
index 0649fcf..0000000
diff --git a/crate_5.4/config/crate.yml b/crate_5.4/config/crate.yml
deleted file mode 100644
index 53a771a..0000000
diff --git a/crate_5.4/config/log4j2.properties b/crate_5.4/config/log4j2.properties
deleted file mode 100644
index a62178f..0000000
diff --git a/crate_5.4/docker-entrypoint.sh b/crate_5.4/docker-entrypoint.sh
deleted file mode 100755
index 8361d69..0000000
diff --git a/crate_latest/Dockerfile b/crate_latest/Dockerfile
index 85fa537..3b4015b 100644
--- a/crate_latest/Dockerfile
+++ b/crate_latest/Dockerfile
@@ -19,15 +19,15 @@ RUN groupadd crate \
             x86_64)  echo x64_linux ;; \
             aarch64) echo aarch64_linux ;; \
         esac)" \
-    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.7.2.tar.gz \
+    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.7.3.tar.gz \
     && curl -fSL -O ${CRATE_URL} \
     && curl -fSL -O ${CRATE_URL}.asc \
     && export GNUPGHOME="$(mktemp -d)" \
     && gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
-    && gpg --batch --verify crate-5.7.2.tar.gz.asc crate-5.7.2.tar.gz \
-    && rm -rf "$GNUPGHOME" crate-5.7.2.tar.gz.asc \
-    && tar -xf crate-5.7.2.tar.gz -C /crate --strip-components=1 \
-    && rm crate-5.7.2.tar.gz
+    && gpg --batch --verify crate-5.7.3.tar.gz.asc crate-5.7.3.tar.gz \
+    && rm -rf "$GNUPGHOME" crate-5.7.3.tar.gz.asc \
+    && tar -xf crate-5.7.3.tar.gz -C /crate --strip-components=1 \
+    && rm crate-5.7.3.tar.gz
 
 # Install crash
 RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.31.5 \
@@ -61,13 +61,13 @@ COPY --chown=1000:0 config/crate.yml /crate/config/crate.yml
 COPY --chown=1000:0 config/log4j2.properties /crate/config/log4j2.properties
 
 LABEL maintainer="Crate.io <[email protected]>" \
-    org.opencontainers.image.created="2024-06-12T14:05:02.557343" \
+    org.opencontainers.image.created="2024-07-10T14:21:21.369800" \
     org.opencontainers.image.title="crate" \
     org.opencontainers.image.description="CrateDB is a distributed SQL database that handles massive amounts of machine data in real-time." \
     org.opencontainers.image.url="https://crate.io/products/cratedb/" \
     org.opencontainers.image.source="https://github.com/crate/docker-crate" \
     org.opencontainers.image.vendor="Crate.io" \
-    org.opencontainers.image.version="5.7.2"
+    org.opencontainers.image.version="5.7.3"
 
 COPY docker-entrypoint.sh /

Relevant Maintainers:

@tianon tianon merged commit 9bdf150 into docker-library:master Jul 12, 2024
8 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