Skip to content

Commit ffe762e

Browse files
committed
release: v0.6.1
1 parent 54b7c8e commit ffe762e

File tree

3 files changed

+49
-4
lines changed

3 files changed

+49
-4
lines changed

CHANGELOG.md

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

66

7+
<a name="v0.6.1"></a>
8+
## [v0.6.1] - 2020-06-09
9+
### Bug Fixes
10+
- disallow running immuadmin backup with current directory as source
11+
- immuadmin dump hangs indefinitely if token is invalid
12+
- [#283](https://github.com/vchain-us/vcn/issues/283), immudb crash on dump of empty db
13+
- fix corruption checker crash during immudb shoutdown
14+
- choose correct config for immudb, immugw installation
15+
- update env vars in README and Docker files ([#297](https://github.com/vchain-us/vcn/issues/297))
16+
- **cmd/immuadmin:** inform user that manual server restart may be needed after interrupted backup
17+
- **cmd/immuadmin:** validate backup dir before asking password
18+
- **cmd/immuclient:** add version sub-command to immuclient interractive mode
19+
- **cmd/immuclient:** nil pointer when audit-mode used with immudb running as daemon
20+
- **cmd/immutest:** add new line at the end of output message
21+
- **pkg/ring:** return nil on inconsistent access to buffer rings elements
22+
- **pkg/store:** fix visualization of not frozen nodes inside print tree command
23+
- **pkg/store/treestore:** fix overwriting on not freezes nodes
24+
25+
### Changes
26+
- add license to tests ([#288](https://github.com/vchain-us/vcn/issues/288))
27+
- update statement about traditional DBs in README
28+
- remove immugw configs from immudb config file [#302](https://github.com/vchain-us/vcn/issues/302)
29+
- **cmd/immuadmin/command:** improve visualization ui in merkle tree print command
30+
- **cmd/immuadmin/command/service:** syntax error, fail build on windows
31+
- **cmd/immuclient/audit:** code cleanup and renaming
32+
- **pkg/store/treestore:** improve cache invalidation
33+
34+
### Code Refactoring
35+
- handling of failed dump
36+
37+
### Features
38+
- allow the password of immugw auditor to be base64 encoded in the config file ([#296](https://github.com/vchain-us/vcn/issues/296))
39+
- add auth support to immutest CLI
40+
- add server-side logout ([#286](https://github.com/vchain-us/vcn/issues/286))
41+
- **cmd/helper:** add functionalities to print colored output
42+
- **cmd/immuadmin:** add print tree command
43+
- **cmd/immutest:** add env var for tokenfile
44+
- **pkg:** add print tree functionality
45+
46+
747
<a name="v0.6.0"></a>
848
## [v0.6.0] - 2020-05-28
949
### Bug Fixes
10-
- use iota for permissions enum
50+
- rewrite user management to store user, password and permissions separately
1151
- readme doc, immugw start command
1252
- typos in immugw help
1353
- licence
@@ -16,13 +56,14 @@ All notable changes to this project will be documented in this file. This projec
1656
- various permissions-related issues
1757
- when fetching users, only fetch the latest version
1858
- admin user can change password of regular user without having to know his old password
59+
- use iota for permissions enum
1960
- immugw pid path consistency
2061
- SafeZAdd handler SafeZAdd tests. Fix ReferenceHandler test
2162
- safereference_handler, add tests [#264](https://github.com/vchain-us/vcn/issues/264)
2263
- safeset_handler test
2364
- [#260](https://github.com/vchain-us/vcn/issues/260)
2465
- implementation of user deactivate
25-
- rewrite user management to store user, password and permissions separately
66+
- fix immuclient windows build
2667
- fix bug on zadd server method
2768
- **cmd/helper:** fix osx build
2869
- **cmd/immuadmin/command/service:** fix error returned by GetDefaultConfigPath
@@ -639,7 +680,8 @@ All notable changes to this project will be documented in this file. This projec
639680
- **tree:** MTH reference impl
640681

641682

642-
[Unreleased]: https://github.com/vchain-us/vcn/compare/v0.6.0...HEAD
683+
[Unreleased]: https://github.com/vchain-us/vcn/compare/v0.6.1...HEAD
684+
[v0.6.1]: https://github.com/vchain-us/vcn/compare/v0.6.0...v0.6.1
643685
[v0.6.0]: https://github.com/vchain-us/vcn/compare/v0.6.0-RC2...v0.6.0
644686
[v0.6.0-RC2]: https://github.com/vchain-us/vcn/compare/v0.6.0-RC1...v0.6.0-RC2
645687
[v0.6.0-RC1]: https://github.com/vchain-us/vcn/compare/v0.0.0-20200206...v0.6.0-RC1

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=0.6.0
19+
VERSION=0.6.1
2020
TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x
2121
SERVICE_EXE=${SERVICE_NAME}-v${VERSION}-windows-amd64.exe
2222

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,9 @@ As immudb is compared to Amazon QLDB as well, we compared the performance using
528528
![immudb Execution Benchmark](img/exectime.png "100 records write execution time (lower is better)")
529529
530530
## News
531+
`June 9th, 2020` - **[immudb v0.6.1 released!](https://github.com/codenotary/immudb/releases)**
532+
533+
Release v0.6.1 fixes some important bugs and has many improvements - we recommend updating to it
531534
532535
`May 28, 2020` - **[immudb v0.6.0 GA released!](https://github.com/codenotary/immudb/releases)**
533536

0 commit comments

Comments
 (0)