Skip to content

Release 1.1.0 #419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 8, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/push_rockspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
steps:
- uses: actions/checkout@master

- uses: tarantool/setup-tarantool@v1
- uses: tarantool/setup-tarantool@v3
with:
tarantool-version: '2.5'
tarantool-version: '2.11'

# https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
- name: Set env
Expand Down
40 changes: 20 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# Changelog

## Unreleased
## 1.1.0

- Add logging to unified file (gh-324).
- Add memory leak detection during server process execution (gh-349).
- Added logging to unified file (gh-324).
- Added memory leak detection during server process execution (gh-349).
- Added `assert_error_covers`.
- Add more logs (gh-326).
- Add `justrun` helper as a tarantool runner and output catcher (gh-365).
- Added more logs (gh-326).
- Added `justrun` helper as a tarantool runner and output catcher (gh-365).
- Changed error message for too long Unix domain socket paths (gh-341).
- Add `cbuilder` helper as a declarative configuration builder (gh-366).
- Make `assert_error_*` additionally check error trace if required.
- Add `--list-test-cases` and `--run-test-case` CLI options.
- Introduce preloaded hooks (gh-380).
- Add `treegen` helper as a tree generator (gh-364).
- Add support for declarative configuration to `server.lua` (gh-367).
- Make `assert_covers` recursive (gh-379).
- Add alias `--no-capture` for the option `-c` (gh-391).
- Fix reporting of an assertion failure in `Server:exec()` in case verbose
- Added `cbuilder` helper as a declarative configuration builder (gh-366).
- Made `assert_error_*` additionally check error trace if required.
- Added `--list-test-cases` and `--run-test-case` CLI options.
- Introduced preloaded hooks (gh-380).
- Added `treegen` helper as a tree generator (gh-364).
- Added support for declarative configuration to `server.lua` (gh-367).
- Made `assert_covers` recursive (gh-379).
- Added alias `--no-capture` for the option `-c` (gh-391).
- Fixed reporting of an assertion failure in `Server:exec()` in case verbose
error serialization is enabled in Tarantool (gh-376).
- Added `assert_items_exclude`.
- Strip useless `...` lines from error trace.
- Fix error trace reporting for functions executed with `Server:exec()`
- Stripped useless `...` lines from error trace.
- Fixed error trace reporting for functions executed with `Server:exec()`
(gh-396).
- Remove pretty-printing of `luatest.log` arguments.
- Add `cluster` helper as a tool for managing a Tarantool cluster (gh-368).
- Fix `Server:grep_log()` to work with a server instance started using
- Removed pretty-printing of `luatest.log` arguments.
- Added `cluster` helper as a tool for managing a Tarantool cluster (gh-368).
- Fixed `Server:grep_log()` to work with a server instance started using
the `cluster` helper (gh-389).
- Fix `Server:grep_log()` to work with a stopped server instance (gh-397).
- Fixed `Server:grep_log()` to work with a stopped server instance (gh-397).

## 1.0.1

Expand Down
2 changes: 1 addition & 1 deletion luatest/VERSION.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return '1.0.1'
return '1.1.0'
Loading