Skip to content

Commit 7059116

Browse files
committed
bump version
Signed-off-by: Alejandro M. Ramallo <alejandro.ramallo@leapsight.com>
1 parent 2d3e675 commit 7059116

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# CHANGELOG
22

3-
## 1.0.0-rc.63
3+
## 1.0.0-rc.64
4+
### Fixes
5+
* Dockerfile seurity fixes to reduce CVE surface in runtime image
6+
7+
## 1.0.0-rc.64
48
### Performance
59
* Registry pattern matching (prefix and wildcard) rewritten as a lock-free persistent Adaptive Radix Trie (`bondy_registry_ptrie`), replacing the `art` library and its serialising gen_server. Match latency drops from ~133µs to ~1µs and reads scale with cores instead of being capped at ~5k ops/s. Per-handle QSBR reclamation is driven by `bondy_registry_ptrie_janitor` processes managed by each registry partition.
610
* RPC dealer: removed expensive defensive liveness checks from the call hot path; in-flight promises are now flushed when a Callee dies.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![Docker Pulls](https://img.shields.io/docker/pulls/leapsight/bondy?style=for-the-badge)
66
![Docker Build (master)](https://img.shields.io/github/actions/workflow/status/bondy-io/bondy/docker_image_build.yaml?&branch=master&label=docker-master&style=for-the-badge)
77
![Docker Build (develop)](https://img.shields.io/github/actions/workflow/status/bondy-io/bondy/docker_image_build.yaml?&branch=develop&label=docker-develop&style=for-the-badge)
8-
![Docker Build (latest-tag)](https://img.shields.io/github/actions/workflow/status/bondy-io/bondy/docker_image_build.yaml?&tag=version-1.0.0-rc.63&label=docker-1.0.0-rc.63&style=for-the-badge)
8+
![Docker Build (latest-tag)](https://img.shields.io/github/actions/workflow/status/bondy-io/bondy/docker_image_build.yaml?&tag=version-1.0.0-rc.64&label=docker-1.0.0-rc.64&style=for-the-badge)
99
<br>![Architectures](https://img.shields.io/badge/architecture-linux%2Famd64%20%7C%20linux%2Farm64%20%7C%20macOS%2Fintel%20%7C%20macOS%2FM1-lightgrey?style=for-the-badge)
1010

1111

@@ -165,7 +165,7 @@ make release
165165
Untar and copy the resulting tarball to the location where you want to install Bondy e.g. `~/tmp/bondy`.
166166

167167
```shell
168-
tar -zxvf _build/prod/rel/bondy-1.0.0-rc.63.tar.qz -C ~/tmp/bondy
168+
tar -zxvf _build/prod/rel/bondy-1.0.0-rc.64.tar.qz -C ~/tmp/bondy
169169
```
170170

171171
#### Running

apps/bondy/src/bondy.app.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"Bondy implements the open Web Application Messaging Protocol (WAMP) "
1414
"and is written in Erlang."
1515
},
16-
{vsn, "1.0.0-rc.63"},
16+
{vsn, "1.0.0-rc.64"},
1717
{registered, []},
1818
%% We pass the version number in the bondy_app:start/2 arguments
19-
{mod, {bondy_app, [{vsn, "1.0.0-rc.63"}]}},
19+
{mod, {bondy_app, [{vsn, "1.0.0-rc.64"}]}},
2020
{applications,[
2121
%% Erlang/OTP
2222
stdlib,

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155

156156

157157
{relx, [
158-
{release, {bondy, "1.0.0-rc.63"},[
158+
{release, {bondy, "1.0.0-rc.64"},[
159159
%% Erlang/OTP
160160
crypto,
161161
inets,

0 commit comments

Comments
 (0)