From 15d0309e159f36e0b3e2775e91a695a509c47542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20=C5=9Awi=C4=99cki?= Date: Wed, 12 Oct 2022 15:24:08 +0200 Subject: [PATCH] release: v1.4.0 --- CHANGELOG.md | 17 +++++++++++++++-- Makefile | 2 +- README.md | 12 ++++++------ helm/Chart.yaml | 4 ++-- 4 files changed, 24 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ab205a99c..ed56bc2cec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,20 @@ All notable changes to this project will be documented in this file. This projec ## [Unreleased] + +## [v1.4.0] - 2022-10-12 +### Bug Fixes +- **build:** Do not publish official non-dev images on RC tags +- **pkg/client:** replace keepAlive context from the original one to the background, avoiding parent expiration + +### Changes +- Rename sync-followers to sync-acks +- **cmd/immuclient:** include precommit state when quering status +- **pkg/server:** Better error message when validating replication options + + -## [v1.4.0-RC2] - 2022-10-06 +## [v1.4.0-RC2] - 2022-10-10 ### Bug Fixes - **build:** Use correct binary download links - **embedded/store:** edge-case calculation of precommitted tx @@ -3081,7 +3093,8 @@ All notable changes to this project will be documented in this file. This projec - **tree:** MTH reference impl -[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...HEAD +[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.0...HEAD +[v1.4.0]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...v1.4.0 [v1.4.0-RC2]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC1...v1.4.0-RC2 [v1.4.0-RC1]: https://github.com/vchain-us/immudb/compare/v1.3.2...v1.4.0-RC1 [v1.3.2]: https://github.com/vchain-us/immudb/compare/v1.3.2-RC1...v1.3.2 diff --git a/Makefile b/Makefile index 6f4d80639e..eaa72d60a4 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ export GO111MODULE=on SHELL=/bin/bash -o pipefail -VERSION=1.4.0-RC2 +VERSION=1.4.0 DEFAULT_WEBCONSOLE_VERSION=1.0.18 SERVICES=immudb immuadmin immuclient TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x linux/arm64 freebsd/amd64 darwin/arm64 diff --git a/README.md b/README.md index 261822a4f8..024ec33a16 100644 --- a/README.md +++ b/README.md @@ -82,11 +82,11 @@ Click here to try out the immudb web console access in an [online demo environme ### Getting immudb running: executable -You may download the immudb binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immudb, rename it to `immudb`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.3.2 for linux amd64: +You may download the immudb binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immudb, rename it to `immudb`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.0 for linux amd64: ```bash -wget https://github.com/codenotary/immudb/releases/download/v1.3.2/immudb-v1.3.2-linux-amd64 -mv immudb-v1.3.2-linux-amd64 immudb +wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immudb-v1.4.0-linux-amd64 +mv immudb-v1.4.0-linux-amd64 immudb chmod +x immudb # run immudb in the foreground to see all output @@ -198,11 +198,11 @@ docker run --net=host -it --entrypoint /bin/sh minio/mc -c " ### Connecting with immuclient -You may download the immuclient binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immuclient, rename it to `immuclient`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.3.2 for linux amd64: +You may download the immuclient binary from [the latest releases on Github](https://github.com/codenotary/immudb/releases/latest). Once you have downloaded immuclient, rename it to `immuclient`, make sure to mark it as executable, then run it. The following example shows how to obtain v1.4.0 for linux amd64: ```bash -wget https://github.com/codenotary/immudb/releases/download/v1.3.2/immuclient-v1.3.2-linux-amd64 -mv immuclient-v1.3.2-linux-amd64 immuclient +wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immuclient-v1.4.0-linux-amd64 +mv immuclient-v1.4.0-linux-amd64 immuclient chmod +x immuclient # start the interactive shell diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 4a9d2c6040..1e1300a1dd 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: immudb description: The immutable database type: application -version: 1.3.2 -appVersion: "1.3.2" +version: 1.4.0 +appVersion: "1.4.0"