[SECURITY] Fedora 35 Update: stb-0-0.7.20211022gitaf1a5bc.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-d1446cd1ac
2021-10-31 01:07:25.016970
--------------------------------------------------------------------------------
Name : stb
Product : Fedora 35
Version : 0
Release : 0.7.20211022gitaf1a5bc.fc35
URL : https://github.com/nothings/stb
Summary : Single-file public domain libraries for C/C++
Description :
Single-file public domain libraries for C/C++.
--------------------------------------------------------------------------------
Update Information:
Security fix for CVE-2021-42715 and CVE-2021-42716
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.7
- Security fix for CVE-2021-42715 and CVE-2021-42716
* Fri Oct 22 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.6
- Update to af1a5bc
* Fri Oct 22 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.5
- Reduce macro indirection in the spec file
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2017908 - CVE-2021-42715 stb: DoS in stb_image HDR loader via a crafted file
https://bugzilla.redhat.com/show_bug.cgi?id=2017908
[ 2 ] Bug #2017913 - CVE-2021-42716 stb: heap-based buffer overflow in stb_image PNM loader
https://bugzilla.redhat.com/show_bug.cgi?id=2017913
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-d1446cd1ac' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: atomic-queue-0-0.6.20211022git7013a8b.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-ea7701eb2b
2021-10-31 01:07:25.016952
--------------------------------------------------------------------------------
Name : atomic-queue
Product : Fedora 35
Version : 0
Release : 0.6.20211022git7013a8b.fc35
URL : https://github.com/max0x7ba/atomic_queue
Summary : C++ lockless queue
Description :
C++14 multiple-producer-multiple-consumer lockless queues based on circular
buffer with std::atomic.
The main design principle these queues follow is minimalism: the bare minimum
of atomic operations, fixed size buffer, value semantics.
These qualities are also limitations:
��� The maximum queue size must be set at compile time or construction time.
The circular buffer side-steps the memory reclamation problem inherent in
linked-list based queues for the price of fixed buffer size. See Effective
memory reclamation for lock-free data structures in C++ for more details.
Fixed buffer size may not be that much of a limitation, since once the
queue gets larger than the maximum expected size that indicates a problem
that elements aren���t processed fast enough, and if the queue keeps growing
it may eventually consume all available memory which may affect the entire
system, rather than the problematic process only. The only apparent
inconvenience is that one has to do an upfront back-of-the-envelope
calculation on what would be the largest expected/acceptable queue size.
��� There are no OS-blocking push/pop functions. This queue is designed for
ultra-low-latency scenarios and using an OS blocking primitive would be
sacrificing push-to-pop latency. For lowest possible latency one cannot
afford blocking in the OS kernel because the wake-up latency of a blocked
thread is about 1-3 microseconds, whereas this queue���s round-trip time can
be as low as 150 nanoseconds.
Ultra-low-latency applications need just that and nothing more. The minimalism
pays off, see the throughput and latency benchmarks.
Available containers are:
��� AtomicQueue - a fixed size ring-buffer for atomic elements.
��� OptimistAtomicQueue - a faster fixed size ring-buffer for atomic elements
which busy-waits when empty or full.
��� AtomicQueue2 - a fixed size ring-buffer for non-atomic elements.
��� OptimistAtomicQueue2 - a faster fixed size ring-buffer for non-atomic
elements which busy-waits when empty or full.
These containers have corresponding AtomicQueueB, OptimistAtomicQueueB,
AtomicQueueB2, OptimistAtomicQueueB2 versions where the buffer size is
specified as an argument to the constructor.
Totally ordered mode is supported. In this mode consumers receive messages in
the same FIFO order the messages were posted. This mode is supported for push
and pop functions, but for not the try_ versions. On Intel x86 the totally
ordered mode has 0 cost, as of 2019.
Single-producer-single-consumer mode is supported. In this mode, no
read-modify-write instructions are necessary, only the atomic loads and stores.
That improves queue throughput significantly.
--------------------------------------------------------------------------------
Update Information:
Add support for missing architectures (ppc64le, s390x)
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.6
- Update to 7013a8b (support up to 256 byte cache lines)
* Wed Oct 20 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.5
- Update to ee3d91c: fix RHBZ#1994598, fix RHBZ#1994599
* Tue Oct 19 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.4
- Update to commit dfd2cbe
* Fri Sep 24 2021 Benjamin A. Beasley <code(a)musicinmybrain.net> 0-0.3
- We really don���t need to adjust the C++ standard for the tests
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1994598 - atomic-queue is ExclusiveArch with no support for s390x
https://bugzilla.redhat.com/show_bug.cgi?id=1994598
[ 2 ] Bug #1994599 - atomic-queue is ExclusiveArch with no support for ppc64le
https://bugzilla.redhat.com/show_bug.cgi?id=1994599
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-ea7701eb2b' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: sameboy-0.14.6-1.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-527efb8988
2021-10-31 01:07:25.016933
--------------------------------------------------------------------------------
Name : sameboy
Product : Fedora 35
Version : 0.14.6
Release : 1.fc35
URL : https://github.com/LIJI32/SameBoy
Summary : Game Boy and Game Boy Color emulator written in C
Description :
SameBoy is an open source Game Boy (DMG) and Game Boy Color (CGB) emulator,
written in portable C. It has a native Cocoa front-end for MacOS,
an SDL front-end for other operating systems, and a libretro core.
It also includes a text-based debugger with expression evaluation.
--------------------------------------------------------------------------------
Update Information:
Update to 0.14.6
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Jan Dr��gehoff <sentrycraft123(a)gmail.com> - 0.14.6-1
- Update to 0.14.6
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-527efb8988' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: perl-Compress-Stream-Zstd-0.202-3.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-b04da59a34
2021-10-31 01:07:25.016916
--------------------------------------------------------------------------------
Name : perl-Compress-Stream-Zstd
Product : Fedora 35
Version : 0.202
Release : 3.fc35
URL : https://metacpan.org/release/Compress-Stream-Zstd/
Summary : Perl interface to the Zstd (Zstandard) (de)compressor
Description :
The Compress::Stream::Zstd module provides an interface to the Zstd
(de)compressor.
--------------------------------------------------------------------------------
Update Information:
Initial package
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2011825 - Review Request: perl-Compress-Stream-Zstd - Perl interface to the Zstd (Zstandard) (de)compressor
https://bugzilla.redhat.com/show_bug.cgi?id=2011825
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-b04da59a34' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: python-dropbox-11.22.0-1.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-ce13e89e76
2021-10-31 01:07:25.016896
--------------------------------------------------------------------------------
Name : python-dropbox
Product : Fedora 35
Version : 11.22.0
Release : 1.fc35
URL : https://www.dropbox.com/developers/core/sdks
Summary : Official Dropbox REST API Client
Description :
A Python library for Dropbox's HTTP-based Core and Datastore APIs.
--------------------------------------------------------------------------------
Update Information:
11.22.0
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Gwyn Ciesla <gwync(a)protonmail.com> - 11.22.0-1
- 11.22.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2016543 - python-dropbox-11.22.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2016543
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-ce13e89e76' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
[SECURITY] Fedora 35 Update: java-latest-openjdk-17.0.1.0.12-1.rolling.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-f361564c6d
2021-10-31 01:07:25.016877
--------------------------------------------------------------------------------
Name : java-latest-openjdk
Product : Fedora 35
Version : 17.0.1.0.12
Release : 1.rolling.fc35
URL : http://openjdk.java.net/
Summary : OpenJDK 17 Runtime Environment
Description :
The OpenJDK 17 runtime environment.
--------------------------------------------------------------------------------
Update Information:
New in release OpenJDK 17.0.1 (2021-10-19):
---------------------------------------------------------------- Live versions
of these release notes can be found at: -
https://builds.shipilev.net/backports-monitor/release-notes-17.0.1.txt Security
fixes -------------------------- - JDK-8263314: Enhance XML Dsig modes -
JDK-8265167, CVE-2021-35556: Richer Text Editors - JDK-8265574: Improve
handling of sheets - JDK-8265580, CVE-2021-35559: Enhanced style for RTF kit
- JDK-8265776: Improve Stream handling for SSL - JDK-8266097, CVE-2021-35561:
Better hashing support - JDK-8266103: Better specified spec values -
JDK-8266109: More Resilient Classloading - JDK-8266115: More Manifest Jar
Loading - JDK-8266137, CVE-2021-35564: Improve Keystore integrity -
JDK-8266689, CVE-2021-35567: More Constrained Delegation - JDK-8267086:
ArrayIndexOutOfBoundsException in java.security.KeyFactory.generatePublic -
JDK-8267712: Better LDAP reference processing - JDK-8267729, CVE-2021-35578:
Improve TLS client handshaking - JDK-8267735, CVE-2021-35586: Better BMP
support - JDK-8268193: Improve requests of certificates - JDK-8268199:
Correct certificate requests - JDK-8268205: Enhance DTLS client handshake -
JDK-8268500: Better specified ParameterSpecs - JDK-8268506: More Manifest
Digests - JDK-8269618, CVE-2021-35603: Better session identification -
JDK-8269624: Enhance method selection support - JDK-8270398: Enhance
canonicalization - JDK-8270404: Better canonicalization Other changes
---------------------------- - JDK-8225082: Remove IdenTrust certificate that
is expiring in September 2021 - JDK-8243543: jtreg test
security/infra/java/security/cert/CertPathValidator/certification/BuypassCA.java
fails - JDK-8248899: security/infra/java/security/cert/CertPathValidator/certi
fication/QuoVadisCA.java fails, Certificate has been revoked - JDK-8261088:
Repeatable annotations without @Target cannot have containers that target module
declarations - JDK-8262731: [macOS] Exception from "Printable.print" is
swallowed during "PrinterJob.print" - JDK-8263531: Remove unused buffer int
- JDK-8266182: Automate manual steps listed in the test
jdk/sun/security/pkcs12/ParamsTest.java - JDK-8267625: AARCH64: typo in
LIR_Assembler::emit_profile_type - JDK-8267666: Add option to jcmd
GC.heap_dump to use existing file - JDK-8268019: C2: assert(no_dead_loop)
failed: dead loop detected - JDK-8268261: C2: assert(n != __null) failed: Bad
immediate dominator info. - JDK-8268427: Improve
AlgorithmConstraints:checkAlgorithm performance - JDK-8268963: [IR Framework]
Some default regexes matching on PrintOptoAssembly in IRNode.java do not work on
all platforms - JDK-8269297: Bump version numbers for JDK 17.0.1 -
JDK-8269478: Shenandoah: gc/shenandoah/mxbeans tests should be more resilient
- JDK-8269574: C2: Avoid redundant uncommon traps in GraphKit::builtin_throw()
for JVMTI exception events - JDK-8269763: The JEditorPane is blank after
JDK-8265167 - JDK-8269851: OperatingSystemMXBean getProcessCpuLoad reports
incorrect process cpu usage in containers - JDK-8269882: stack-use-after-scope
in NewObjectA - JDK-8269897: Shenandoah: Resolve UNKNOWN access strength,
where possible - JDK-8269934: RunThese24H.java failed with
EXCEPTION_ACCESS_VIOLATION in java_lang_Thread::get_thread_status -
JDK-8269993: [Test]: java/net/httpclient/DigestEchoClientSSL.java contains
redundant @run tags - JDK-8270094: Shenandoah: Provide human-readable labels
for test configurations - JDK-8270096: Shenandoah: Optimize
gc/shenandoah/TestRefprocSanity.java for interpreter mode - JDK-8270098: ZGC:
ZBarrierSetC2::clone_at_expansion fails with "Guard against surprises" assert
- JDK-8270137: Kerberos Credential Retrieval from Cache not Working in Cross-
Realm Setup - JDK-8270280: security/infra/java/security/cert/CertPathValidator
/certification/LetsEncryptCA.java OCSP response error - JDK-8270344: Session
resumption errors - JDK-8271203: C2: assert(iff->Opcode() == Op_If ||
iff->Opcode() == Op_CountedLoopEnd || iff->Opcode() == Op_RangeCheck) failed:
Check this code when new subtype is added - JDK-8271276: C2: Wrong JVM state
used for receiver null check - JDK-8271335: Updating RE Configs for BUILD
REQUEST 17.0.1+4 - JDK-8271589: fatal error with variable shift count integer
rotate operation. - JDK-8271723: Unproblemlist
runtime/InvocationTests/invokevirtualTests.java - JDK-8271730: Client
authentication using RSASSA-PSS fails after correct certificate requests -
JDK-8271925: ZGC: Arraycopy stub passes invalid oop to load barrier -
JDK-8272124: Cgroup v1 initialization causes NullPointerException when cgroup
path contains colon - JDK-8272131: PhaseMacroExpand::generate_slow_arraycopy
crash when clone null CallProjections.fallthrough_ioproj - JDK-8272326:
java/util/Random/RandomTestMoments.java had two Gaussian fails - JDK-8272332:
--with-harfbuzz=system doesn't add -lharfbuzz after JDK-8255790 - JDK-8272472:
StackGuardPages test doesn't build with glibc 2.34 - JDK-8272581:
sun/security/pkcs11/Provider/MultipleLogins.sh fails after JDK-8266182 -
JDK-8272602: [macos] not all KEY_PRESSED events sent when control modifier is
used - JDK-8272700: [macos] Build failure with Xcode 13.0 after JDK-8264848
- JDK-8272708: [Test]: Cleanup: test/jdk/security/infra/java/security/cert/CertP
athValidator/certification/BuypassCA.java no longer needs ocspEnabled -
JDK-8272806: [macOS] "Apple AWT Internal Exception" when input method is changed
- JDK-8273358: macOS Monterey does not have the font Times needed by Serif
Notes on individual issues: -------------------------------------------
security-libs/java.security: JDK-8271434: Removed IdenTrust Root Certificate
The following root certificate from IdenTrust has been removed from the
`cacerts` keystore: Alias Name: identrustdstx3 [jdk] Distinguished Name: CN=DST
Root CA X3, O=Digital Signature Trust Co.
--------------------------------------------------------------------------------
ChangeLog:
* Wed Oct 20 2021 Petra Alice Mikova <pmikova(a)redhat.com> - 1:17.0.1.0.12-1.rolling
- October CPU update to jdk 17.0.1+12
- dropped commented-out source line
* Mon Oct 11 2021 Andrew Hughes <gnu.andrew(a)redhat.com> - 1:17.0.0.0.35-3.rolling
- Update release notes to document the major changes between OpenJDK 11 & 17.
* Sun Oct 10 2021 Andrew Hughes <gnu.andrew(a)redhat.com> - 1:17.0.0.0.35-2.rolling
- Fix unused function compiler warning found in systemconf.c
- Extend the default security policy to accomodate PKCS11 accessing jdk.internal.access.
- Allow plain key import to be disabled with -Dcom.redhat.fips.plainKeySupport=false
* Sun Oct 10 2021 Martin Balao <mbalao(a)redhat.com> - 1:17.0.0.0.35-2.rolling
- Add patch to disable non-FIPS crypto in the SUN and SunEC security providers.
- Add patch to login to the NSS software token when in FIPS mode.
- Add patch to allow plain key import.
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-f361564c6d' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: fawkes-1.3.1-0.16.f9f66dd.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-b1363215f2
2021-10-31 01:07:25.016859
--------------------------------------------------------------------------------
Name : fawkes
Product : Fedora 35
Version : 1.3.1
Release : 0.16.f9f66dd.fc35
URL : https://www.fawkesrobotics.org
Summary : Robot Software Framework
Description :
Fawkes is a component-based software framework for robotic real-time
applications for various platforms and domains.
It was developed for cognitive robotics real-time applications like soccer
and service robotics and supports fast information exchange and efficient
combination and coordination of different components to suit the needs of
mobile robots operating in uncertain environments.
Install this meta package to get a useful Fawkes base system.
--------------------------------------------------------------------------------
Update Information:
* Update to latest upstream release * Disable unsupported sub-packages
--------------------------------------------------------------------------------
ChangeLog:
* Tue Sep 14 2021 Till Hofmann <thofmann(a)fedoraproject.org> - 1.3.1-0.16.f9f66dd
- Update to latest upstream commit
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-b1363215f2' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: NsCDE-1.3-1.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-bf3e6af9fe
2021-10-31 01:07:25.016840
--------------------------------------------------------------------------------
Name : NsCDE
Product : Fedora 35
Version : 1.3
Release : 1.fc35
URL : https://github.com/NsCDE/NsCDE
Summary : Modern and functional CDE desktop based on FVWM
Description :
NsCDE is a retro but powerful UNIX desktop environment which resembles CDE look
(and partially feel) but with a more powerful and flexible framework
beneath-the-surface, more suited for 21st century UNIX-like and Linux systems
and user requirements than original CDE.
--------------------------------------------------------------------------------
Update Information:
Update to 1.3; Fixes: RHBZ#2012395
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Davide Cavalca <dcavalca(a)fedoraproject.org> 1.3-1
- Update to 1.3; Fixes: RHBZ#2012395
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2012395 - NsCDE-1.3 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2012395
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-bf3e6af9fe' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: rbanffy-3270-fonts-2.3.1-1.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-ef4ddd2173
2021-10-31 01:07:25.016822
--------------------------------------------------------------------------------
Name : rbanffy-3270-fonts
Product : Fedora 35
Version : 2.3.1
Release : 1.fc35
URL : https://github.com/rbanffy/3270font
Summary : Monospaced font based on IBM 3270 terminals
Description :
This font is derived from the x3270 font, which, in turn, was translated from
the one in Georgia Tech's 3270tool, which was itself hand-copied from a 3270
terminal.
--------------------------------------------------------------------------------
Update Information:
Update to 2.3.1; Fixes: RHBZ#2012347
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Davide Cavalca <dcavalca(a)fedoraproject.org> 2.3.1-1
- Update to 2.3.1; Fixes: RHBZ#2012347
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2012347 - rbanffy-3270-fonts-2.3.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2012347
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-ef4ddd2173' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month
Fedora 35 Update: rust-elfcat-0.1.8-1.fc35
by updates@fedoraproject.org
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2021-b62c89087b
2021-10-31 01:07:25.016805
--------------------------------------------------------------------------------
Name : rust-elfcat
Product : Fedora 35
Version : 0.1.8
Release : 1.fc35
URL : https://crates.io/crates/elfcat
Summary : ELF visualizer
Description :
ELF visualizer. Generates HTML files from ELF binaries.
--------------------------------------------------------------------------------
Update Information:
Update to 0.1.8; Fixes: RHBZ#1991774
--------------------------------------------------------------------------------
ChangeLog:
* Fri Oct 22 2021 Davide Cavalca <dcavalca(a)fedoraproject.org> 0.1.8-1
- Update to 0.1.8; Fixes: RHBZ#1991774
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1991774 - rust-elfcat-0.1.8 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1991774
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2021-b62c89087b' at the command
line. For more information, refer to the dnf documentation available at
http://dnf.readthedocs.io/en/latest/command_ref.html#upgrade-command-label
All packages are signed with the Fedora Project GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
2 years, 1 month