Skip to content

Commit 89c3e3e

Browse files
committed
release: v1.2.2
Signed-off-by: Michele Meloni <[email protected]>
1 parent f2a471e commit 89c3e3e

File tree

3 files changed

+42
-10
lines changed

3 files changed

+42
-10
lines changed

CHANGELOG.md

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

66

7-
<a name="v1.2.1"></a>
8-
## [v1.2.1] - 0001-01-01
7+
<a name="v1.2.2"></a>
8+
## [v1.2.2] - 2022-01-17
9+
### Bug Fixes
10+
- registering connection in order to make possible conn recycling
11+
- **Dockerfile:** Add ca-certificates.crt file to immudb image
12+
- **client/file_cache:** Fix storing immudb state in file cache
13+
- **embedded/immustore:** Avoid deadlock when acquire vLog lock
14+
- **embedded/sql:** max key len validations
15+
- **embedded/sql:** consider not null flag is on for auto incremental column
16+
- **pkg/server:** validate if db is not replica then other replication attributes are not set
17+
- **pkg/stdlib:** fix last insert id generation
18+
19+
### Changes
20+
- create code of conduct markdown file ([#1051](https://github.com/vchain-us/immudb/issues/1051))
21+
- **cmd/immuclient:** return actual login error
22+
- **embedded/sql:** wip client provided auto-incremental values
23+
- **embedded/sql:** wip client provided auto-incremental values
24+
- **embedded/sql:** wip client provided auto-incremental values
25+
- **embedded/sql:** add first and last insert pks retrivial methods
26+
- **embedded/sql:** change column constraints ordering
27+
- **metrics:** Add indexer metrics
28+
- **metrics:** Add more s3-related metrics
29+
- **pkg/database:** pre-validation of duplicated entries in execAll operation
30+
- **pkg/database:** temporarily disable execall validations
31+
- **pkg/database:** instantiate tx holder only in safe mode
32+
- **pkg/database:** self-contained noWait execAll
33+
- **pkg/database:** descriptive error messages
34+
- **pkg/replication:** delay replication after failure
35+
- **pkg/stdlib:** clean connection registration and leftovers
936

10-
<a name="v1.2.0"></a>
11-
## [v1.2.0] - 2021-12-13
37+
### Features
38+
- **embedded/sql:** support for basic insert conflict handling
39+
- **s3:** Add support for AWS V4 signatures
40+
41+
42+
<a name="v1.2.1"></a>
43+
## [v1.2.1] - 2021-12-14
1244
### Bug Fixes
1345
- fix interactive use database
1446
- **database:** Internal consistency check on data reads
@@ -2389,9 +2421,9 @@ All notable changes to this project will be documented in this file. This projec
23892421
- **tree:** MTH reference impl
23902422

23912423

2392-
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.2.1...HEAD
2393-
[v1.2.1]: https://github.com/vchain-us/immudb/compare/v1.2.0...v1.2.1
2394-
[v1.2.0]: https://github.com/vchain-us/immudb/compare/v1.2.0-RC1...v1.2.0
2424+
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.2.2...HEAD
2425+
[v1.2.2]: https://github.com/vchain-us/immudb/compare/v1.2.1...v1.2.2
2426+
[v1.2.1]: https://github.com/vchain-us/immudb/compare/v1.2.0-RC1...v1.2.1
23952427
[v1.2.0-RC1]: https://github.com/vchain-us/immudb/compare/v1.1.0...v1.2.0-RC1
23962428
[v1.1.0]: https://github.com/vchain-us/immudb/compare/v1.0.5...v1.1.0
23972429
[v1.0.5]: https://github.com/vchain-us/immudb/compare/v1.0.1...v1.0.5

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export GO111MODULE=on
1616

1717
SHELL=/bin/bash -o pipefail
1818

19-
VERSION=1.2.1
20-
DEFAULT_WEBCONSOLE_VERSION=1.0.14
19+
VERSION=1.2.2
20+
DEFAULT_WEBCONSOLE_VERSION=1.0.15
2121
SERVICES=immudb immuadmin immuclient
2222
TARGETS=linux/amd64 windows/amd64 darwin/amd64 linux/s390x linux/arm64 freebsd/amd64 darwin/arm64
2323

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: immudb
33
description: The immutable database
44
type: application
55
version: 1.0.0
6-
appVersion: "1.2.1"
6+
appVersion: "1.2.2"

0 commit comments

Comments
 (0)