Skip to content

Commit 6103e9a

Browse files
committed
release: v1.5.0
1 parent 14b2ed8 commit 6103e9a

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. This projec
44
## [Unreleased]
55

66

7+
<a name="v1.5.0"></a>
8+
## [v1.5.0] - 2023-06-20
9+
### Bug Fixes
10+
- **embedded/store:** handle replication of empty values
11+
12+
### Changes
13+
- **embedded/document:** naming validations
14+
- **embedded/document:** allow hyphen in doc naming
15+
- **embedded/document:** collection and field naming validations
16+
- **embedded/store:** embedded values and prealloc disabled by default
17+
18+
719
<a name="v1.5.0-RC1"></a>
820
## [v1.5.0-RC1] - 2023-06-16
921
### Bug Fixes
@@ -3581,7 +3593,8 @@ All notable changes to this project will be documented in this file. This projec
35813593
- **tree:** MTH reference impl
35823594

35833595

3584-
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.5.0-RC1...HEAD
3596+
[Unreleased]: https://github.com/vchain-us/immudb/compare/v1.5.0...HEAD
3597+
[v1.5.0]: https://github.com/vchain-us/immudb/compare/v1.5.0-RC1...v1.5.0
35853598
[v1.5.0-RC1]: https://github.com/vchain-us/immudb/compare/v1.4.1...v1.5.0-RC1
35863599
[v1.4.1]: https://github.com/vchain-us/immudb/compare/v1.4.1-RC1...v1.4.1
35873600
[v1.4.1-RC1]: https://github.com/vchain-us/immudb/compare/v1.4.0...v1.4.1-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=1.5.0-RC1
19+
VERSION=1.5.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.4.1 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.5.0 for linux amd64:
8686

8787
```bash
88-
wget https://github.com/codenotary/immudb/releases/download/v1.4.1/immudb-v1.4.1-linux-amd64
89-
mv immudb-v1.4.1-linux-amd64 immudb
88+
wget https://github.com/codenotary/immudb/releases/download/v1.5.0/immudb-v1.5.0-linux-amd64
89+
mv immudb-v1.5.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.4.1 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.5.0 for linux amd64:
202202

203203
```bash
204-
wget https://github.com/codenotary/immudb/releases/download/v1.4.1/immuclient-v1.4.1-linux-amd64
205-
mv immuclient-v1.4.1-linux-amd64 immuclient
204+
wget https://github.com/codenotary/immudb/releases/download/v1.5.0/immuclient-v1.5.0-linux-amd64
205+
mv immuclient-v1.5.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.4.1
6-
appVersion: "1.4.1"
5+
version: 1.5.0
6+
appVersion: "1.5.0"

0 commit comments

Comments
 (0)