Skip to content

Releases: FZambia/tarantool

v0.3.1

25 May 17:55
7c849bf
Compare
Choose a tag to compare
  • Fix panic: close of nil channel on closing connection after an error - #10

v0.3.0

16 Jan 07:11
7aeb1a1
Compare
Choose a tag to compare
  • Removing Response type from public API – see #8 for details.
> gorelease -base v0.2.3 -version v0.3.0
# github.com/FZambia/tarantool
## incompatible changes
(*Connection).Exec: changed from func(*Request) (*Response, error) to func(*Request) ([]interface{}, error)
(*Connection).ExecContext: changed from func(context.Context, *Request) (*Response, error) to func(context.Context, *Request) ([]interface{}, error)
(*Request).WithPush: changed from func(func(*Response)) *Request to func(func([]interface{})) *Request
ErrorCodeBit: removed
Future.Get: changed from func() (*Response, error) to func() ([]interface{}, error)
FutureContext.GetContext: changed from func(context.Context) (*Response, error) to func(context.Context) ([]interface{}, error)
OkCode: removed
Response: removed

# summary
v0.3.0 is a valid semantic version for this release.

v0.2.3

05 Nov 13:02
0a531b1
Compare
Choose a tag to compare
  • Add DisableArrayEncodedStructs option.
> gorelease -base v0.2.2 -version v0.2.3
github.com/FZambia/tarantool
----------------------------
Compatible changes:
- Opts.DisableArrayEncodedStructs: added

v0.2.3 is a valid semantic version for this release.

v0.2.2

21 May 23:02
e2fc946
Compare
Choose a tag to compare
  • Up msgpack dependency

v0.2.1

26 Feb 13:07
9168aa7
Compare
Choose a tag to compare
  • Fix type conversion causing panic on schema load - see #3

v0.2.0

23 Feb 09:27
445a293
Compare
Choose a tag to compare
  • Fix parsing connection address with non-ip host and without tcp:// scheme, like localhost:3301 - previously connecting with such an address resulted in configuration error

v0.1.1

20 Jan 14:46
Compare
Choose a tag to compare
  • Fix calling ExecTypedContext w/o timeout - see #1

v0.1.0

09 Jan 13:34
Compare
Choose a tag to compare
  • Remove default logger - user must explicitly provide logger to get logs from a package