데비안의 패키지 출시 날짜

데비안의 패키지 출시 날짜

현재 패키지 버전의 출시 날짜를 찾는 방법은 무엇입니까? 패키지 정보에 표시되지 않습니다.

$ dpkg -p libmagic1
Package: libmagic1
Priority: standard
Section: libs
Installed-Size: 2445
Maintainer: Daniel Baumann <[email protected]>
Architecture: amd64
Multi-Arch: same
Source: file
Version: 5.11-2+deb7u9
Depends: libc6 (>= 2.8), zlib1g (>= 1:1.1.4)
Pre-Depends: multiarch-support
Suggests: file
Size: 204520
Description: File type determination library using "magic" numbers
 This library can be used to classify files according to magic number tests. It
 implements the core functionality of the file command.
Homepage: http://www.darwinsys.com/file/

답변1

설치 변경 로그 상단에는 설치된 패키지 버전이 출시된 시기가 표시됩니다.

$ zcat /usr/share/doc/libmagic1/changelog.Debian.gz | head
file (1:5.35-4+deb10u1) buster-security; urgency=high

  * Cherry-pick commit to restrict the number of CDF_VECTOR elements.
    Closes: #942830 [CVE-2019-18218]

 -- Christoph Biedl <[email protected]>  Tue, 22 Oct 2019 21:57:17 +0200

file (1:5.35-4) unstable; urgency=medium

  * Cherry-pick fix for JSON detection. Closes: 922874

따라서 현재 데비안 10 패키지는 2019년 10월 22일에 출시되었습니다.데비안 9 패키지:

file (1:5.30-1+deb9u3) stretch-security; urgency=high

  * Cherry-pick commit to restrict the number of CDF_VECTOR elements.
    Closes: #942830 [CVE-2019-18218]

 -- Christoph Biedl <[email protected]>  Tue, 22 Oct 2019 22:20:07 +0200

file (1:5.30-1+deb9u2) stable; urgency=high

  * Avoid reading past the end of buffer. Closes: #901351

(확인할 수 있는 Debian 7 시스템이 없지만 이 명령은 거기에서도 작동합니다.)

관련 정보