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
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@

## Unreleased

- `Detect Tarantool Enterprise by tarantool.package in utils.get_tnt_version()`
### Added

### Changed

### Fixed

## [0.0.14] - 2026-09-11

This release fixes Tarantool Enterprise detection and flaky tests.

### Fixed

- Detect Tarantool Enterprise by tarantool.package in utils.get_tnt_version()
(#58).
- Flaky `cluster.test_get_instances` and `cluster.test_get_replicaset_instances`
tests by waiting until all instances report `healthy` status before running
assertions.

## 0.0.13

Expand Down
2 changes: 1 addition & 1 deletion graphqlapi/VERSION.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Сontains the module version.
-- Requires manual update in case of release commit.

return '0.0.13'
return '0.0.14'
9 changes: 9 additions & 0 deletions test/integration/cluster_test.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ g.before_each(function()
local cluster_config = table.deepcopy(helper.cluster_config)
g.cluster = helper.Cluster:new(cluster_config)
g.cluster:start()

helper.retrying({}, function()
t.assert_equals(helper.list_cluster_issues(g.cluster.main_server), {})
end)

helper.retrying({}, function()
local instances = g.cluster.main_server.net_box:eval(
"return require('graphqlapi.cluster').get_instances()")
for _, instance in ipairs(instances) do
t.assert_equals(instance.status, 'healthy')
end
end)
Comment thread
oleg-jukovec marked this conversation as resolved.
end)

g.after_each(function()
Expand Down
Loading