tarantool (2.6.0-1)
[PTS] [DDPO]
OLD: VCS is behind the version in the archive: 1.7.5.46.gd98815384-1 < 2.6.0-1.
- Git: git://github.com/tarantool/tarantool.git
-
- Branch: master
- Path: debian/changelog
- Browser: https://github.com/tarantool/tarantool
- Last scan: 2021-01-15 10:54:03+00
- Next scan: 2021-01-16 13:44:00+00
- Debian changelog in Git:
tarantool (1.7.5.46.gd98815384-1) unstable; urgency=medium
* Stabilization of Vinyl storage engine.
* Improved MemTX TREE iterators.
* Better replication monitoring.
* WAL tracking for remote replicas on master.
* Automatic snapshots every hour.
* Lua API to create consistent backups.
* Hot code reload for stored C procedures.
* New built-in rocks: 'http.client', 'iconv' and 'pwd'.
* Lua 5.1 command line options.
* LuaRocks-based package manager.
* Stack traces support in fiber.info().
* New names for box.cfg() options.
* Hot standy mode is now off by default.
* Support for UNIX pipes in tarantoolctl.
* Non-blocking syslog logger.
* Improved systemd integration.
* Hundrends of bugs fixed, see GitHub release notes for details:
https://github.com/tarantool/tarantool/releases/tag/1.7.5
-- Roman Tsisyk <roman@tarantool.org> Tue, 12 Sep 2017 14:00:00 +0300
- This branch is 12 commits ahead of tag 2.8.0
- Git log:
commit 07160ab1b93211c558be5b53e35b4e17db5b7bdf
Author: Alexander V. Tikhonov <avtikhon@tarantool.org>
Date: Thu Jan 14 14:00:37 2021 +0300
build: fix uninitialized ptr before use
Found issues building on Fedora 33:
test/unit/fiber_channel.cc: In function ‘fiber_channel_basic’:
test/unit/fiber_channel.cc:40:2: error: ‘ptr’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
40 | ok(ptr == &dummy, "fiber_channel_get()");
| ^
test/unit/fiber_channel.cc:37:8: note: ‘ptr’ was declared here
37 | void *ptr;
| ^
test/unit/fiber_channel.cc: In function ‘fiber_channel_get’:
test/unit/fiber_channel.cc:63:2: error: ‘ptr’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
63 | ok(ptr == &dummy, "fiber_channel_get(0)");
| ^
test/unit/fiber_channel.cc:61:8: note: ‘ptr’ was declared here
61 | void *ptr;
| ^
To fix the issue set ptr to NULL during initialization.
Needed for #5502
Part of #5697
commit e90a971dcd9a3e836e2505809df65a026814eea8
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Thu Jul 16 11:42:36 2020 +0000
luacheck: fix warnings in test/box-tap
Closes #5457
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit ed66a97413e31d2c30347de3522559569e7c0c80
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Thu Jul 16 11:42:17 2020 +0000
luacheck: fix warnings in test/box-py
Closes #5456
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit 1fe74027b543a45532d448098ded1c018216132b
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Tue Jul 14 20:54:32 2020 +0000
luacheck: fix warnings in test/box
Closes #5455
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit 4108070c30c148d9420ed79a6f4a82ff594c96e6
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Wed Dec 30 12:56:42 2020 +0000
test: enable disabled testcases back
In a commit "httpc: temporary disable redirecting test case"
(4cc6978ae7be7dc3785a52c064b07850582522de) a set of testcases
has been disabled while the bug #4180 is open.
Right now bug is closed so it is a time to enable testcases back.
Follows up: #4180
commit 56b7388c673191b3d66e1f7129d0c1799da712fe
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Wed Dec 30 12:52:08 2020 +0000
test: enable SO_REUSEADDR on socket in httpd.py
TL;DR httpd.py warns that port is busy when restart server. With socket
option SO_REUSEADDR it allows to restart httpd.py without problem.
Socket option SO_REUSEADDR tells the kernel that even if this port is
busy, go ahead and reuse it anyway. If it is busy, but with another
state, you will still get an address already in use error. It is useful
if your server has been shut down, and then restarted right away while
sockets are still active on its port.
commit 1c2b5559985454a47bd1562a3ceac9da847ccb3c
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Mon Dec 28 15:16:15 2020 +0300
test: fix xlog-py/big_lsn.test.py
Set correct encoding on opening file.
Follows up: #5538
commit 92f9516c339c46cda2a65a4ffd29b55f4334ff53
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Mon Dec 28 15:15:41 2020 +0300
test: fix app-tap/http_client.test.lua
Pass http body as byte string, define string literals correctly
and make items() iterable.
Follows up: #5538
commit a6857bdafc4c987e60774bd5e3d1600555dec71b
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Tue Jul 14 21:08:33 2020 +0000
test: fix luacheck warnings in test/wal_off
Closes #5467
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit c7078689a52f2e81929935c69566f5c4e5d0fadb
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Tue Jul 14 21:28:30 2020 +0000
test: fix luacheck warnings in test/xlog-py
Closes #5469
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit 6e55c30cf5055ef5855d5de0e6a4c8f94c3fd4dd
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Fri May 29 19:31:27 2020 +0000
test: fix luacheck warnings in test/xlog
Closes #5468
Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Reviewed-by: Igor Munkin <imun@tarantool.org>
Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
Co-authored-by: Igor Munkin <imun@tarantool.org>
commit 6e047567f141d2f4891c5d686270c7c27da115f0
Author: Sergey Bronnikov <sergeyb@tarantool.org>
Date: Fri Dec 18 15:44:49 2020 +0000
Add issues templates and redirect questions and support requests
GH allows to create custom templates for different kind of issues.
So two separate types of templates added: for feature requests and
for bug reports.
GH also allows to redirect users from a new issue page to external
resources. So requests with commercial support redirected to Tarantool
website and questions redirected to GH Discussions.
Old bug report template has been removed.
Closes #5642