vcswatch reports that
this package seems to have a new changelog entry (version
1.5.90, 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 63d23768a43c982823b86057fce7c7b7c6208b46
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Feb 9 16:42:13 2025 +0000
Update changelog
commit d76c21cb96d84a01389d199ca321ae48f8180358
Merge: 00d8f4a 5f1e636
Author: Colin Watson <cjwatson@debian.org>
Date: Sun Feb 9 16:41:10 2025 +0000
Merge branch 'master' into 'master'
po: Add Georgian translation
See merge request pkg-debconf/debconf!21
commit 5f1e63641aa3a1d42a1547361ff40f41e1b901d6
Author: Temuri Doghonadze <temuri.doghonadze@gmail.com>
Date: Sun Feb 9 05:31:48 2025 +0000
po: Add Georgian translation
commit 4f1c088407101fd2ca846ee5618c718d2a397d8e
Author: Temuri Doghonadze <temuri.doghonadze@gmail.com>
Date: Sun Feb 9 05:30:56 2025 +0000
po: Add Georgian transltation
commit 00d8f4af5c55d34678c4fb8f114e4bfb410ae8c6
Author: Colin Watson <cjwatson@debian.org>
Date: Mon Jan 6 11:45:52 2025 +0000
Add Romanian
Thanks, Remus-Gabriel Chelu.
Closes: #1083078
commit b19f3abf1a74af87d18eed00d76edb8a0c824791
Author: Benjamin Drung <benjamin.drung@canonical.com>
Date: Mon Jan 9 10:48:40 2023 +0100
Fix uninitialized value on "EOF" (^D)
During a `dpkg-reconfigure localepurge`, hitting "EOF" (^D) to one of
the questions will trigger a warning about using an uninitialized value:
```
Use of uninitialized value $_[1] in join or string at /usr/share/perl5/Debconf/DbDriver/Stack.pm line 111.
```
The same happens when hitting "EOF" (^D) when reconfiguring tzdata
(`dpkg-reconfigure --frontend readline tzdata`).
When a user hits ^D on a `readline` or `teletype` front end,
`Debconf::FrontEnd::Teletype->prompt` will return `undef`. The function
description says: "Anything that uses this function should catch that
and handle it, probably by exiting any read/validate loop it is in."
Checking the return value of the `show` function in the `readline`
front end will fix the warning and revert to the backup (if the debconf
is backup capable). The bug should probably fixed in a different
location to also cover the `teletype` front end.
Closes: #723843
LP: #1899343
Signed-off-by: Benjamin Drung <benjamin.drung@canonical.com>