Skip to content

Releases: progaudi/progaudi.tarantool

v0.16

21 Nov 08:48
Compare
Choose a tag to compare

BREAKING CHANGE

  • drop support for netstandard1.1
  • drop support for net45
  • drop support for net46
  • switch to net462, netstandard2.0, net60
  • tests can't be run on Windowsvia github actions right now (Windows Server do not support Linux Containers for Docker, so can't run tarantool) , so net462 isn't tested via CI.

What's Changed

Full Changelog: 0.15...0.16

Bug fix release

10 Jun 12:47
c783473
Compare
Choose a tag to compare
0.15

Merge pull request #154 from AuthenticEshkinKot/master

Fix forward compatibility with error message

21 Mar 21:44
c046b68
Compare
Choose a tag to compare
0.14

Merge pull request #153 from progaudi/fix/forward-compatibility-error…

Batching in network

17 Sep 07:40
89c91c6
Compare
Choose a tag to compare

Performance improvements via batching on network level

Use msgpack 1.6.2 with correct error messages.

22 Sep 08:48
111fb15
Compare
Choose a tag to compare
Merge pull request #139 from msiomkin/master

Update msgpack to 1.6.2 and produce release builds

Binary compatibility mode

22 Sep 06:27
4a9fd8c
Compare
Choose a tag to compare

Use msgpack.light 1.6.1 to be able to read old binaries from tarantool.

Memory optimization release in msgpack

24 Jan 18:01
50619b9
Compare
Choose a tag to compare
Merge pull request #123 from progaudi/feature/msgpack/update-to-1.5.0

Update msgpack

0.10

25 Oct 16:43
Compare
Choose a tag to compare

Schema reading redesigned.

  • Support both new and old index format: #118
  • Schema reading on connect

0.9.0

25 Oct 16:40
Compare
Choose a tag to compare

.netstandard 2.0 support

0.8.0

30 Jun 14:58
Compare
Choose a tag to compare
  1. Ubuntu network performance issue fixed. Network stack rewritten. In some cases performance increased in 100 times.
  2. Remove generic method types restrictions (where T: ITarantoolTuple). TarantoolTuple classes remains for compatibility, but deprecated. You can use MsgPack.Light converters generation, introduced in version 1.3.0.
  3. Added converters for .net System.Tuple and System.ValueTuple classes.
  4. ConfigureAwait(false) added for each awaitable calls to prevent possible dead locks.