vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 3f044e2dc8435c2eeba61a3c41ec11c820711ab3
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:19:28 2022 +1300
Sid has PostgreSQL 14 now - missed one
commit 8a804854747abb3724c0b8ebb589f3f90b406d5c
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:16:21 2022 +1300
Sid has PostgreSQL 14 now
commit 45f2ee44f2458a8c4e514fdf5a7b3bc329c44b9a
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:11:47 2022 +1300
Update signature to modern version.
The old ordering was deprecated in 7.4.0 and removed in 8.0.0.
commit d86668313caa1fba3bf6300cfd58a1102b2a2475
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:08:30 2022 +1300
Add a test on Bullseye
commit e4c55e16d959feed64a414bd0ce64ef51c42df3e
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:06:05 2022 +1300
Fix syntax
Odd, this worked locally.
commit 87c202bdf74ee56b022ffaeb789e73087977a86a
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 01:02:54 2022 +1300
Fix syntax
commit f9eb625478df4840596720aa1a30b650d1810fec
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sun Feb 13 00:17:55 2022 +1300
Fixes for PHP 8.1
commit f8d42f60d899c66fd17cde7772ace9e8a34289ff
Author: Andrew Ruthven <puck@catalyst.net.nz>
Date: Sat Feb 5 17:35:34 2022 +1300
Fix a short array error when running with PHP 8
Comment bc17f7601fe40903205ad5358081422955ce64ee from 2006 removed one
of the values passed to dbg_error_log without removing the reference
to it in the format. Remove the extraneous %s, this fixes:
Exception [0] The arguments array must contain 5 items, 4 given
At line 64 of /usr/share/awl/inc/AWLUtilities.php
================= Stack Trace ===================
/home/puck/work/Calendar/davical/htdocs/index.php[11] include()
/home/puck/work/Calendar/davical/inc/DAViCalSession.php[199] Session->_CheckLogin()
/usr/share/awl/inc/Session.php[727] dbg_error_log()
/usr/share/awl/inc/AWLUtilities.php[64] vsprintf()
While testing though I found that $POST_['username'] is unset by the Login
function. This is why prior to commit bc17f7601fe40903205ad5358081422955ce64ee
the username was copied to a local variable. Restore that logic.