Skip to content

Commit 15d0309

Browse files
author
Bartłomiej Święcki
committed
release: v1.4.0
1 parent 8e18072 commit 15d0309

File tree

4 files changed

+24
-11
lines changed

4 files changed

+24
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,20 @@ All notable changes to this project will be documented in this file. This projec
44
## [Unreleased]
55

66

7+
<a name="v1.4.0"></a>
8+
## [v1.4.0] - 2022-10-12
9+
### Bug Fixes
10+
- **build:** Do not publish official non-dev images on RC tags
11+
- **pkg/client:** replace keepAlive context from the original one to the background, avoiding parent expiration
12+
13+
### Changes
14+
- Rename sync-followers to sync-acks
15+
- **cmd/immuclient:** include precommit state when quering status
16+
- **pkg/server:** Better error message when validating replication options
17+
18+
719
<a name="v1.4.0-RC2"></a>
8-
## [v1.4.0-RC2] - 2022-10-06
20+
## [v1.4.0-RC2] - 2022-10-10
921
### Bug Fixes
1022
- **build:** Use correct binary download links
1123
- **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
30813093
- **tree:** MTH reference impl
30823094

30833095

3084-
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...HEAD
3096+
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.4.0...HEAD
3097+
[v1.4.0]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC2...v1.4.0
30853098
[v1.4.0-RC2]: https://github.com/vchain-us/immudb/compare/v1.4.0-RC1...v1.4.0-RC2
30863099
[v1.4.0-RC1]: https://github.com/vchain-us/immudb/compare/v1.3.2...v1.4.0-RC1
30873100
[v1.3.2]: https://github.com/vchain-us/immudb/compare/v1.3.2-RC1...v1.3.2

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export GO111MODULE=on
1616

1717
SHELL=/bin/bash -o pipefail
1818

19-
VERSION=1.4.0-RC2
19+
VERSION=1.4.0
2020
DEFAULT_WEBCONSOLE_VERSION=1.0.18
2121
SERVICES=immudb immuadmin immuclient
2222
TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x linux/arm64 freebsd/amd64 darwin/arm64

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ Click here to try out the immudb web console access in an [online demo environme
8282

8383
### Getting immudb running: executable
8484

85-
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:
85+
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:
8686

8787
```bash
88-
wget https://github.com/codenotary/immudb/releases/download/v1.3.2/immudb-v1.3.2-linux-amd64
89-
mv immudb-v1.3.2-linux-amd64 immudb
88+
wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immudb-v1.4.0-linux-amd64
89+
mv immudb-v1.4.0-linux-amd64 immudb
9090
chmod +x immudb
9191

9292
# run immudb in the foreground to see all output
@@ -198,11 +198,11 @@ docker run --net=host -it --entrypoint /bin/sh minio/mc -c "
198198

199199
### Connecting with immuclient
200200

201-
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:
201+
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:
202202

203203
```bash
204-
wget https://github.com/codenotary/immudb/releases/download/v1.3.2/immuclient-v1.3.2-linux-amd64
205-
mv immuclient-v1.3.2-linux-amd64 immuclient
204+
wget https://github.com/codenotary/immudb/releases/download/v1.4.0/immuclient-v1.4.0-linux-amd64
205+
mv immuclient-v1.4.0-linux-amd64 immuclient
206206
chmod +x immuclient
207207
208208
# start the interactive shell

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: immudb
33
description: The immutable database
44
type: application
5-
version: 1.3.2
6-
appVersion: "1.3.2"
5+
version: 1.4.0
6+
appVersion: "1.4.0"

0 commit comments

Comments
 (0)