diff --git a/CHANGELOG.md b/CHANGELOG.md index 02f7a3b..6c9f48f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.2.10 - 2023-10-11 + - Bugfix: update jq download location. + - SingleStoreDB Version 8.1.25 + - SingleStoreDB Toolbox Version 1.17.4 + - SingleStoreDB Studio Version 4.0.14 + ## 0.2.9 - 2023-09-07 - SingleStoreDB Version 8.1.20 diff --git a/Dockerfile b/Dockerfile index 0b1ce74..d9b6eb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN yum makecache --refresh && \ yum clean all ENV JQ_VERSION='1.6' -RUN wget --no-check-certificate https://raw.githubusercontent.com/stedolan/jq/master/sig/jq-release.key -O /tmp/jq-release.key && \ - wget --no-check-certificate https://raw.githubusercontent.com/stedolan/jq/master/sig/v${JQ_VERSION}/jq-linux64.asc -O /tmp/jq-linux64.asc && \ - wget --no-check-certificate https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 -O /tmp/jq-linux64 && \ +RUN wget --no-check-certificate https://raw.githubusercontent.com/jqlang/jq/master/sig/jq-release-old.key -O /tmp/jq-release.key && \ + wget --no-check-certificate https://raw.githubusercontent.com/jqlang/jq/master/sig/v${JQ_VERSION}/jq-linux64.asc -O /tmp/jq-linux64.asc && \ + wget --no-check-certificate https://github.com/jqlang/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 -O /tmp/jq-linux64 && \ gpg --import /tmp/jq-release.key && \ gpg --verify /tmp/jq-linux64.asc /tmp/jq-linux64 && \ cp /tmp/jq-linux64 /usr/bin/jq && \ diff --git a/config.json b/config.json index 80246e8..6e8915c 100644 --- a/config.json +++ b/config.json @@ -1,7 +1,7 @@ { "channel": "production", - "server": "8.1.20-4f3dd4ecc3", - "toolbox": "1.15.0", + "server": "8.1.25-430e7395a4", + "toolbox": "1.17.4", "client": "1.0.7", - "studio": "4.0.11" + "studio": "4.0.14" }