Skip to content

Commit f5302f5

Browse files
v1.4.0
1 parent d162b38 commit f5302f5

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Sonic Changelog
22
===============
33

4+
## 1.4.0 (2022-10-20)
5+
6+
### Bug Fixes
7+
8+
* Fixed typo in README abstract [[@remram44](https://github.com/remram44), [#295](https://github.com/valeriansaliou/sonic/pull/295)].
9+
* Fixed typos in code and documentation [[@kianmeng](https://github.com/kianmeng), [#294](https://github.com/valeriansaliou/sonic/pull/294)].
10+
11+
### Changes
12+
13+
* Replaced Docker source image from Debian Slim to lighter Google distroless image [[@0x0x1](https://github.com/0x0x1), [#282](https://github.com/valeriansaliou/sonic/pull/282)].
14+
15+
### New Features
16+
17+
* Added an index enumeration `LIST` command to Sonic Channel [[@trkohler](https://github.com/trkohler), [#293](https://github.com/valeriansaliou/sonic/pull/293)].
18+
419
## 1.3.5 (2022-07-10)
520

621
### Bug Fixes

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonic-server"
3-
version = "1.3.5"
3+
version = "1.4.0"
44
description = "Fast, lightweight and schema-less search backend."
55
readme = "README.md"
66
license = "MPL-2.0"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ You might find it convenient to run Sonic via Docker. You can find the pre-built
9292
First, pull the `valeriansaliou/sonic` image:
9393

9494
```bash
95-
docker pull valeriansaliou/sonic:v1.3.5
95+
docker pull valeriansaliou/sonic:v1.4.0
9696
```
9797

9898
Then, seed it a configuration file and run it (replace `/path/to/your/sonic/config.cfg` with the path to your configuration file):
9999

100100
```bash
101-
docker run -p 1491:1491 -v /path/to/your/sonic/config.cfg:/etc/sonic.cfg -v /path/to/your/sonic/store/:/var/lib/sonic/store/ valeriansaliou/sonic:v1.3.5
101+
docker run -p 1491:1491 -v /path/to/your/sonic/config.cfg:/etc/sonic.cfg -v /path/to/your/sonic/store/:/var/lib/sonic/store/ valeriansaliou/sonic:v1.4.0
102102
```
103103

104104
In the configuration file, ensure that:

0 commit comments

Comments
 (0)