The following Fedora EPEL 7 Security updates need testing:
Age URL
206 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-f9d6ff695a bibutils-6.6-1.el7 ghc-hs-bibutils-6.6.0.0-1.el7 pandoc-citeproc-0.3.0.1-4.el7
190 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-3c9292b62d condor-8.6.11-1.el7
64 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b6fa6cebc3 game-music-emu-0.6.2-1.el7
61 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b43fdd19c3 vcftools-0.1.16-1.el7
34 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-17b3c81533 cacti-1.2.0-1.el7 cacti-spine-1.2.0-2.el7
19 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-bd6a1ae962 pdns-recursor-4.1.9-1.el7
10 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-5f60a8861f kf5-kauth-5.52.0-2.el7
The following builds have been pushed to Fedora EPEL 7 updates-testing
distribution-gpg-keys-1.29-1.el7
mock-1.4.14-1.el7
mock-core-configs-30.1-1.el7
mozilla-noscript-10.2.1-2.el7
openvpn-2.4.7-1.el7
python-django-1.11.20-1.el7
python-kubernetes-8.0.1-1.el7
python-openshift-0.8.6-1.el7
qtools-0.4.0-1.el7
spirv-headers-1.2-0.11.20190125.git8bea0a2.el7
spirv-tools-2019.1-1.el7
twa-1.8.0-2.el7
vkd3d-1.1-2.el7
wine-4.0-1.el7
Details about builds:
================================================================================
distribution-gpg-keys-1.29-1.el7 (FEDORA-EPEL-2019-e20c96981c)
GPG keys of various Linux distributions
--------------------------------------------------------------------------------
Update Information:
Release together with `mock-core-configs-30.1` which has these changes: - Added
repositories for Fedora 30 (and Fedora 31 repos now points to rawhide). -
distribution-gpg-keys for rhel8beta is being installed directly from Koji,
because EPEL8 does not exist yet. - Fedora 27 config has been moved to `eol`
directory. - `gpgcheck` is enabled for testing and debuginfo now. - Fedoras
29+ have included modular repos now. Additionally, there is now
`module_platform_id` defined in these configs, which allows you to install
modules without errors. ## Mock new features: - All mock configs are parsed
and evaluated by [Jinja2](http://jinja.pocoo.org/). Here is small example how it
can be used: ``` # define your own config variable config_opts['fedora_number']
= '30' config_opts['root'] = 'fedora-{{ fedora_number }}-x86_64'
config_opts['dist'] = 'fc{{ fedora_number }}' ``` Another - more general -
example from `site-defaults.cfg`: ``` # You can use jinja templates, e.g.: #
config_opts['foobar'] = '{{ foo }} bar' # which will result in 'bar bar' (using
value defined few lines above) # more complicated example: # config_opts['foo']
= "{{ plugin_conf['package_state_enable'] }}" # which will result in "True" ```
This feature can simplify mock's configs in the future. I intentionally did not
use it now, because it is too fresh. Please experiment with this feature on your
own and report any error or issues. If there would be none, then I will start
using it in main configs. - Use 32-bit personality for armv7*/armv8* builds. -
You can now specify decompress program for root_cache. This is new default in
`site-defaults.cfg` [GH#230](https://github.com/rpm-software-
management/mock/issues/230): ``` ## decompress_program is needed only for
bsdtar, otherwise `compress_program` with `-d` is used ## for bsdtar use
"unpigz" or "gunzip" #
config_opts['plugin_conf']['root_cache_opts']['decompress_program'] = "pigz" ```
## Bugfixes: - Added Scientific Linux on the list of RHEL clones
[GH#228](https://github.com/rpm-software-management/mock/issues/228) - Fixed
exclude pattern for BSDTar [GH#219](https://github.com/rpm-software-
management/mock/issues/219) - There used to be living part of `site-
defaults.cfg`: ``` config_opts['bootstrap_chroot_additional_packages'] = []
config_opts['bootstrap_module_enable'] = []
config_opts['bootstrap_module_install'] = [] ``` This is now commented out by
default, and the defaults are set in mock code. You can still override it in
`site-defaults.cfg`.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.29-1
- update Copr keys
- add F31 key and point rawhide to F31
- add Fedora iot keys
--------------------------------------------------------------------------------
================================================================================
mock-1.4.14-1.el7 (FEDORA-EPEL-2019-e20c96981c)
Builds packages inside chroots
--------------------------------------------------------------------------------
Update Information:
Release together with `mock-core-configs-30.1` which has these changes: - Added
repositories for Fedora 30 (and Fedora 31 repos now points to rawhide). -
distribution-gpg-keys for rhel8beta is being installed directly from Koji,
because EPEL8 does not exist yet. - Fedora 27 config has been moved to `eol`
directory. - `gpgcheck` is enabled for testing and debuginfo now. - Fedoras
29+ have included modular repos now. Additionally, there is now
`module_platform_id` defined in these configs, which allows you to install
modules without errors. ## Mock new features: - All mock configs are parsed
and evaluated by [Jinja2](http://jinja.pocoo.org/). Here is small example how it
can be used: ``` # define your own config variable config_opts['fedora_number']
= '30' config_opts['root'] = 'fedora-{{ fedora_number }}-x86_64'
config_opts['dist'] = 'fc{{ fedora_number }}' ``` Another - more general -
example from `site-defaults.cfg`: ``` # You can use jinja templates, e.g.: #
config_opts['foobar'] = '{{ foo }} bar' # which will result in 'bar bar' (using
value defined few lines above) # more complicated example: # config_opts['foo']
= "{{ plugin_conf['package_state_enable'] }}" # which will result in "True" ```
This feature can simplify mock's configs in the future. I intentionally did not
use it now, because it is too fresh. Please experiment with this feature on your
own and report any error or issues. If there would be none, then I will start
using it in main configs. - Use 32-bit personality for armv7*/armv8* builds. -
You can now specify decompress program for root_cache. This is new default in
`site-defaults.cfg` [GH#230](https://github.com/rpm-software-
management/mock/issues/230): ``` ## decompress_program is needed only for
bsdtar, otherwise `compress_program` with `-d` is used ## for bsdtar use
"unpigz" or "gunzip" #
config_opts['plugin_conf']['root_cache_opts']['decompress_program'] = "pigz" ```
## Bugfixes: - Added Scientific Linux on the list of RHEL clones
[GH#228](https://github.com/rpm-software-management/mock/issues/228) - Fixed
exclude pattern for BSDTar [GH#219](https://github.com/rpm-software-
management/mock/issues/219) - There used to be living part of `site-
defaults.cfg`: ``` config_opts['bootstrap_chroot_additional_packages'] = []
config_opts['bootstrap_module_enable'] = []
config_opts['bootstrap_module_install'] = [] ``` This is now commented out by
default, and the defaults are set in mock code. You can still override it in
`site-defaults.cfg`.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.4.14-1
- config['decompress_program'] default (praiskup(a)redhat.com)
- add example for jinja templates
- implement templated configs using jinja2
- move live defaults from site-defaults.cfg to utils.py
- introduce "decompress_program" option for root_cache for bsdtar
- fix exclude patter for bsdtar
- delete old changelog entries
- use f29 for tests
- update the default in sitec-defaults.cfg
- Recommend dnf-utils (fzatlouk(a)redhat.com)
- ignore useless-object-inheritance pylint warning
- add scientific linux on list of rhel clones [GH#228]
- Use 32-bit personality for armv7*/armv8* builds (bero(a)lindev.ch)
- create custom error message for dnf-utils not being installed
(pjunak)
--------------------------------------------------------------------------------
================================================================================
mock-core-configs-30.1-1.el7 (FEDORA-EPEL-2019-e20c96981c)
Mock core config files basic chroots
--------------------------------------------------------------------------------
Update Information:
Release together with `mock-core-configs-30.1` which has these changes: - Added
repositories for Fedora 30 (and Fedora 31 repos now points to rawhide). -
distribution-gpg-keys for rhel8beta is being installed directly from Koji,
because EPEL8 does not exist yet. - Fedora 27 config has been moved to `eol`
directory. - `gpgcheck` is enabled for testing and debuginfo now. - Fedoras
29+ have included modular repos now. Additionally, there is now
`module_platform_id` defined in these configs, which allows you to install
modules without errors. ## Mock new features: - All mock configs are parsed
and evaluated by [Jinja2](http://jinja.pocoo.org/). Here is small example how it
can be used: ``` # define your own config variable config_opts['fedora_number']
= '30' config_opts['root'] = 'fedora-{{ fedora_number }}-x86_64'
config_opts['dist'] = 'fc{{ fedora_number }}' ``` Another - more general -
example from `site-defaults.cfg`: ``` # You can use jinja templates, e.g.: #
config_opts['foobar'] = '{{ foo }} bar' # which will result in 'bar bar' (using
value defined few lines above) # more complicated example: # config_opts['foo']
= "{{ plugin_conf['package_state_enable'] }}" # which will result in "True" ```
This feature can simplify mock's configs in the future. I intentionally did not
use it now, because it is too fresh. Please experiment with this feature on your
own and report any error or issues. If there would be none, then I will start
using it in main configs. - Use 32-bit personality for armv7*/armv8* builds. -
You can now specify decompress program for root_cache. This is new default in
`site-defaults.cfg` [GH#230](https://github.com/rpm-software-
management/mock/issues/230): ``` ## decompress_program is needed only for
bsdtar, otherwise `compress_program` with `-d` is used ## for bsdtar use
"unpigz" or "gunzip" #
config_opts['plugin_conf']['root_cache_opts']['decompress_program'] = "pigz" ```
## Bugfixes: - Added Scientific Linux on the list of RHEL clones
[GH#228](https://github.com/rpm-software-management/mock/issues/228) - Fixed
exclude pattern for BSDTar [GH#219](https://github.com/rpm-software-
management/mock/issues/219) - There used to be living part of `site-
defaults.cfg`: ``` config_opts['bootstrap_chroot_additional_packages'] = []
config_opts['bootstrap_module_enable'] = []
config_opts['bootstrap_module_install'] = [] ``` This is now commented out by
default, and the defaults are set in mock code. You can still override it in
`site-defaults.cfg`.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Miroslav Such�� <msuchy(a)redhat.com> 30.1-1
- default for config['decompress_program'] (praiskup(a)redhat.com)
- require recent distribution-gpg-keys which has F31 key
- add examples how to enable/install module in F29+ configs
- add module_platform_id
- add modular repos
- enable gpgcheck for debuginfo for rawhide
- enable gpgcheck for testing and debuginfo for F30
- EOL Fedora 27 configs
- remove mdpolicy from F30
- add Fedora 30 configs
- add link to distribution-gpg-keys for rhel8 bootstrap
--------------------------------------------------------------------------------
================================================================================
mozilla-noscript-10.2.1-2.el7 (FEDORA-EPEL-2019-a7b8a87641)
JavaScript white list extension for Mozilla Firefox
--------------------------------------------------------------------------------
Update Information:
v 10.2.1 ============================================================= * Cascade
top document's restrictions to subframes (Tor issue #28873) * Fixed restored
media element from placeholder not loading previously blocked content
automatically * Fixed placeholders missing for some blocked embeddings (Tor
ticket #28720) v 10.2
============================================================ * [L10n] Updated
fr, he * Allow origin-less fetch for extensions (issue #41) * Fixed meta refresh
inside NOSCRIPT emulation breaking Firefox's built-in refresh blocking * Fixed
issue #35 "tabId is not defined" on startup * Darker red badge background to
ensure text is kept white across browsers
--------------------------------------------------------------------------------
ChangeLog:
* Wed Feb 20 2019 Dominik Mierzejewski <rpm(a)greysector.net> - 10.2.1-2
- update to 10.2.1
--------------------------------------------------------------------------------
================================================================================
openvpn-2.4.7-1.el7 (FEDORA-EPEL-2019-02ab99370d)
A full-featured SSL VPN solution
--------------------------------------------------------------------------------
Update Information:
Updating to upstream OpenVPN 2.4.7
--------------------------------------------------------------------------------
ChangeLog:
* Wed Feb 20 2019 David Sommerseth <dazo(a)eurephia.org> - 2.4.7-1
- Updating to upstream OpenVPN 2.4.7
--------------------------------------------------------------------------------
================================================================================
python-django-1.11.20-1.el7 (FEDORA-EPEL-2019-0911253d1e)
A high-level Python Web framework
--------------------------------------------------------------------------------
Update Information:
Fix for CVE-2019-6975 (rhbz#1678265)
--------------------------------------------------------------------------------
ChangeLog:
* Wed Feb 20 2019 Matthias Runge <mrunge(a)redhat.com> - 1.11.20-1
- Fix for CVE-2019-6975 (rhbz#1678265)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1673642 - CVE-2019-6975 python-django: memory exhaustion in django.utils.numberformat.format()
https://bugzilla.redhat.com/show_bug.cgi?id=1673642
--------------------------------------------------------------------------------
================================================================================
python-kubernetes-8.0.1-1.el7 (FEDORA-EPEL-2019-a30786584c)
Python client for the kubernetes API.
--------------------------------------------------------------------------------
Update Information:
Update to upstream 8.0.1
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 18 2019 Jason Montleon <jmontleo(a)redhat.com> 8.0.1-1
- Update to upstream 8.0.1
--------------------------------------------------------------------------------
================================================================================
python-openshift-0.8.6-1.el7 (FEDORA-EPEL-2019-24c28c03d1)
Python client for the OpenShift API
--------------------------------------------------------------------------------
Update Information:
Update to upstream 0.8.6
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 18 2019 Jason Montleon <jmontleo(a)redhat.com> 0.8.6-1
- Update to upstream 0.8.6
--------------------------------------------------------------------------------
================================================================================
qtools-0.4.0-1.el7 (FEDORA-EPEL-2019-df3c5bba5a)
Command-line tools for AMQP
--------------------------------------------------------------------------------
Update Information:
Rebased to 0.4.0.
--------------------------------------------------------------------------------
ChangeLog:
* Wed Feb 20 2019 Irina Boverman <iboverma(a)redhat.com> - 0.4.0-1
- Rebased to 0.4.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1606054 - qtools: FTBFS in Fedora rawhide
https://bugzilla.redhat.com/show_bug.cgi?id=1606054
[ 2 ] Bug #1675861 - qtools: FTBFS in Fedora rawhide/f30
https://bugzilla.redhat.com/show_bug.cgi?id=1675861
--------------------------------------------------------------------------------
================================================================================
spirv-headers-1.2-0.11.20190125.git8bea0a2.el7 (FEDORA-EPEL-2019-48b4e8d3d2)
Header files from the SPIR-V registry
--------------------------------------------------------------------------------
Update Information:
https://www.winehq.org/announce/4.0
--------------------------------------------------------------------------------
================================================================================
spirv-tools-2019.1-1.el7 (FEDORA-EPEL-2019-48b4e8d3d2)
API and commands for processing SPIR-V modules
--------------------------------------------------------------------------------
Update Information:
https://www.winehq.org/announce/4.0
--------------------------------------------------------------------------------
================================================================================
twa-1.8.0-2.el7 (FEDORA-EPEL-2019-96b8154221)
Tiny web auditor with strong opinions
--------------------------------------------------------------------------------
Update Information:
Add missing dependency on /usr/bin/dig ---- Update to latest upstream release
--------------------------------------------------------------------------------
ChangeLog:
* Wed Feb 20 2019 Artur Iwicki <fedora(a)svgames.pl> - 1.8.0-2
- Add missing dependency on /usr/bin/dig
* Sun Feb 17 2019 Artur Iwicki <fedora(a)svgames.pl> - 1.8.0-1
- Update to latest upstream release
--------------------------------------------------------------------------------
================================================================================
vkd3d-1.1-2.el7 (FEDORA-EPEL-2019-48b4e8d3d2)
D3D12 to Vulkan translation library
--------------------------------------------------------------------------------
Update Information:
https://www.winehq.org/announce/4.0
--------------------------------------------------------------------------------
================================================================================
wine-4.0-1.el7 (FEDORA-EPEL-2019-48b4e8d3d2)
A compatibility layer for windows applications
--------------------------------------------------------------------------------
Update Information:
https://www.winehq.org/announce/4.0
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Michael Cronenworth <mike(a)cchtml.com> 4.0-1
- version update
* Thu Sep 13 2018 Michael Cronenworth <mike(a)cchtml.com> 3.0.3-1
- version update
- drop aarch64 for epel
--------------------------------------------------------------------------------
The following Fedora EPEL 6 Security updates need testing:
Age URL
67 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b7556983e8 tomcat-7.0.92-1.el6
63 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-a0ddb153b8 game-music-emu-0.6.2-1.el6
The following builds have been pushed to Fedora EPEL 6 updates-testing
gsoap-2.7.16-8.el6
libstoragemgmt-1.7.3-1.el6
Details about builds:
================================================================================
gsoap-2.7.16-8.el6 (FEDORA-EPEL-2019-8a28422671)
Generator Tools for Coding SOAP/XML Web Services in C and C++
--------------------------------------------------------------------------------
Update Information:
Improved patch for CVE-2019-7659.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 2.7.16-8
- Use ssize_t instead of int in patch for CVE-2019-7659
--------------------------------------------------------------------------------
================================================================================
libstoragemgmt-1.7.3-1.el6 (FEDORA-EPEL-2019-f7d2377e1a)
Storage array management library
--------------------------------------------------------------------------------
Update Information:
Man page and command line bug fixes.
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 18 2019 Tony Asleson <tasleson(a)redhat.com> 1.7.3-1
- Add nfs-utils as a dependency
- New upstream release 1.7.3
--------------------------------------------------------------------------------
The following Fedora EPEL 7 Security updates need testing:
Age URL
206 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-f9d6ff695a bibutils-6.6-1.el7 ghc-hs-bibutils-6.6.0.0-1.el7 pandoc-citeproc-0.3.0.1-4.el7
189 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-3c9292b62d condor-8.6.11-1.el7
63 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b6fa6cebc3 game-music-emu-0.6.2-1.el7
60 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b43fdd19c3 vcftools-0.1.16-1.el7
33 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-17b3c81533 cacti-1.2.0-1.el7 cacti-spine-1.2.0-2.el7
19 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-bd6a1ae962 pdns-recursor-4.1.9-1.el7
9 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-5f60a8861f kf5-kauth-5.52.0-2.el7
The following builds have been pushed to Fedora EPEL 7 updates-testing
Zim-0.69.1-1.el7
boinc-client-7.14.2-11.el7
gsoap-2.8.16-12.el7
js-jsroot-5.6.3-1.el7
nnn-2.3-1.el7
radare2-3.3.0-2.el7.1
rmlint-2.8.0-1.el7
root-6.16.00-3.el7
snapd-2.37.3-1.el7
stlink-1.5.1-0.2.20190216git1165cf7.el7
vertica-python-0.8.2-1.el7
Details about builds:
================================================================================
Zim-0.69.1-1.el7 (FEDORA-EPEL-2019-d28f9847d1)
Desktop wiki & notekeeper
--------------------------------------------------------------------------------
Update Information:
Upstream critical fix for updating links on move page or rename page.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Robin Lee <cheeselee(a)fedoraproject.org> - 0.69.1-1
- Update to 0.69.1
--------------------------------------------------------------------------------
================================================================================
boinc-client-7.14.2-11.el7 (FEDORA-EPEL-2019-e52ba6742a)
The BOINC client
--------------------------------------------------------------------------------
Update Information:
Added window_close.patch ---- Added patch to enable CPU scheduling policy =
idle
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-11
- Added window_close.patch
* Thu Jan 31 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 7.14.2-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jan 11 2019 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-9
- removed systemd_nice_removal.patch because scheduling policies and nice level in systemd unit file only affects boinc process, that should have nice=10 and a slightly more higher priority than working units. Since controller processes do not run often, the system should not be affected by them
* Thu Jan 10 2019 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-8
- added systemd_nice_removal.patch
* Tue Jan 8 2019 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-7
- removed added systemd_scheduler.patch since scheduler.patch is already enough to achieve boinc running in idle
- disabled systemd_hardening.patch because its tests are still in early stage on upstream development process
* Fri Dec 14 2018 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-6
- added systemd_hardening.patch
* Fri Dec 14 2018 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-5
- added systemd_scheduler.patch
* Wed Dec 12 2018 Germano Massullo <germano.massullo(a)cern.ch> - 7.14.2-4
- added scheduler.patch
--------------------------------------------------------------------------------
================================================================================
gsoap-2.8.16-12.el7 (FEDORA-EPEL-2019-17d86bfcbc)
Generator Tools for Coding SOAP/XML Web Services in C and C++
--------------------------------------------------------------------------------
Update Information:
Improved patch for CVE-2019-7659.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 2.8.16-12
- Use ssize_t instead of int in patch for CVE-2019-7659
--------------------------------------------------------------------------------
================================================================================
js-jsroot-5.6.3-1.el7 (FEDORA-EPEL-2019-a1dfc40144)
JavaScript ROOT - Interactive numerical data analysis graphics
--------------------------------------------------------------------------------
Update Information:
ROOT 6.16.00 https://root.cern/content/release-61600
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 1 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 5.6.3-1
- Update to version 5.6.3
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 5.6.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
nnn-2.3-1.el7 (FEDORA-EPEL-2019-47e5d5b195)
The missing terminal file browser for X
--------------------------------------------------------------------------------
Update Information:
Release 2.3 ---- Release 2.2
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Robert-Andr�� Mauchin <zebob.m(a)gmail.com> - 2.3-1
- Release 2.3
* Wed Jan 2 2019 Robert-Andr�� Mauchin <zebob.m(a)gmail.com> - 2.2-1
- Release 2.2
--------------------------------------------------------------------------------
================================================================================
radare2-3.3.0-2.el7.1 (FEDORA-EPEL-2019-dd2732e7f9)
The reverse engineering framework
--------------------------------------------------------------------------------
Update Information:
rebase to upstream version 3.3.0
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Riccardo Schirone <rschirone91(a)gmail.com> - 3.3.0-2
- rebase to upstream version 3.3.0
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.2.0-2.1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Jan 10 2019 Riccardo Schirone <rschirone91(a)gmail.com> 3.2.0-2
- fix version reported by radare2 -V
--------------------------------------------------------------------------------
================================================================================
rmlint-2.8.0-1.el7 (FEDORA-EPEL-2019-e1e52156b7)
Finds space waste and other broken things on your filesystem
--------------------------------------------------------------------------------
Update Information:
Update version to 2.8.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1655338 - Review Request: rmlint - Finds space waste and other broken things on your filesystem
https://bugzilla.redhat.com/show_bug.cgi?id=1655338
--------------------------------------------------------------------------------
================================================================================
root-6.16.00-3.el7 (FEDORA-EPEL-2019-a1dfc40144)
Numerical data analysis framework
--------------------------------------------------------------------------------
Update Information:
ROOT 6.16.00 https://root.cern/content/release-61600
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 18 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 6.16.00-3
- Fix typo in patch (missing space)
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain(a)fedoraproject.org> - 6.16.00-2
- Rebuild for readline 8.0
* Mon Feb 11 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 6.16.00-1
- Update to 6.16.00
- Drop patches accepted upstream:
- root-adjust-allowed-test-difference-for-32-bit-ix86.patch
- root-crypto.patch
- root-js-syntax.patch
- root-missing-header.patch
- root-set-cache-file-dir.patch
- root-stressgraphics-ref.patch
- root-test-compilation-epel7.patch
- root-test-subdirs.patch
- root-unique-filenames.patch
- Dropped subpackages:
- root-rootd (obsolete - use xrootd)
- root-proofd (obsolete - use root-xproofd)
- root-proof-pq2
- New ROOT 7 subpackage:
- root-graf3d-eve7
- root-gui-webgui6
- Make tutorial/v7/line.cxx run in batch mode
* Mon Feb 4 2019 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 6.14.08-4
- Remove obsolete /sbin/ldconfig scriptlets
- The root-core package installs a file in /etc/ld.so.conf.d, so it should
always call /sbin/ldconfig and not use the macros
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org>
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Mon Jan 14 2019 Bj��rn Esser <besser82(a)fedoraproject.org> - 6.14.08-2
- Rebuilt for libcrypt.so.2 (#1666033)
--------------------------------------------------------------------------------
================================================================================
snapd-2.37.3-1.el7 (FEDORA-EPEL-2019-db69fd722a)
A transactional software package manager
--------------------------------------------------------------------------------
Update Information:
Release 2.37.3 to Fedora (RH#1678603)
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Zygmunt Bazyli Krynicki <me(a)zygoon.pl> - 2.37.3-1
- Release 2.37.3 to Fedora (RH#1678603)
* Mon Feb 18 2019 Michael Vogt <mvo(a)ubuntu.com>
- New upstream release 2.37.3
- interfaces/seccomp: generate global seccomp profile
- overlord/snapstate: add some randomness to the catalog refresh
- tests: add upgrade test from 2.15.2ubuntu1 -> current snapd
- snap-confine: fix fallback to ubuntu-core
- packaging: avoid race in snapd.postinst
- overlord/snapstate: discard mount namespace when undoing 1st link
snap
- cmd/snap-confine: allow writes to /var/lib/** again
- tests: stop catalog-update/apt-hooks test until the catlog refresh
is randomized
- debian: ensure leftover usr.lib.snapd.snap-confine is gone
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1678603 - snapd-2.37.3 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1678603
--------------------------------------------------------------------------------
================================================================================
stlink-1.5.1-0.2.20190216git1165cf7.el7 (FEDORA-EPEL-2019-b9ce099579)
STM32 discovery line Linux programmer
--------------------------------------------------------------------------------
Update Information:
Update to latest git.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 1.5.1-0.2.20190216git1165cf7
- Update to latest git
* Sun Feb 3 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.5.1-0.2.20190103git7651d21
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
vertica-python-0.8.2-1.el7 (FEDORA-EPEL-2019-214c139f61)
A native Python adapter for the Vertica database
--------------------------------------------------------------------------------
Update Information:
Upgrade to 0.8.2
--------------------------------------------------------------------------------
ChangeLog:
* Tue Feb 19 2019 Jakub Jedelsky <jakub.jedelsky(a)gmail.com> - 0.8.2-1
- Upgrade to version 0.8.2
* Mon Sep 3 2018 Jakub Jedelsky <jakub.jedelsky(a)gmail.com> - 0.7.4-1
- Upgrade to version 0.7.4
- Build python 3 subpackage even on RHEL >= 7
* Sat Jul 14 2018 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.7.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hron��ok <mhroncok(a)redhat.com> - 0.7.3-2
- Rebuilt for Python 3.7
* Tue Mar 27 2018 Jan Beran <jberan(a)redhat.com> - 0.7.3-1
- Update to version 0.7.3 including Python 3 subpackage
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb(a)redhat.com> - 0.6.14-5
- Update Python 2 dependency declarations to new packaging standards
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Fri Feb 9 2018 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.14-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Sun Dec 17 2017 Zbigniew J��drzejewski-Szmek <zbyszek(a)in.waw.pl> - 0.6.14-3
- Python 2 binary package renamed to python2-vertica
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
* Thu Jul 27 2017 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.14-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
--------------------------------------------------------------------------------
The following Fedora EPEL 6 Security updates need testing:
Age URL
66 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b7556983e8 tomcat-7.0.92-1.el6
62 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-a0ddb153b8 game-music-emu-0.6.2-1.el6
14 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-809dcc772f golang-1.11.5-1.el6
The following builds have been pushed to Fedora EPEL 6 updates-testing
holland-1.1.12-1.el6
Details about builds:
================================================================================
holland-1.1.12-1.el6 (FEDORA-EPEL-2019-54d65058fc)
Pluggable Backup Framework
--------------------------------------------------------------------------------
Update Information:
- Latest upstream
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 18 2019 Carl George <carl(a)george.computer> - 1.1.12-1
- Latest upstream
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1668946 - holland-1.1.12 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1668946
--------------------------------------------------------------------------------
The following Fedora EPEL 6 Security updates need testing:
Age URL
65 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b7556983e8 tomcat-7.0.92-1.el6
61 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-a0ddb153b8 game-music-emu-0.6.2-1.el6
13 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-809dcc772f golang-1.11.5-1.el6
The following builds have been pushed to Fedora EPEL 6 updates-testing
twa-1.8.0-1.el6
Details about builds:
================================================================================
twa-1.8.0-1.el6 (FEDORA-EPEL-2019-fa12d122ea)
Tiny web auditor with strong opinions
--------------------------------------------------------------------------------
Update Information:
Update to latest upstream release
--------------------------------------------------------------------------------
ChangeLog:
* Sun Feb 17 2019 Artur Iwicki <fedora(a)svgames.pl> - 1.8.0-1
- Update to latest upstream release
--------------------------------------------------------------------------------
The following Fedora EPEL 7 Security updates need testing:
Age URL
203 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-f9d6ff695a bibutils-6.6-1.el7 ghc-hs-bibutils-6.6.0.0-1.el7 pandoc-citeproc-0.3.0.1-4.el7
186 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-3c9292b62d condor-8.6.11-1.el7
60 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b6fa6cebc3 game-music-emu-0.6.2-1.el7
57 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b43fdd19c3 vcftools-0.1.16-1.el7
30 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-17b3c81533 cacti-1.2.0-1.el7 cacti-spine-1.2.0-2.el7
16 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-bd6a1ae962 pdns-recursor-4.1.9-1.el7
12 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-26a7022f9a golang-1.11.5-1.el7
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-5f60a8861f kf5-kauth-5.52.0-2.el7
The following builds have been pushed to Fedora EPEL 7 updates-testing
ignition-0.30.0-4.git308d7a0.el7
mosquitto-1.5.7-1.el7
python-dns-lexicon-3.1.5-1.el7
python-pycryptodomex-3.7.3-1.el7
Details about builds:
================================================================================
ignition-0.30.0-4.git308d7a0.el7 (FEDORA-EPEL-2019-d3013595f2)
First boot installer and configuration tool
--------------------------------------------------------------------------------
Update Information:
``` Bump to ignition-dracut 2c69925 - support platform configs and user configs
in /boot ^ https://github.com/coreos/ignition-dracut/pull/43 - Add ability
to parse config.ign file on boot ^ https://github.com/coreos/ignition-
dracut/pull/42 ```
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Dusty Mabe <dusty(a)dustymabe.com> - 0.30.0-4.git308d7a0
- Bump to ignition-dracut 2c69925
- * support platform configs and user configs in /boot
^ https://github.com/coreos/ignition-dracut/pull/43
* Add ability to parse config.ign file on boot
^ https://github.com/coreos/ignition-dracut/pull/42
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.30.0-3.git308d7a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
mosquitto-1.5.7-1.el7 (FEDORA-EPEL-2019-b089414a9d)
An Open Source MQTT v3.1/v3.1.1 Broker
--------------------------------------------------------------------------------
Update Information:
Update to new upstream version 1.5.7 ---- Fixes for the following CVES: *
CVE-2018-12546 * CVE-2018-12550 * CVE-2018-12551 The list of other fixes
addressed in version 1.5.6 is: Broker: * Fixed comment handling for config
options that have optional arguments. * Improved documentation around bridge
topic remapping. * Handle mismatched handshakes (e.g. QoS1 PUBLISH with QoS2
reply) properly. * Fix spaces not being allowed in the bridge remote_username
option. Closes #1131. * Allow broker to always restart on Windows when using
log_dest file. Closes #1080. * Fix Will not being sent for Websockets clients.
Closes #1143. * Windows: Fix possible crash when client disconnects. Closes
#1137. * Fixed durable clients being unable to receive messages when offline,
when per_listener_settings was set to true. Closes #1081. * Add log message for
the case where a client is disconnected for sending a topic with invalid UTF-8.
Closes #1144. Library: * Fix TLS connections not working over SOCKS. * Don't
clear SSL context when TLS connection is closed, meaning if a user provided an
external SSL_CTX they have less chance of leaking references.
--------------------------------------------------------------------------------
ChangeLog:
* Sat Feb 16 2019 Fabian Affolter <mail(a)fabian-affolter.ch> - 1.5.7-1
- Update to new upstream version 1.5.7
* Sat Feb 9 2019 Peter Robinson <pbrobinson(a)fedoraproject.org> 1.5.6-1
- 1.5.6 release
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.5.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
python-dns-lexicon-3.1.5-1.el7 (FEDORA-EPEL-2019-d13dc66eb0)
Manipulate DNS records on various DNS providers in a standardized/agnostic way
--------------------------------------------------------------------------------
Update Information:
- Update to 3.1.5 - Add meta-subpackkages for specific providers
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Eli Young <elyscape(a)gmail.com> - 3.1.5-1
- Update to 3.1.5 (#1671162)
- Add meta-subpackages for specific providers
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.0.6-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1671162 - python-dns-lexicon-3.1.5 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1671162
--------------------------------------------------------------------------------
================================================================================
python-pycryptodomex-3.7.3-1.el7 (FEDORA-EPEL-2019-66d7540be9)
A self-contained cryptographic library for Python
--------------------------------------------------------------------------------
Update Information:
# 3.7.3 (19 January 2019) Resolved issues --------------- * GH#258: False
positive on PSS signatures when externally provided salt is too long. * Include
type stub files for ``Crypto.IO`` and ``Crypto.Util``. # 3.7.2 (26 November
2018) Resolved issues --------------- * GH#242: Fixed compilation problem on
ARM platforms. # 3.7.1 (25 November 2018) New features ------------ * Added
type stubs to enable static type checking with mypy. Thanks to Michael Nix. *
New ``update_after_digest`` flag for CMAC. Resolved issues --------------- *
GH#232: Fixed problem with gcc 4.x when compiling ``ghash_clmul.c``. * GH#238:
Incorrect digest value produced by CMAC after cloning the object. * Method
``update()`` of an EAX cipher object was returning the underlying CMAC object,
instead of the EAX object itself. * Method ``update()`` of a CMAC object was not
throwing an exception after the digest was computed (with ``digest()`` or
``verify()``).
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 3.7.3-1
- Update to 3.7.3
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1667800 - python-pycryptodomex-3.7.3x is available
https://bugzilla.redhat.com/show_bug.cgi?id=1667800
--------------------------------------------------------------------------------
The following Fedora EPEL 6 Security updates need testing:
Age URL
63 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-b7556983e8 tomcat-7.0.92-1.el6
59 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-a0ddb153b8 game-music-emu-0.6.2-1.el6
11 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-809dcc772f golang-1.11.5-1.el6
The following builds have been pushed to Fedora EPEL 6 updates-testing
copr-cli-1.78-1.el6
davix-0.7.2-1.el6
git-extras-4.7.0-1.el6
inxi-3.0.32-1.el6
python-copr-1.93-1.el6
Details about builds:
================================================================================
copr-cli-1.78-1.el6 (FEDORA-EPEL-2019-3cf223f4b7)
Command line interface for COPR
--------------------------------------------------------------------------------
Update Information:
- Fix storing the custom script parameters - Properly rewrite download-build to
use APIv3 - Do not require to set PyPI packagename when it is already set - When
serializing munch omit the proxy object - Fix the APIv1 call in the
aciton_new_webhook_secret function
--------------------------------------------------------------------------------
ChangeLog:
* Mon Feb 11 2019 Jakub Kadl����k <frostyx(a)email.cz> 1.78-1
- Don't catch exceptions inside action
- Fix storing the custom script parameters
- Properly rewrite download-build to use APIv3
- Do not require to set PyPI packagename when it is already set
- When serializing munch omit the proxy object
- Fix the APIv1 call in the aciton_new_webhook_secret function
* Tue Jan 15 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.77-1
- fix side_effect function arguments
- fix assert_called_with params
* Thu Jan 10 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.76-1
- rewrite description of copr dirs feature. Use "tag" instead of "suffix".
- explain copr_dir feature in man pages for build subcommand
- improve naming of copr_dir in copr-cli interface to copr_repo
- add support for copr dir to copr-cli
- we also buildrequire python-copr with APIv3 support
- add missing dependency on python-simplejson
- depend on munch because of tests
- have numbered string fields because of epel6
- fix copr mock-config
* Fri Oct 19 2018 Miroslav Such�� <msuchy(a)redhat.com> 1.75-1
- 1639590 - print name of package when it is deleted
- set variables for each build
- print friendlier error when trying to upload a nonexisting file
- put backend the deprecation warnings
- better errors with --config
- print just 'repos' to avoid yum/dnf confusion
- depend on python-copr-1.89
- print additional repos and blank line between projects
- rewrite unit tests to work with APIv3
- update resource properties
- fix the order of arguments
- json_dumps is not supposed to print anything
- return proper status code
- cast disable_createrepo to bool
- write to stderr instead of printing
- if ownername is not specified, use the one from config
- remove deprecated tito and mock actions
- rewrite copr-cli to use APIv3
- use git_dir_archive instead of git_dir_pack
- pg#251 Make it possible for user to select pyp2rpm template
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1639590 - Deletion feedback is too simplistic
https://bugzilla.redhat.com/show_bug.cgi?id=1639590
--------------------------------------------------------------------------------
================================================================================
davix-0.7.2-1.el6 (FEDORA-EPEL-2019-1e46dd9cac)
Toolkit for Http-based file management
--------------------------------------------------------------------------------
Update Information:
New upstream release
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Georgios Bitzes <georgios.bitzes at cern.ch> - 0.7.2-1
- New upstream release
--------------------------------------------------------------------------------
================================================================================
git-extras-4.7.0-1.el6 (FEDORA-EPEL-2019-bd497cecfe)
Little git extras
--------------------------------------------------------------------------------
Update Information:
Update to 4.7.0.
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 4.7.0-1
- Update to 4.7.0
* Thu Jan 31 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 4.6.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1674164 - git-extras-4.7.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1674164
--------------------------------------------------------------------------------
================================================================================
inxi-3.0.32-1.el6 (FEDORA-EPEL-2019-4aa0d386ca)
A full featured system information script
--------------------------------------------------------------------------------
Update Information:
Update to 3.0.32.
--------------------------------------------------------------------------------
ChangeLog:
* Fri Feb 15 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 3.0.32-1
- Update to 3.0.32
* Thu Feb 7 2019 Vasiliy N. Glazov <vascom2(a)gmail.com> - 3.0.31-1
- Update to 3.0.31
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.0.29-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
python-copr-1.93-1.el6 (FEDORA-EPEL-2019-7adc9677d4)
Python interface for Copr
--------------------------------------------------------------------------------
Update Information:
- add support for copr dir to copr-cli - provide a way to wait until builds
finish - don't pass proxy object to the wait method - don't fail when no
callback - provide a way to wait until builds finish - store a reference to the
proxy object - add possibility to query all projects (RhBug: 1130166)
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jan 15 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.93-1
- there is no dict comprehension for python2.6 which is in epel6
* Thu Jan 10 2019 Miroslav Such�� <msuchy(a)redhat.com> 1.92-1
- add support for copr dir to copr-cli
- provide a way to wait until builds finish
- don't pass proxy object to the wait method
- don't fail when no callback
- provide a way to wait until builds finish
- store a reference to the proxy object
- add possibility to query all projects (RhBug: 1130166)
* Fri Oct 19 2018 Miroslav Such�� <msuchy(a)redhat.com> 1.91-1
- better errors with --config
- use git_dir_archive instead of git_dir_pack
- document status codes from frontend
- pg#251 Make it possible for user to select pyp2rpm template
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1128362 - copr API error responses should use correct error codes
https://bugzilla.redhat.com/show_bug.cgi?id=1128362
[ 2 ] Bug #1258970 - [RFE] Python: Provide a simpler way how to find out whether a build was successful
https://bugzilla.redhat.com/show_bug.cgi?id=1258970
--------------------------------------------------------------------------------