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 4ff117ecbd2173747da90d387abafa1a56675b55
Merge: ea9c5cb30 aa142694c
Author: Julian Andres Klode <jak@debian.org>
Date:   Tue Oct 28 07:56:27 2025 +0000
    Merge branch 'missing-includes' into 'main'
    
    Fix missing includes
    
    See merge request apt-team/apt!528
commit aa142694c08158b173dff009d3075e605bc97e3c
Author: Ruoyu Zhong <zhongruoyu@outlook.com>
Date:   Tue Oct 28 13:08:28 2025 +0800
    Fix missing includes
    
    This was missed in 4b22a1e36 (apt-team/apt!522), and caused the
    following error when built with GCC 12:
    
        /var/tmp/apt-20251026-9687-pc954n/apt-3.1.10/apt-private/private-cmndline.cc:544:23: error: ‘optional’ is not a member of ‘std’
          544 | static std::pair<std::optional<long unsigned int>, std::optional<long unsigned int>> parseCliVersion(std::string_view version)
              |                       ^~~~~~~~
        /var/tmp/apt-20251026-9687-pc954n/apt-3.1.10/apt-private/private-cmndline.cc:27:8: note: ‘std::optional’ is defined in header ‘<optional>’; did you forget to ‘#include <optional>’?
           26 | #include <apti18n.h>
          +++ |+#include <optional>
           27 |                                                                         /*}}}*/
    
    While at it, also add missing <utility> include for std::pair.
    
    Discovered in https://github.com/Homebrew/homebrew-core/pull/251162 by
    Anton Melnikov.
    
    Co-authored-by: Anton Melnikov <antonsm21@gmail.com>
    Signed-off-by: Ruoyu Zhong <zhongruoyu@outlook.com>