vcswatch reports that
this package seems to have a new changelog entry (version
1.0.13-1, distribution
UNRELEASED) and new commits
in its VCS. You should consider whether it's time to make
an upload.
Here are the relevant commit messages:
commit 6af974df7a2724d5ec2aa11a2cc72f0dfe361cef
Author: James McCoy <jamessan@debian.org>
Date: Fri Jul 10 01:13:57 2026 -0400
Declare compliance with Policy 4.7.4, no changes needed
Signed-off-by: James McCoy <jamessan@debian.org>
commit d9558e761aa3b13370a6dcc077fe52815bac410c
Author: James McCoy <jamessan@debian.org>
Date: Fri Jul 10 01:13:10 2026 -0400
Update to debhelper compat 14
Signed-off-by: James McCoy <jamessan@debian.org>
commit 3bf6a92cc8bfa5dc33a08f3f80cbffd6dd823cd2
Author: James McCoy <jamessan@debian.org>
Date: Thu Jul 9 23:08:24 2026 -0400
Remove Lua 5.2 support
Signed-off-by: James McCoy <jamessan@debian.org>
commit d923fd1638ccdf774dc47ee57072034cb3ba18f3
Author: James McCoy <jamessan@debian.org>
Date: Thu Jul 9 23:00:43 2026 -0400
Start changelog for 1.0.13
Signed-off-by: James McCoy <jamessan@debian.org>
commit d1382e96a8fb438ddc9b1b5bc2ee48512a17a63b
Merge: 956e03b 9505331
Author: James McCoy <jamessan@debian.org>
Date: Thu Jul 9 22:59:43 2026 -0400
Merge tag '1.0.13' into debian/sid
commit 950533192380485261dfc1be08f1edb2297787e7
Author: Thiago Padilha <thiago@padilha.cc>
Date: Sat Oct 25 05:54:48 2025 -0300
Bump
commit f1274d28a8716dd160cfcf126d1009cd32766823
Author: Victor Ananyev <vindex10@gmail.com>
Date: Sun Jan 23 13:45:28 2022 +0100
support various lua executable formats
commit 246598ff2e7d79f7568bfcded6848828d331a0e5
Author: Matěj Cepl <mcepl@cepl.eu>
Date: Mon Oct 13 16:03:54 2025 +0200
fix: make the package build with Lua API < 5.2
This is required change to make the package build with LuaJIT.
Signed-off-by: Matěj Cepl <mcepl@cepl.eu>
commit 95876d9f1cea20eafb1c8021a0b4d9245a8b346e
Author: Fred Sundvik <fsundvik@gmail.com>
Date: Tue Feb 6 01:01:33 2024 +0200
Fix buffer overrun when giving an offset to Session:receive
It was not taking the offset into account when calculating the size.
A new test for split messages, which fails without the fix, was also
added.
commit fbd13c9760f0b7841ae30ae635accbd89b1b49cd
Author: Thiago Padilha <thiago@padilha.cc>
Date: Mon Oct 9 05:59:32 2023 -0300
Bump
commit 4eb5985e8337ed93fee6d5c97ea4e631309acb13
Author: nwounkn <nwounkn@gmail.com>
Date: Mon Oct 9 00:18:23 2023 +0500
Fix failure to encode a list-like table with string keys
Problem:
A table can't be encoded, if its keys converted to numbers are unique
integers in interval [1; n], and some of them are strings. A table like
that is treated like an array. `lmpack_objlen` uses `lua_isnumber` to
determine if a key is a number. `lua_isnumber` returns
1 for a string convertible to a number.
Solution:
Use `lua_type` instead.