conmon (2.1.6+ds1-1)
[PTS] [DDPO]
OLD: VCS is behind the version in the archive: 2.1.3+ds1-1 < 2.1.6+ds1-1.
- Git: https://salsa.debian.org/podman-team/conmon.git
-
- Branch: master
- Path: debian/changelog
- Repo size: 3768320
- Browser: https://salsa.debian.org/podman-team/conmon
- Last scan: 2023-09-27 01:34:10+00
- Next scan: 2023-10-05 13:24:00+00
- Merge requests: 1
- CI pipeline status: failed
- Debian changelog in Git:
conmon (2.1.3+ds1-1) unstable; urgency=medium
* New upstream release
- Fixes: conmon: address already in use, closes: #999548
-- Reinhard Tartler <siretart@tauware.de> Sat, 06 Aug 2022 16:12:36 +0200
- This branch is 14 commits ahead of tag archive/debian/2.1.2+ds1-2
- Git log:
commit cfce7b57a710fd6686c6a7687dda5b3a26982de8
Author: Reinhard Tartler <siretart@tauware.de>
Date: Sat Aug 6 16:12:43 2022 +0200
debian/changelog: update
commit faa63fd53088275ed63129d3ea7c860f6b5d351f
Merge: 4b647b9 83d09ed
Author: Reinhard Tartler <siretart@tauware.de>
Date: Sat Aug 6 16:05:39 2022 +0200
Merge version v2.1.3+ds1
commit 83d09ed2d9a9aba5f7a4b6466764e7ed1b0b6ee1
Author: Reinhard Tartler <siretart@tauware.de>
Date: Sat Aug 6 16:05:17 2022 +0200
remove tools
commit ab52a597278b20173440140cd810dc9fa8785c93
Author: Giuseppe Scrivano <gscrivan@redhat.com>
Date: Mon Jul 25 22:08:22 2022 +0200
VERSION: bump to 2.1.3
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
commit 7074480fa2d1b4e4bcf55d9cade867250c13cfc6
Merge: daeaf97 a627951
Author: Daniel J Walsh <dwalsh@redhat.com>
Date: Mon Jul 25 15:56:38 2022 -0400
Merge pull request #339 from haircommander/meson-seccmop
meson: optionally build seccomp if it supports notify
commit a627951dde50ef5d54e5ec70707b527b271fa154
Author: Peter Hunt <pehunt@redhat.com>
Date: Mon Jul 25 13:00:32 2022 -0400
meson: build with seccomp if available
Signed-off-by: Peter Hunt <pehunt@redhat.com>
commit daeaf97acabb5d3902fa0a0252c11c1d496b28d3
Merge: b1ca51f 1750b2d
Author: Daniel J Walsh <dwalsh@redhat.com>
Date: Mon Jul 25 09:23:55 2022 -0400
Merge pull request #338 from dfr/freebsd
Port conmon to FreeBSD
commit 1750b2d0a0fd79fa93f2892ac88b7efe7a2bb8c6
Author: Doug Rabson <dfr@rabson.org>
Date: Fri Jun 17 13:34:16 2022 +0100
Fix build on FreeBSD-13.0
Signed-off-by: Doug Rabson <dfr@rabson.org>
commit 0a2e0dbe30f38bd2fb9317f2f6b17b6e3f64fcd1
Author: Doug Rabson <dfr@rabson.org>
Date: Tue May 31 14:01:54 2022 +0100
Reduce the amount of duplicated code between Linux and FreeBSD
This factors out the platform mechanisms which allow binding sockets to
path names which are too large for sockaddr_un.
Signed-off-by: Doug Rabson <dfr@rabson.org>
commit 32816bd66de4828daa178de0f20e8a6ea52b397f
Author: Doug Rabson <dfr@rabson.org>
Date: Sat May 14 11:16:36 2022 +0100
Port conmon to FreeBSD
The main things which I changed were:
* Factor out calls to prctl so that I can replace with FreeBSD procctl
equivalents without making an ifdef mess.
* Work around the fact that FreeBSD doesn't allow chown on sockets and
non-named pipes.
* Use a different workaround for socket paths too long for sockaddr_un - the
Linux O_PATH thing was replaced with a near equivalent use of FreeBSD's
bindat.
* Some rearranging of ifdefs so that I can cut cgroups and seccomp out of the
FreeBSD build.
* Reading from pipes and/or ptys can error with EGAIN for some reason - these
calls can simply be retried similar to EINTR.
Signed-off-by: Doug Rabson <dfr@rabson.org>
commit b1ca51f59a8865565425a3c85bfe90e0275d465a
Author: Peter Hunt <pehunt@redhat.com>
Date: Wed Jun 1 14:03:21 2022 -0400
gh actions: bump versions
Signed-off-by: Peter Hunt <pehunt@redhat.com>
commit 05163fd053baf8ee5dccc72c1cee12511083f967
Author: Peter Hunt <pehunt@redhat.com>
Date: Wed Jun 1 13:00:48 2022 -0400
bump golang in gh action to 1.18
Signed-off-by: Peter Hunt <pehunt@redhat.com>
commit a2a081b9ec1542422eef296cd64d942136a57958
Merge: 2bc95ee d91cc43
Author: Daniel J Walsh <dwalsh@redhat.com>
Date: Tue Jun 21 09:25:09 2022 -0400
Merge pull request #343 from allisonkarlitskaya/signalfd
Stop using g_unix_signal_add() to avoid threads
commit d91cc4321797eaa84dcfb7863e91632d2fe26861
Author: Allison Karlitskaya <allison.karlitskaya@redhat.com>
Date: Wed Jun 15 16:00:34 2022 +0200
Stop using g_unix_signal_add() to avoid threads
g_unix_signal_add() is implemented via an implicitly-created worker
thread in GLib. This thread creates an eventfd, and conflicts with
conmon's general approach to taking full ownership of all open fds in
the process.
Stop using g_unix_signal_add() and switch to using g_unix_fd_add() on a
signalfd() as an alternative approach.
Fixes #330
Signed-off-by: Allison Karlitskaya <allison.karlitskaya@redhat.com>