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.8.1 #17299

Merged
merged 2 commits into from
Aug 5, 2024
Merged

Conversation

BaurzhanSakhariev
Copy link
Contributor

No description provided.

@BaurzhanSakhariev BaurzhanSakhariev requested a review from a team as a code owner August 2, 2024 05:47
@BaurzhanSakhariev BaurzhanSakhariev marked this pull request as draft August 2, 2024 05:48
5.8.1 is the first stable version in 5.8 series.
These versions reached EOL
@BaurzhanSakhariev BaurzhanSakhariev marked this pull request as ready for review August 2, 2024 06:05
Copy link

github-actions bot commented Aug 2, 2024

Diff for 48c6ff2:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index cf7edfd..6a891cf 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,14 +1,10 @@
 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.5.5, 5.5.4, 5.5
+Tags: 5.7.4, 5.7
 Architectures: amd64, arm64v8
-GitCommit: 976468768511b4574a26631fe646ff7fdfaf03ef
-
-Tags: 5.6.5, 5.6
-Architectures: amd64, arm64v8
-GitCommit: b47c08eac6dc3148ef596eac6749ed5b3210ee7a
+GitCommit: d8b45726e982beff1fc63aebcd5f4bbc7312dbc4
 
-Tags: 5.7.4, 5.7, latest
+Tags: 5.8.1, 5.8, latest
 Architectures: amd64, arm64v8
-GitCommit: d8b45726e982beff1fc63aebcd5f4bbc7312dbc4
+GitCommit: f6eefe79843a1746efe46779b5cfd32df4f3e6df
diff --git a/_bashbrew-list b/_bashbrew-list
index 1c792ec..675236a 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,8 +1,5 @@
-crate:5.5
-crate:5.5.4
-crate:5.5.5
-crate:5.6
-crate:5.6.5
 crate:5.7
 crate:5.7.4
+crate:5.8
+crate:5.8.1
 crate:latest
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index caffdb7..9d0e2ae 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,3 +1,2 @@
-crate:5.5
-crate:5.6
+crate:5.7
 crate:latest
diff --git a/crate_5.5/Dockerfile b/crate_5.5/Dockerfile
deleted file mode 100644
index 4ef9e7a..0000000
diff --git a/crate_5.6/Dockerfile b/crate_5.6/Dockerfile
deleted file mode 100644
index 8be82b6..0000000
diff --git a/crate_5.6/config/crate.yml b/crate_5.6/config/crate.yml
deleted file mode 100644
index 53a771a..0000000
diff --git a/crate_5.6/config/log4j2.properties b/crate_5.6/config/log4j2.properties
deleted file mode 100644
index a62178f..0000000
diff --git a/crate_5.6/docker-entrypoint.sh b/crate_5.6/docker-entrypoint.sh
deleted file mode 100755
index 8361d69..0000000
diff --git a/crate_latest/Dockerfile b/crate_5.7/Dockerfile
similarity index 100%
copy from crate_latest/Dockerfile
copy to crate_5.7/Dockerfile
diff --git a/crate_5.5/config/crate.yml b/crate_5.7/config/crate.yml
similarity index 100%
rename from crate_5.5/config/crate.yml
rename to crate_5.7/config/crate.yml
diff --git a/crate_5.5/config/log4j2.properties b/crate_5.7/config/log4j2.properties
similarity index 100%
rename from crate_5.5/config/log4j2.properties
rename to crate_5.7/config/log4j2.properties
diff --git a/crate_5.5/docker-entrypoint.sh b/crate_5.7/docker-entrypoint.sh
similarity index 100%
rename from crate_5.5/docker-entrypoint.sh
rename to crate_5.7/docker-entrypoint.sh
diff --git a/crate_latest/Dockerfile b/crate_latest/Dockerfile
index 8e2b896..522f033 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.4.tar.gz \
+    && export CRATE_URL=https://cdn.crate.io/downloads/releases/cratedb/${PLATFORM}/crate-5.8.1.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.4.tar.gz.asc crate-5.7.4.tar.gz \
-    && rm -rf "$GNUPGHOME" crate-5.7.4.tar.gz.asc \
-    && tar -xf crate-5.7.4.tar.gz -C /crate --strip-components=1 \
-    && rm crate-5.7.4.tar.gz
+    && gpg --batch --verify crate-5.8.1.tar.gz.asc crate-5.8.1.tar.gz \
+    && rm -rf "$GNUPGHOME" crate-5.8.1.tar.gz.asc \
+    && tar -xf crate-5.8.1.tar.gz -C /crate --strip-components=1 \
+    && rm crate-5.8.1.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-07-26T07:51:44.117532" \
+    org.opencontainers.image.created="2024-07-30T05:57:24.295346" \
     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.4"
+    org.opencontainers.image.version="5.8.1"
 
 COPY docker-entrypoint.sh /

Relevant Maintainers:

@BaurzhanSakhariev BaurzhanSakhariev changed the title Update CrateDB to 5.8.2 Update CrateDB to 5.8.1 Aug 2, 2024
@tianon tianon merged commit d994b8d into docker-library:master Aug 5, 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