Skip to content

Releases: tarantool/testcontainers-java-tarantool

[1.3.3] - 2024-05-07

07 May 10:21
Compare
Choose a tag to compare

What's Changed

  • Add support for environment variable TARANTOOL_REGISTRY in #124

Full Changelog: v1.3.2...v1.3.3

[1.3.2] - 2024-04-25

25 Apr 14:05
Compare
Choose a tag to compare

What's Changed

  • Fix NullPointerException during building docker image when images with null tags exist on a local machine.

Full Changelog: v1.3.1...v1.3.2

[1.3.1] - 2024-02-13

13 Feb 14:26
Compare
Choose a tag to compare

What's Changed

  • Changed TARANTOOL_VERSION default value from 2.11.2-centos7 to 2.11.2-ubuntu20.04.
    It ruined rocks building due to certificate issues on centos

Full Changelog: v1.3.0...v1.3.1

[1.3.0] - 2024-02-02

02 Feb 16:22
Compare
Choose a tag to compare

What's Changed

  • Change TARANTOOL_VERSION semantic. Now it's expected to be a full tag, not prefix of centos version.
    was: ${TARANTOOL_VERSION}-centos7 # TARANTOOL_VERSION == 2.11.2
    now: ${TARANTOOL_VERSION} # TARANTOOL_VERSION could be == 2.11.2-centos7
    (#114)
  • Support executeCommand for tarantool 3.0+

Full Changelog: v1.2.0...v1.3.0

[1.2.0] - 2023-12-14

20 Dec 10:08
Compare
Choose a tag to compare

What's Changed

  • Remove the default value for TARANTOOL_CLUSTER_COOKIE env variable in cartridge container.
    Now it works like in cartridge in order of decreasing priority as directed by the user:
    TARANTOOL_CLUSTER_COOKIE > cartridge.cfg > default_cookie
    You can set TARANTOOL_CLUSTER_COOKIE by build-arg on image building or by env arg before container starting
    (#55)
  • [Breaking change] Default routerPassword has been changed from testapp-cluster-cookie to secret-cluster-cookie
    (#55)
  • Change private modifier to protected modifier for fields and methods in TarantoolCartridgeContainer
  • Add TARANTOOL_VERSION environment variable support to TarantoolCartridgeContainer
    tarantool/tarantool:<TARANTOOL_VERSION>-centos7 if image name is omitted
    (#102)

Full Changelog: v1.1.0...v1.2.0

[1.1.0] - 2023-12-12

12 Dec 09:02
Compare
Choose a tag to compare

What's Changed

  • Bumped testcontainers to 1.19.3 (#99)
  • Removed cached rocks on cartridge image rebuilding (#99)
  • Added passing instancesFile to cartridge replicasets command (#99)

Full Changelog: v1.0.2...v1.1.0

[1.0.2] - 2023-11-10

10 Nov 16:33
Compare
Choose a tag to compare
  • Make a separate step for building the cartridge by @nickkkccc in #95

Full Changelog: v1.0.1...v1.0.2

[1.0.1] - 2023-10-04

09 Nov 12:32
Compare
Choose a tag to compare

What's Changed

  • Propagate log directory to cartridge-cli command by @akudiyar in #83
  • Fix COMMAND_TEMPLATE to use it with the 1.x Tarantool version by @nickkkccc in #88
  • Fix startup timeout in the Cartridge container tests by @nickkkccc in #91

Full Changelog: v1.0.0...v1.0.1

[1.0.0] - 2023-06-16

16 Jun 13:21
Compare
Choose a tag to compare

What's Changed

  • Fix problem if topology isn't applied correctly by @ArtDu in #70
  • Bump testcontainers to 1.18.0 by @ArtDu in #72
  • Move rocks building in build phase by @ArtDu in #68
  • Use "addExposedPorts" instead of "withExposedPorts" by @ArtDu in #76
  • [breaking change] Remove io.tarantool.cartridge-driver dependency by @iDneprov in #71
  • [breaking change] Update executeScript and executeCommand methods to execute code via execInContainer by @iDneprov in #71
    (now it returns yaml string in Container.ExecResult instead of CompletableFuture)
  • Add executeScriptDecoded and executeCommandDecoded methods to return parsed yaml not string by @iDneprov in #71
  • Add SslContext class and withSslContext method by @iDneprov in #71
  • Update org.yaml.snakeyaml to 2.0 by @iDneprov in #71
  • Add editorconfig by @ArtDu in #77

New Contributors

Full Changelog: v0.5.4...v1.0.0

[0.5.0] - 2022-05-18

18 May 18:01
Compare
Choose a tag to compare
  • Added ability to configure cluster from yaml (#40)
  • Added migrations example in tests (#42)
  • Added feature for creating tarantool container from sdk (#43)