--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-f48876515c
2019-05-31 13:58:31.502603
--------------------------------------------------------------------------------
Name : phan
Product : Fedora 29
Version : 2.0.0
Release : 1.fc29
URL : https://github.com/phan/phan
Summary : A static analyzer for PHP
Description :
Phan is a static analyzer that looks for common issues and will verify type
compatibility on various operations when type information is available or can
be deduced. Phan does not make any serious attempt to understand flow control
and narrow types based on conditionals.
--------------------------------------------------------------------------------
Update Information:
20 May 2019, **Phan 2.0.0** **New features (Analysis):** + Add early support
for PHP 7.4's typed properties. (#2314) (This is incomplete, and does not
support inheritance, assignment, impossible conditions, etc.) + Change warnings
about undeclared `$this` into a critical `PhanUndeclaredThis` issue. (#2751) +
Fix the check for `PhanUnusedVariableGlobal` (#2768) + Start work on supporting
analyzing PHP 7.4's unpacking inside arrays. (e.g. `[1, 2, ...$arr1, 5]`)
(#2779) NOTE: This does not yet check all types of errors, some code is
unmigrated, and the polyfill does not yet support this. + Improve the check for
invalid array unpacking in function calls with iterable/Traversable parameters.
(#2779) **Plugins:** + Improve help messages for
`internal/dump_fallback_ast.php` (this tool may be of use when developing
plugins) **Bug fixes:** + Work around issues parsing binary operators in PHP
7.4-dev. Note that the latest version of php-ast (currently 1.0.2-dev) should
be installed if you are testing Phan with PHP 7.4-dev. ---- 13 May 2019,
**Phan 2.0.0-RC2** **New features (Analysis):** + Support analysis of PHP
7.4's short arrow function syntax (`fn ($arg) => expr`) (#2714) (requires php-
ast 1.0.2dev or newer) Note that the polyfill does not yet support this syntax.
+ Infer the return types of PHP 7.4's magic methods `__serialize()` and
`__unserialize()`. (#2755) Improve analysis of return types of other magic
methods such as `__sleep()`. + Support more of PHP 7.4's function signatures
(e.g. `WeakReference`) (#2756) + Improve detection of unused variables inside of
loops/branches. **Plugins:** + Detect some new php 7.3 functions
(`array_key_first`, etc.) in `UseReturnValuePlugin`. + Don't emit a
`PhanNativePHPSyntaxCheckPlugin` error in `InvokePHPNativeSyntaxCheckPlugin` due
to a shebang before `declare(strict_types=1)` + Fix edge cases running
`PhanNativePHPSyntaxCheckPlugin` on Windows (in language server/daemon mode)
**Bug fixes:** + Analyze the remaining expressions in a statement after
emitting `PhanTraitParentReference` (#2750) + Don't emit
`PhanUndeclaredVariable` within a closure if a `use` variable was undefined
outside of it. (#2716) ---- 09 May 2019, **Phan 2.0.0-RC1** **New features
(CLI, Configs):** + Enable language server features by default. (#2358)
`--language-server-disable-go-to-definition`, `--language-server-disable-hover`,
and `--language-server-disable-completion` can be used to disable those
features. **Backwards Incompatible Changes:** + Drop support for running Phan
with PHP 7.0. (PHP 7.0 reached its end of life in December 2018) Analyzing
codebases with `--target-php-version 7.0` continues to be supported. + Require
php-ast 1.0.1 or newer (or the absence of php-ast with `--allow-polyfill-
parser`) Phan switched from using [AST version 50 to version
70](https://github.com/nikic/php-ast#ast-versioning). **Plugins:** + Change
`PluginV2` to `PluginV3` `PluginV2` and its capabilities will continue to work
to make migrating to Phan 2.x easier, but `PluginV2` is deprecated and will be
removed in Phan 3. `PluginV3` has the same APIs and capabilities as PluginV2,
but uses PHP 7.1 signatures (`void`, `?MyClass`, etc.) + Third party plugins may
need to be upgraded to support changes in AST version 70, e.g. the new node
kinds `AST_PROP_GROUP` and `AST_CLASS_NAME` + Add `PHPDocToRealTypesPlugin` to
suggest real types to replace (or use alongside) phpdoc return types. This
does not check that the phpdoc types are correct. `--automatic-fix` can be
used to automate making these changes for issues that are not suppressed. + Add
`PHPDocRedundantPlugin` to detect functions/methods/closures where the doc
comment just repeats the types in the signature. (or when other parts don't
just repeat information, but the `@return void` at the end is redundant) + Add a
`BeforeAnalyzePhaseCapability`. Unlike `BeforeAnalyzeCapability`, this will run
after methods are analyzed, not before.
--------------------------------------------------------------------------------
ChangeLog:
* Mon May 20 2019 Remi Collet <remi(a)remirepo.net> - 2.0.0-1
- update to 2.0.0
- raise dependency on PHP 7.1.0
- raise dependency on ast 1.0.1
- switch to phpunit7
* Fri May 10 2019 Remi Collet <remi(a)remirepo.net> - 1.3.4-1
- update to 1.3.4
* Mon Apr 29 2019 Remi Collet <remi(a)remirepo.net> - 1.3.2-1
- update to 1.3.2
* Tue Apr 23 2019 Remi Collet <remi(a)remirepo.net> - 1.3.1-1
- update to 1.3.1
* Mon Apr 8 2019 Remi Collet <remi(a)remirepo.net> - 1.2.8-1
- update to 1.2.8
* Sat Mar 23 2019 Remi Collet <remi(a)remirepo.net> - 1.2.7-1
- update to 1.2.7
- raise dependency on microsoft/tolerant-php-parser 0.0.17
* Sun Mar 10 2019 Remi Collet <remi(a)remirepo.net> - 1.2.6-1
- update to 1.2.6
* Wed Feb 27 2019 Remi Collet <remi(a)remirepo.net> - 1.2.5-1
- update to 1.2.5
- add dependecy on mbstring
- add weak dependecy on igbinary
* Tue Feb 19 2019 Remi Collet <remi(a)remirepo.net> - 1.2.4-1
- update to 1.2.4
- raise dependency on composer/xdebug-handler 1.3.2
* Mon Feb 11 2019 Remi Collet <remi(a)remirepo.net> - 1.2.3-1
- update to 1.2.3
* Mon Feb 4 2019 Remi Collet <remi(a)remirepo.net> - 1.2.2-1
- update to 1.2.2
* Sat Jan 19 2019 Remi Collet <remi(a)remirepo.net> - 1.2.1-1
- update to 1.2.1
- raise dependency on microsoft/tolerant-php-parser 0.0.16
* Sun Jan 6 2019 Remi Collet <remi(a)remirepo.net> - 1.2.0-1
- update to 1.2.0
* Mon Dec 31 2018 Remi Collet <remi(a)remirepo.net> - 1.1.10-1
- update to 1.1.10
* Sun Dec 16 2018 Remi Collet <remi(a)remirepo.net> - 1.1.8-1
- update to 1.1.8
* Sun Dec 9 2018 Remi Collet <remi(a)remirepo.net> - 1.1.7-1
- update to 1.1.7
* Fri Nov 30 2018 Remi Collet <remi(a)remirepo.net> - 1.1.5-1
- update to 1.1.5
* Wed Nov 28 2018 Remi Collet <remi(a)remirepo.net> - 1.1.4-1
- update to 1.1.4
* Wed Nov 21 2018 Remi Collet <remi(a)remirepo.net> - 1.1.3-1
- update to 1.1.3
* Tue Nov 6 2018 Remi Collet <remi(a)remirepo.net> - 1.1.2-1
- update to 1.1.2
* Tue Oct 23 2018 Remi Collet <remi(a)remirepo.net> - 1.1.1-1
- update to 1.1.1
* Tue Oct 9 2018 Remi Collet <remi(a)remirepo.net> - 1.1.0-1
- update to 1.1.0
* Wed Oct 3 2018 Remi Collet <remi(a)remirepo.net> - 1.0.7-1
- update to 1.0.7
- raise dependency on microsoft/tolerant-php-parser 0.0.13
- php-ast is optional
* Wed Sep 26 2018 Remi Collet <remi(a)remirepo.net> - 1.0.6-1
- update to 1.0.6
- sources from git snapshot
* Sat Sep 22 2018 Remi Collet <remi(a)remirepo.net> - 1.0.5-1
- update to 1.0.5
- open https://github.com/phan/phan/issues/1986 keep the tests
- keep ast mandatory despite it is now optional
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-f48876515c' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-c6df702b97
2019-05-31 13:58:31.502592
--------------------------------------------------------------------------------
Name : php-league-flysystem
Product : Fedora 29
Version : 1.0.52
Release : 1.fc29
URL : https://github.com/thephpleague/flysystem
Summary : Filesystem abstraction: Many filesystems, one API
Description :
Flysystem is a filesystem abstraction which allows you to easily swap out
a local filesystem for a remote one.
Autoloader: /usr/share/php/League/Flysystem/autoload.php
--------------------------------------------------------------------------------
Update Information:
**Version 1.0.52** - 2019-05-20 * Correcting mimetype for CSV files according
to latest RFC (https://tools.ietf.org/html/rfc7111) * Prevent warnings for
`file_get_contents` calls without `has` calls.
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 21 2019 Remi Collet <remi(a)remirepo.net> - 1.0.52-1
- update to 1.0.52
* Mon Apr 1 2019 Remi Collet <remi(a)remirepo.net> - 1.0.51-1
- update to 1.0.51
* Fri Feb 1 2019 Remi Collet <remi(a)remirepo.net> - 1.0.50-1
- update to 1.0.50
* Mon Nov 26 2018 Remi Collet <remi(a)remirepo.net> - 1.0.49-1
- update to 1.0.49
* Tue Oct 16 2018 Remi Collet <remi(a)remirepo.net> - 1.0.48-1
- update to 1.0.48
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-c6df702b97' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-6ad310619d
2019-05-31 13:58:31.502582
--------------------------------------------------------------------------------
Name : nv-codec-headers
Product : Fedora 29
Version : 8.1.24.9
Release : 2.fc29
URL : https://github.com/FFmpeg/nv-codec-headers
Summary : FFmpeg version of Nvidia Codec SDK headers
Description :
FFmpeg version of headers required to interface with Nvidias codec APIs.
--------------------------------------------------------------------------------
Update Information:
Fix path in pkg-config file
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 21 2019 Leigh Scott <leigh123linux(a)googlemail.com> - 8.1.24.9-2
- Use correct path for pkg-config file
* Sat May 11 2019 Leigh Scott <leigh123linux(a)googlemail.com> - 8.1.24.9-1
- Update to 8.1.24.9
* Sun Feb 3 2019 Leigh Scott <leigh123linux(a)googlemail.com> - 8.1.24.8-1
- Update to 8.1.24.8
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-6ad310619d' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-4ddc4aedbd
2019-05-31 13:58:31.502570
--------------------------------------------------------------------------------
Name : php-simplesamlphp-saml2_3
Product : Fedora 29
Version : 3.4.1
Release : 1.fc29
URL : https://github.com/simplesamlphp/saml2
Summary : SAML2 PHP library from SimpleSAMLphp (version 3)
Description :
A PHP library for SAML2 related functionality. Extracted from SimpleSAMLphp [1],
used by OpenConext [2]. This library started as a collaboration between
UNINETT [3] and SURFnet [4] but everyone is invited to contribute.
Autoloader: /usr/share/php/SAML2_3/autoload.php
[1] https://www.simplesamlphp.org/
[2] https://www.openconext.org/
[3] https://www.uninett.no/
[4] https://www.surfnet.nl/
--------------------------------------------------------------------------------
Update Information:
## php-simplesamlphp-saml2_3
https://github.com/simplesamlphp/saml2/compare/v3.3.8...v3.4.1 ## php-
webmozart-assert ### 1.4.0 (2018-12-25) #### Added * added `Assert::ip()` *
added `Assert::ipv4()` * added `Assert::ipv6()` * added `Assert::notRegex()` *
added `Assert::interfaceExists()` * added `Assert::isList()` * added
`Assert::isMap()` * added polyfill for ctype #### Fixed * Special case when
comparing objects implementing `__toString()`
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 21 2019 Shawn Iwinski <shawn(a)iwin.ski> - 3.4.1-1
- Update to 3.4.1 (RHBZ #1688285)
* Wed Feb 13 2019 Shawn Iwinski <shawn(a)iwin.ski> - 3.3.8-1
- Update to 3.3.8 (RHBZ #1600514)
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.1.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1688285 - php-simplesamlphp-saml2_3-3.4.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1688285
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-4ddc4aedbd' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-4ddc4aedbd
2019-05-31 13:58:31.502570
--------------------------------------------------------------------------------
Name : php-webmozart-assert
Product : Fedora 29
Version : 1.4.0
Release : 1.fc29
URL : https://github.com/webmozart/assert
Summary : Assertions to validate method input/output with nice error messages
Description :
This library contains efficient assertions to test the input and output of your
methods. With these assertions, you can greatly reduce the amount of coding
needed to write a safe implementation.
All assertions in the Assert class throw an \InvalidArgumentException if they
fail.
Autoloader: /usr/share/php/Webmozart/Assert/autoload.php
--------------------------------------------------------------------------------
Update Information:
## php-simplesamlphp-saml2_3
https://github.com/simplesamlphp/saml2/compare/v3.3.8...v3.4.1 ## php-
webmozart-assert ### 1.4.0 (2018-12-25) #### Added * added `Assert::ip()` *
added `Assert::ipv4()` * added `Assert::ipv6()` * added `Assert::notRegex()` *
added `Assert::interfaceExists()` * added `Assert::isList()` * added
`Assert::isMap()` * added polyfill for ctype #### Fixed * Special case when
comparing objects implementing `__toString()`
--------------------------------------------------------------------------------
ChangeLog:
* Sun May 19 2019 Shawn Iwinski <shawn(a)iwin.ski> - 1.4.0-1
- Update to 1.4.0
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.3.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Oct 19 2018 Remi Collet <remi(a)remirepo.net> - 1.3.0-3
- fix autoloader, use PSR-4 to avoid duplicated definition
- prepend autoloader to ensure we use current version in tests
- fix FTBFS #1605449
* Fri Oct 19 2018 Remi Collet <remi(a)remirepo.net> - 1.3.0-2
- fix autoloader, use PSR-4 to avoid duplicated definition
- prepend autoloader to ensure we use current version in tests
- fix FTBFS #1605449
- bootstrap build
* Fri Jul 13 2018 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1688285 - php-simplesamlphp-saml2_3-3.4.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1688285
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-4ddc4aedbd' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-0c8a3052ac
2019-05-31 13:58:31.502558
--------------------------------------------------------------------------------
Name : qqc2-desktop-style
Product : Fedora 29
Version : 5.58.0
Release : 1.fc29
URL : https://cgit.kde.org/qqc2-desktop-style.git
Summary : QtQuickControls2 style for consistency between QWidget and QML apps
Description :
This is a style for QtQuickControls 2 that uses QWidget's QStyle for
painting, making possible to achieve an higher degree of consistency
between QWidget-based and QML-based apps.
--------------------------------------------------------------------------------
Update Information:
KDE Framework 5.58 release, https://www.kde.org/announcements/kde-
frameworks-5.58.0.php
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.58.0-1
- 5.58.0
* Tue Apr 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.57.0-1
- 5.57.0
* Tue Mar 5 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.0-1
- 5.56.0
* Mon Feb 4 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.55.0-1
- 5.55.0
* Sat Feb 2 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 5.54.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jan 18 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.54.0-2
- add versioned runtime dep for kf5-kirigami2
* Wed Jan 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.54.0-1
- 5.54.0
* Sun Dec 9 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.53.0-1
- 5.53.0
* Sun Nov 4 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.52.0-1
- 5.52.0
* Wed Oct 10 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.51.0-1
- 5.51.0
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-0c8a3052ac' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-0c8a3052ac
2019-05-31 13:58:31.502558
--------------------------------------------------------------------------------
Name : oxygen-icon-theme
Product : Fedora 29
Version : 5.58.0
Release : 1.fc29
URL : https://techbase.kde.org/Projects/Oxygen
Summary : Oxygen icon theme
Description :
Oxygen icon theme.
--------------------------------------------------------------------------------
Update Information:
KDE Framework 5.58 release, https://www.kde.org/announcements/kde-
frameworks-5.58.0.php
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.58.0-1
- 5.58.0
* Sat Apr 13 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.57.0-1
- 5.57.0
* Sat Apr 13 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.56.0-2
- simpler scriptlets
* Tue Mar 5 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.56.0-1
- 5.56.0
* Mon Feb 4 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.55.0-1
- 5.55.0
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 1:5.54.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.54.0-1
- 5.54.0
* Sun Dec 9 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.53.0-1
- 5.53.0
* Sun Nov 4 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.52.0-1
- 5.52.0
* Wed Oct 10 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 1:5.51.0-1
- 5.51.0
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-0c8a3052ac' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-0c8a3052ac
2019-05-31 13:58:31.502558
--------------------------------------------------------------------------------
Name : kf5-plasma
Product : Fedora 29
Version : 5.58.0
Release : 1.fc29
URL : https://cgit.kde.org/plasma-framework.git
Summary : KDE Frameworks 5 Tier 3 framework is foundation to build a primary user interface
Description :
KDE Frameworks 5 Tier 3 framework is foundation to build a primary user interface.
--------------------------------------------------------------------------------
Update Information:
KDE Framework 5.58 release, https://www.kde.org/announcements/kde-
frameworks-5.58.0.php
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.58.0-1
- 5.58.0
* Thu Apr 25 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.57.0-2
- pull in upstream fix for leaked thumbnail file handles (kde#406303)
* Tue Apr 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.57.0-1
- 5.57.0
* Wed Mar 13 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.1-1
- 5.56.1
* Tue Mar 5 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.0-1
- 5.56.0
* Mon Feb 4 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.55.0-1
- 5.55.0
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 5.54.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.54.0-1
- 5.54.0
* Sun Dec 9 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.53.0-1
- 5.53.0
* Thu Nov 8 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.52.0-2
- respin
* Sun Nov 4 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.52.0-1
- 5.52.0
* Wed Oct 10 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.51.0-1
- 5.51.0
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-0c8a3052ac' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-0c8a3052ac
2019-05-31 13:58:31.502558
--------------------------------------------------------------------------------
Name : kf5-solid
Product : Fedora 29
Version : 5.58.0
Release : 1.fc29
URL : https://solid.kde.org/
Summary : KDE Frameworks 5 Tier 1 integration module that provides hardware information
Description :
Solid provides the following features for application developers:
- Hardware Discovery
- Power Management
- Network Management
--------------------------------------------------------------------------------
Update Information:
KDE Framework 5.58 release, https://www.kde.org/announcements/kde-
frameworks-5.58.0.php
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.58.0-1
- 5.58.0
* Tue Apr 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.57.0-1
- 5.57.0
* Tue Mar 5 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.0-1
- 5.56.0
* Mon Feb 4 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.55.0-1
- 5.55.0
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 5.54.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.54.0-1
- 5.54.0
* Sun Dec 9 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.53.0-1
- 5.53.0
* Sun Nov 4 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.52.0-1
- 5.52.0
* Wed Oct 10 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.51.0-1
- 5.51.0
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-0c8a3052ac' 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
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora Update Notification
FEDORA-2019-0c8a3052ac
2019-05-31 13:58:31.502558
--------------------------------------------------------------------------------
Name : kf5-syntax-highlighting
Product : Fedora 29
Version : 5.58.0
Release : 1.fc29
URL : https://cgit.kde.org/syntax-highlighting.git
Summary : KDE Frameworks 5 Syntax highlighting engine for Kate syntax definitions
Description :
KDE Frameworks 5 Syntax highlighting engine for Kate syntax definitions.
--------------------------------------------------------------------------------
Update Information:
KDE Framework 5.58 release, https://www.kde.org/announcements/kde-
frameworks-5.58.0.php
--------------------------------------------------------------------------------
ChangeLog:
* Tue May 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.58.0-1
- 5.58.0
* Tue Apr 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.57.0-1
- 5.57.0
* Thu Mar 7 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.0-2
- respin
* Tue Mar 5 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.56.0-1
- 5.56.0
* Mon Feb 4 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.55.0-1
- 5.55.0
* Fri Feb 1 2019 Fedora Release Engineering <releng(a)fedoraproject.org> - 5.54.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Jan 9 2019 Rex Dieter <rdieter(a)fedoraproject.org> - 5.54.0-1
- 5.54.0
* Sun Dec 9 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.53.0-1
- 5.53.0
* Sun Nov 4 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.52.0-1
- 5.52.0
* Wed Oct 10 2018 Rex Dieter <rdieter(a)fedoraproject.org> - 5.51.0-1
- 5.51.0
--------------------------------------------------------------------------------
This update can be installed with the "dnf" update program. Use
su -c 'dnf upgrade --advisory FEDORA-2019-0c8a3052ac' 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
--------------------------------------------------------------------------------