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.2.5 #14318

Merged
merged 1 commit into from
Mar 23, 2023
Merged

Update CrateDB to 5.2.5 #14318

merged 1 commit into from
Mar 23, 2023

Conversation

matriv
Copy link
Contributor

@matriv matriv commented Mar 23, 2023

5.2.4 not declared stable

@github-actions
Copy link

Diff for 5ae8204:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 3bd67f3..da71af3 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -9,6 +9,6 @@ Tags: 5.1.4, 5.1
 Architectures: amd64, arm64v8
 GitCommit: b946d9e2cdb90575f58003f3230ff705c44ffcba
 
-Tags: 5.2.3, 5.2, latest
+Tags: 5.2.5, 5.2, latest
 Architectures: amd64, arm64v8
-GitCommit: c495058a18937a134d215025642912b978eb57ad
+GitCommit: c98d17879824e2cbc4522d6591db77d6ac74bc5a
diff --git a/_bashbrew-list b/_bashbrew-list
index 5828298..fba9382 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -3,5 +3,5 @@ crate:4.8.4
 crate:5.1
 crate:5.1.4
 crate:5.2
-crate:5.2.3
+crate:5.2.5
 crate:latest
diff --git a/crate_latest/Dockerfile b/crate_latest/Dockerfile
index f1b47cd..dab5ea3 100644
--- a/crate_latest/Dockerfile
+++ b/crate_latest/Dockerfile
@@ -9,7 +9,7 @@ FROM almalinux:9
 # Install prerequisites and package updates and clean up repository indexes again
 RUN yum install -y yum-utils \
     && yum makecache \
-    && yum install -y python3 python3-pip openssl \
+    && yum install -y python3 python3-pip \
     && yum clean all \
     && rm -rf /var/cache/yum
 
@@ -21,24 +21,24 @@ 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.2.3.tar.gz \
+    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.2.5.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.2.3.tar.gz.asc crate-5.2.3.tar.gz \
-    && rm -rf "$GNUPGHOME" crate-5.2.3.tar.gz.asc \
-    && tar -xf crate-5.2.3.tar.gz -C /crate --strip-components=1 \
-    && rm crate-5.2.3.tar.gz
+    && gpg --batch --verify crate-5.2.5.tar.gz.asc crate-5.2.5.tar.gz \
+    && rm -rf "$GNUPGHOME" crate-5.2.5.tar.gz.asc \
+    && tar -xf crate-5.2.5.tar.gz -C /crate --strip-components=1 \
+    && rm crate-5.2.5.tar.gz
 
 # Install crash
-RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.28.0 \
-    && curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.28.0.asc \
+RUN curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.29.0 \
+    && curl -fSL -O https://cdn.crate.io/downloads/releases/crash_standalone_0.29.0.asc \
     && export GNUPGHOME="$(mktemp -d)" \
     && gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 90C23FC6585BC0717F8FBFC37FAAE51A06F6EAEB \
-    && gpg --batch --verify crash_standalone_0.28.0.asc crash_standalone_0.28.0 \
-    && rm -rf "$GNUPGHOME" crash_standalone_0.28.0.asc \
-    && mv crash_standalone_0.28.0 /usr/local/bin/crash \
+    && gpg --batch --verify crash_standalone_0.29.0.asc crash_standalone_0.29.0 \
+    && rm -rf "$GNUPGHOME" crash_standalone_0.29.0.asc \
+    && mv crash_standalone_0.29.0 /usr/local/bin/crash \
     && chmod +x /usr/local/bin/crash
 
 ENV PATH /crate/bin:$PATH
@@ -63,13 +63,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 <office@crate.io>" \
-    org.opencontainers.image.created="2023-02-23T18:33:34.841271" \
+    org.opencontainers.image.created="2023-03-20T11:04:02.301203" \
     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.2.3"
+    org.opencontainers.image.version="5.2.5"
 
 COPY docker-entrypoint.sh /

Relevant Maintainers:

@yosifkit yosifkit merged commit 54dbba8 into docker-library:master Mar 23, 2023
@matriv matriv deleted the patch-10 branch August 14, 2023 10:30
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