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 09cffe3d0131eeb5eff880bdc118415bce5ff51c
Author: Rene Kudlek <rene.kudlek@iserv.eu>
Date: Tue Apr 2 17:25:12 2024 +0200
Don't use PHP 7.0 features
commit deacf64d68981c82821da7e1554626c3482fb288
Author: Rene Kudlek <rene.kudlek@iserv.eu>
Date: Mon Mar 25 18:06:48 2024 +0100
Perform null check on timezone_identifiers_list_cache in AWLUtilities
commit a3b9ae1634dc637e494eedfad932b7e3500c42a4
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Tue Apr 30 20:54:02 2024 +1200
Bump version to 0.65
commit 9ed3db3bc3c4b08335514f8f00147542d3b69e0b
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Fri Mar 8 09:32:30 2024 +1300
Add building the .deb files
commit 9111a9d58c7474b6c237a146ea0351c55b5a82b0
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Thu Mar 7 23:52:19 2024 +1300
Update the ChangeLog
commit 6817961a15a6c4f386d2f175bbeb33e6e97ddb0f
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Feb 25 13:15:51 2024 +1300
Include a request ID in logging
Closes #27
commit 33678418692ab1d82ff4ab064e64d1d7064ec10a
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Wed Feb 28 08:14:16 2024 +1300
Explicitly declare all class properties (more)
commit 27b37d1eba82c3f9abbc4505179d06abce0fa0d3
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Wed Feb 28 01:03:36 2024 +1300
Remove a PHP 7ism
commit b879addd766ab2a54aa92d58c48c26a985c89690
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Wed Feb 28 00:57:59 2024 +1300
Ensure we pass a string to htmlspecialchars()
PHP 8.1 deprecated passing null into many functions. This fixes these errors:
Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of
type string is deprecated in /usr/share/awl/inc/classEditor.php on line 626
commit 45b796e24bc21ba83332aff9f6af7a0108d906b0
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Feb 25 23:47:43 2024 +1300
Explicitly declare all class properties (more)
commit e1e0ccc540094609abf30c04ac266c73a52d55b9
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Feb 25 19:21:14 2024 +1300
Use the Gitlab CI setup script from DAViCal
This removes the duplication of logic between the two repos.
commit 44e2ee89e5aa4994878520fe5b0e5d1f30205f7c
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Feb 25 14:25:28 2024 +1300
Explicitly declare all class properties
PHP 8.2.0 has deprecated dynamic creation of properties.
This kind of warning message is displayed:
Deprecated: Creation of dynamic property DAViCalSession::$login_failed is
deprecated in /usr/share/awl/inc/Session.php on line 153
commit 567b55a0792e28c148f16947205bedd3ecdfb440
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Jan 21 14:04:03 2024 +1300
Drop Buster, test Bookworm
commit 90f90b6c1d708011bc64cb28cfef4bf7c32932b8
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Jan 21 14:03:29 2024 +1300
Bump PostgreSQL to 16
I'm very tempted to move all this logic to script that can just detect what
version of PostgreSQL is being used.
commit f4caa0fcf9412a4b24d1f674412ba796b90bd465
Author: Andrew Ruthven <andrew@etc.gen.nz>
Date: Sun Jan 21 13:11:06 2024 +1300
Fix tmp_password check if the password passed is a number
Ensure we cast the password as text.
2024-01-21 12:39:55 NZDT davical_app - davical ERROR: operator does not exist: text = integer at character 68
2024-01-21 12:39:55 NZDT davical_app - davical HINT: No operator matches the given name and argument types. You might need to add explicit type casts.
2024-01-21 12:39:55 NZDT davical_app - davical STATEMENT: SELECT 1 AS ok FROM tmp_password WHERE user_no = 1017 AND password = 12345 AND valid_until > current_timestamp
Reported on https://gitlab.com/davical-project/davical/-/issues/305
commit 3764b8ca85bea3dbf5e367248357f08a279ac97f
Author: Athos Ribeiro <athoscribeiro@gmail.com>
Date: Sun Jul 2 15:03:50 2023 -0300
Add support for phpunit 10
commit 95af486101bebfecbdaa85227010b9bbb76c8bbd
Author: Andrew Ruthven <puck@catalystcloud.nz>
Date: Fri Jun 9 14:15:33 2023 +1200
Drop testing on Debian Stretch, it is archived
commit ff437d2ad1f3e947012a4deedaf79d4f39476fb7
Author: Matthew Hunt <matt@catalyst.net.nz>
Date: Fri Jun 9 12:50:25 2023 +1200
Fix for some deprecations and warnings in PHP8.1
commit d3759db21195b1e49e171f83f9685bd3b650569a
Author: Florian Schlichting <fsfs@debian.org>
Date: Thu Mar 23 22:19:06 2023 +0100
use array_merge instead of "+" to concatenate arrays
I noticed this when looking for other occurrences of davical#288
It likely has no consequences as we're never calling GetElements() with
a second argument...