Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.4.9

### Added

- `protocol` application env option (default: `shackle_tcp`). Setting
it to `shackle_socket` runs pools on the `socket`-based shackle
transport instead of `gen_tcp`, which cuts client-side CPU per
request. Requires a shackle release that ships `shackle_socket`;
the default behaviour is unchanged.

### Changed

- Trim the request encode path: long strings are no longer copied
into a fresh binary and query flags are computed with direct map
lookups.

## 0.4.8

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/marina.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, marina, [
{description, "High-Performance Erlang Cassandra / Scylla CQL Client"},
{vsn, "0.4.8"},
{vsn, "0.4.9"},
{registered, []},
{applications, [
kernel,
Expand Down
Loading