You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+129-1Lines changed: 129 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,133 @@ All notable changes to this project will be documented in this file. This projec
4
4
## [Unreleased]
5
5
6
6
7
+
<aname="v0.7.0"></a>
8
+
## [v0.7.0] - 2020-08-10
9
+
### Bug Fixes
10
+
- userlist returns wrong message when logged in as immudb with single database
11
+
- use dedicated logger for store
12
+
- fix compilation error in corruption checker test
13
+
- race condition in token eviction
14
+
- chose defaultdb on user create if not in multiple db mode
15
+
- user list showing only the superadmin user even when other user exist
16
+
- fix multiple services config uninstall
17
+
- skip loading databases from disk when in memory is requested
18
+
- if custom port is <= 0 use default port for both immudb and immugw
19
+
- fix immugw failing to start with nil pointer dereference since gRPC dial options are inherited (bug was introduced in commit a4477e2e403ab35fc9392e0a3a2d8436a5806901)
- use the correct server logger and use a dedicated logger with warning level for the db store
24
+
-**cmd/immuadmin/command:** fix user list output to support multiple databases (with permissions) for the same user
25
+
-**pkg/auth:** if new auth token is found in outgoing context it replaced the old one
26
+
-**pkg/client:** use database set internally database name
27
+
-**pkg/client:** inherit dial options that came from constructor
28
+
-**pkg/fs:** don't overwrite copy error on Close malfunction. Sync seals the operation–not Close.
29
+
-**pkg/gw:** fix client option construction with missing homedirservice
30
+
-**pkg/server:** added os file separator and db root path
31
+
-**pkg/server:** avoid recursion on never ending functionality. Further improvements can be done ([#427](https://github.com/vchain-us/immudb/issues/427))
32
+
-**pkg/server/server:** change user pass , old password check
33
+
-**pkg/service:** restore correct config path
34
+
-**pkg/store:** fix count method using a proper NewKeyIterator
35
+
36
+
### Changes
37
+
- refactor immuclient test
38
+
- fix tokenService typos
39
+
- add use database gw handler
40
+
- spread token service usage
41
+
- enhance immudb server messages during start
42
+
- capitalize immudb stop log message for consistency reasons
43
+
- remove permission leftovers and useless messages in client server protocol
44
+
- log immudb user messages during start to file if a logfile is specified
45
+
- use debug instead of info for some log messages that are not relevant to the user
46
+
- versioning token filename
47
+
- add auditor single run mode
48
+
- fix conflicts while rebasing from master
49
+
- remove user commands from immuclient
50
+
- add unit tests for zip and tar
51
+
- fix test
52
+
- improve command ux and fix changepassword test. Closes [#370](https://github.com/vchain-us/immudb/issues/370)
53
+
- change insert user to use safeset instead of set
54
+
- remove useless quitToStdError and os.exit calls
55
+
- remove sleep from tests
56
+
- use 0.0.0.0 instead of 127.0.0.1 as default address for both immudb and immugw
57
+
- using cobra command std out
58
+
- move immuadmin and immuclient service managing to pkg
59
+
- add homedir service
60
+
- rewrite tests in order to use pkg/server/servertest
61
+
- add codecov windows and freebsd ignore paths
62
+
- fix typo in UninstallManPages function name
63
+
- add coveralls.io stage
64
+
- refactor immuadmin service to use immuos abstraction
65
+
- add coverall badge
66
+
- add filepath abstration, use it in immuadmin backup and enhance coverage for backup test
67
+
- add os and filepath abstraction and use it in immuadmin backup command
0 commit comments