The following Fedora 27 Security updates need testing: Age URL 25 https://bodhi.fedoraproject.org/updates/FEDORA-2017-d270e932a3 nagios-4.3.4-3.fc27 11 https://bodhi.fedoraproject.org/updates/FEDORA-2017-7106a157f5 dnsmasq-2.77-9.fc27 11 https://bodhi.fedoraproject.org/updates/FEDORA-2017-523f6a613d botan-1.10.17-1.fc27 11 https://bodhi.fedoraproject.org/updates/FEDORA-2017-e8179c06fd curl-7.55.1-6.fc27 11 https://bodhi.fedoraproject.org/updates/FEDORA-2017-67f13dd1e1 mingw-taglib-1.11.1-4.fc27 6 https://bodhi.fedoraproject.org/updates/FEDORA-2017-899c5f6a86 nodejs-forwarded-0.1.2-1.fc27 5 https://bodhi.fedoraproject.org/updates/FEDORA-2017-025ff38ac9 poppler-0.57.0-5.fc27 4 https://bodhi.fedoraproject.org/updates/FEDORA-2017-cbb8db2be6 libXfont2-2.0.2-1.fc27 4 https://bodhi.fedoraproject.org/updates/FEDORA-2017-39c5f8cd7e sssd-1.15.3-5.fc27 4 https://bodhi.fedoraproject.org/updates/FEDORA-2017-9fd430dba0 wireshark-2.4.2-1.fc27 3 https://bodhi.fedoraproject.org/updates/FEDORA-2017-0b90d8bb68 thunderbird-52.4.0-2.fc27 3 https://bodhi.fedoraproject.org/updates/FEDORA-2017-e1dc7351db kernel-4.13.6-300.fc27 0 https://bodhi.fedoraproject.org/updates/FEDORA-2017-a1f0519599 git-annex-6.20170925-1.fc27 The following builds have been pushed to Fedora 27 updates-testing argbash-2.5.0-1.fc27 cockpit-153-1.fc27 dbus-broker-7-1.fc27 ddiskit-3.6-1.fc27 distgen-0.17-1.fc27 firefox-57.0-0.4.fc27 freeipa-4.6.1-3.fc27 ghc-auto-update-0.1.4-8.fc27 ghc-time-compat-0.1.0.3-6.fc27 golang-github-alecthomas-chroma-0.1.1-2.fc27 kobo-0.7.0-1.fc27 libbytesize-1.2-1.fc27 lilypond-2.19.80-1.fc27 lilypond-doc-2.19.80-1.fc27 perl-MetaCPAN-Client-2.018000-1.fc27 perl-Test-Timer-2.04-1.fc27 perl-Test2-Suite-0.000080-1.fc27 php-pear-PHP-CodeSniffer-3.1.1-1.fc27 php-pecl-mongodb-1.3.1-1.fc27 php-zendframework-zend-xml2json-3.1.0-1.fc27 phpunit6-6.4.3-1.fc27 python-Mastodon-1.1.1-2.fc27 python-structlog-17.2.0-1.fc27 tpm2-abrmd-1.1.0-6.fc27 Details about builds: ================================================================================ argbash-2.5.0-1.fc27 (FEDORA-2017-8b7539b95b) Bash argument parsing code generator -------------------------------------------------------------------------------- Update Information: [argbash](https://argbash.io) ============================= [![Build Status](https://travis-ci.org/matejak/argbash.svg)](https://travis- ci.org/matejak/argbash) [![Documentation Status](https://readthedocs.org/project s/argbash/badge/?version=latest)](https://readthedocs.org/projects/argbash/?badg e=latest) ![argbash logo](resources/logo/argbash.png) * Do you write `Bash` scripts that should accept arguments? * But they don't since arguments support is a daunting task, because ... * `getopt` is discouraged, `getopts` doesn't support long options, there is no widely-accepted `Bash` module to do the task and some solutions don't work on all platforms (Linux, OSX, MSW)... Give a `Argbash` a try and stop being terrorized by those pesky arguments! With Argbash, you will get: * Fast, minimalistic declaration of arguments your script expects (see below for supported argument types). * Scripts generated from definitions once that can be used on all platforms that have `bash`. * Definitions embedded in few lines of the script itself (so you can use `Argbash` to regenerate the parsing part of your script easily). * Ability to re-use low- level `Argbash`-aware scripts by wrapping them by higher-level `Argbash`-aware ones conveniently, without duplicating code. * Easy installation (optional). Just [grab a release](https://github.com/matejak/argbash/releases), unzip it, go inside and run `cd resources && make install` (you may want to run `sudo make install PREFIX=/usr` for a system-wide installation). * [Documentation](http://argbash.readthedocs.org/en/latest/) and [examples](resources/examples). Make your existing script powered by `Argbash` [in a couple of minutes](http://argbash.readthedocs.io/en/latest/#generating-a-template). Explore various Argbash flavours: Flavour | Target group ------- | ------------ [Argbash online](https://argbash.io/generate) | Use it if you want to try Argbash without installing it and you have permanent access to the Internet. [Argbash CLI](https://github.com/matejak/argbash/releases/tag/2.5.0) | Install the package to have `argbash` ready locally all the time. [Argbash Docker](https://hub.docker.com/r/matejak/argbash/) | Pretty much like Argbash CLI, but you don't have to install it, you just download the image. What it is ---------- Argbash is not a parsing library, but it is rather a code generator that generates a bash library tailor-made for your script. It lets you to describe arguments your script should take and then, you can generate the `bash` parsing code. It stays in your script by default, but you can have it generated to a separate file and let `Argbash` to include it in your script for you. In any case, you won't need `Argbash` to run the script. `Argbash` is very simple to use and the generated code is relatively nice to read. Moreover, argument definitions stay embedded in the script, so when you need to update the parsing logic, you just re-run the `argbash` script on the already generated script. So by writing few comments to your script and running the Argbash's `bin/argbash` over it, you will get a `bash` script with argument parsing. See the [simple example source template](resources/examples/simple.m4) and [simple example script](resources/examples/simple.sh) for the result. If you are not into long reading, let `bin/argbash-init` generate the template for you. Following argument types are supported: - Positional arguments (defaults supported, possibiliy of fixed, variable or infinite number of arguments), - optional arguments that take one value, - boolean optional arguments, - repeated (i.e. non-overwriting) optional arguments, - incrementing (such as `--verbose`) optional arguments and - action optional arguments (such as `--version`, `--help`). The utility has been inspired by Python's `argparse` and the `shflags` project. **[Read the docs (latest stable version)](http://argbash.readthedocs.org/en/stable/) for more info** Requirements ------------ - `bash` that can work with arrays (most likely `bash >= 3.0`) (the only requirement for *users* - i.e. people that only execute scripts and don't make them) - `autom4te` utility that can work with sets (part of `autoconf >= 2.63` suite) - basic utilities s.a. `sed`, `grep`, `cat`, `test`. -------------------------------------------------------------------------------- References: [ 1 ] Bug #1430364 - Review Request: argbash - Bash argument parsing code generator https://bugzilla.redhat.com/show_bug.cgi?id=1430364 -------------------------------------------------------------------------------- ================================================================================ cockpit-153-1.fc27 (FEDORA-2017-80c6de328d) A user interface for Linux servers -------------------------------------------------------------------------------- Update Information: - Add cockpit-ovirt package to control oVirt virtual machine clusters - Clean up rpmlint/lintian errors in the packages ---- - Add Applications page - Add automatic update configuration for dnf to Software Updates - Fix cockpit-bridge crash if /etc/os-release does not exist -------------------------------------------------------------------------------- ================================================================================ dbus-broker-7-1.fc27 (FEDORA-2017-8d26c7dd5f) Linux D-Bus Message Broker -------------------------------------------------------------------------------- Update Information: New package -------------------------------------------------------------------------------- References: [ 1 ] Bug #1482202 - Review Request: dbus-broker - Linux D-Bus Message Broker https://bugzilla.redhat.com/show_bug.cgi?id=1482202 -------------------------------------------------------------------------------- ================================================================================ ddiskit-3.6-1.fc27 (FEDORA-2017-71373c9e9b) Tool for Red Hat Enterprise Linux Driver Update Disk creation -------------------------------------------------------------------------------- Update Information: Ddiskit is a little framework for simplifying creation of proper Driver Update Disks (DUD) used for providing new or updated out-of-tree kernel modules. -------------------------------------------------------------------------------- References: [ 1 ] Bug #1439894 - Review Request: ddiskit - tool for building Driver Update Disk modules https://bugzilla.redhat.com/show_bug.cgi?id=1439894 -------------------------------------------------------------------------------- ================================================================================ distgen-0.17-1.fc27 (FEDORA-2017-453cebf8d3) Templating system/generator for distributions -------------------------------------------------------------------------------- Update Information: New version of distgen that is fully backwards compatible and fixes several minor bugs. -------------------------------------------------------------------------------- ================================================================================ firefox-57.0-0.4.fc27 (FEDORA-2017-7f87282026) Mozilla Firefox Web browser -------------------------------------------------------------------------------- Update Information: - Updated to 57.0 Beta 8 - Includes CSD patch (rhbz#1500234) -------------------------------------------------------------------------------- References: [ 1 ] Bug #1500234 - [CSD] Let's include CSD patch from mozbz#1399611 at Firefox 57 https://bugzilla.redhat.com/show_bug.cgi?id=1500234 -------------------------------------------------------------------------------- ================================================================================ freeipa-4.6.1-3.fc27 (FEDORA-2017-fd9748d8f1) The Identity, Policy and Audit system -------------------------------------------------------------------------------- Update Information: Fix SELinux execmem error in webUI ---- Fix generation of ipa.p11-kit to allow Firefox to trust IPA CA -------------------------------------------------------------------------------- References: [ 1 ] Bug #1491053 - Firefox reports insecure TLS configuration when visiting FreeIPA web UI after standard server deployment https://bugzilla.redhat.com/show_bug.cgi?id=1491053 [ 2 ] Bug #1491508 - [Modular Server] FreeIPA server deployment fails with SELinux in enforcing mode, despite no obvious denials https://bugzilla.redhat.com/show_bug.cgi?id=1491508 -------------------------------------------------------------------------------- ================================================================================ ghc-auto-update-0.1.4-8.fc27 (FEDORA-2017-7d706c45cf) Efficiently run periodic, on-demand actions -------------------------------------------------------------------------------- Update Information: Efficiently run periodic, on-demand actions -------------------------------------------------------------------------------- References: [ 1 ] Bug #1198196 - Review Request: ghc-auto-update - Efficiently run periodic, on-demand actions https://bugzilla.redhat.com/show_bug.cgi?id=1198196 -------------------------------------------------------------------------------- ================================================================================ ghc-time-compat-0.1.0.3-6.fc27 (FEDORA-2017-f3d5998600) Compatibility with old-time for the time package -------------------------------------------------------------------------------- Update Information: Compatibility with the old-time package for the "new" time package -------------------------------------------------------------------------------- References: [ 1 ] Bug #1055838 - Review Request: ghc-time-compat - Compatibility with old-time for the time package https://bugzilla.redhat.com/show_bug.cgi?id=1055838 -------------------------------------------------------------------------------- ================================================================================ golang-github-alecthomas-chroma-0.1.1-2.fc27 (FEDORA-2017-9fbb121513) A general purpose syntax highlighter in pure Go -------------------------------------------------------------------------------- Update Information: Fix build paths for exercise and css2style -------------------------------------------------------------------------------- References: [ 1 ] Bug #1500574 - Review Request: golang-github-alecthomas-chroma - A general purpose syntax highlighter in pure Go https://bugzilla.redhat.com/show_bug.cgi?id=1500574 -------------------------------------------------------------------------------- ================================================================================ kobo-0.7.0-1.fc27 (FEDORA-2017-74d6988160) Python modules for tools development -------------------------------------------------------------------------------- Update Information: New upstream release 0.7.0; supports python 3 -------------------------------------------------------------------------------- ================================================================================ libbytesize-1.2-1.fc27 (FEDORA-2017-5fa72041d6) A library for working with sizes in bytes -------------------------------------------------------------------------------- Update Information: A new upstream release with bugfixes and minor enhancements. -------------------------------------------------------------------------------- References: [ 1 ] Bug #1484676 - ValueError: Failed to recognize unit from the spec: 931,51 Gio https://bugzilla.redhat.com/show_bug.cgi?id=1484676 -------------------------------------------------------------------------------- ================================================================================ lilypond-2.19.80-1.fc27 (FEDORA-2017-36cb1f7f0b) A typesetting system for music notation -------------------------------------------------------------------------------- Update Information: 2.19.80 -------------------------------------------------------------------------------- ================================================================================ lilypond-doc-2.19.80-1.fc27 (FEDORA-2017-36cb1f7f0b) HTML documentation for LilyPond -------------------------------------------------------------------------------- Update Information: 2.19.80 -------------------------------------------------------------------------------- ================================================================================ perl-MetaCPAN-Client-2.018000-1.fc27 (FEDORA-2017-c3954be0a8) A comprehensive, DWIM-featured client to the MetaCPAN API -------------------------------------------------------------------------------- Update Information: This update fixes the URL used to fetch reverse dependencies. -------------------------------------------------------------------------------- ================================================================================ perl-Test-Timer-2.04-1.fc27 (FEDORA-2017-c1c5c9b82c) Test module to test/assert response times -------------------------------------------------------------------------------- Update Information: Updated to the latest version -------------------------------------------------------------------------------- References: [ 1 ] Bug #1503041 - perl-Test-Timer-2.04 is available https://bugzilla.redhat.com/show_bug.cgi?id=1503041 -------------------------------------------------------------------------------- ================================================================================ perl-Test2-Suite-0.000080-1.fc27 (FEDORA-2017-787088770b) Set of tools built upon the Test2 framework -------------------------------------------------------------------------------- Update Information: Updated to the latest version -------------------------------------------------------------------------------- References: [ 1 ] Bug #1503040 - perl-Test2-Suite-0.000080 is available https://bugzilla.redhat.com/show_bug.cgi?id=1503040 -------------------------------------------------------------------------------- ================================================================================ php-pear-PHP-CodeSniffer-3.1.1-1.fc27 (FEDORA-2017-541df735aa) PHP coding standards enforcement tool -------------------------------------------------------------------------------- Update Information: **Version 3.1.1** Changelog: - Restored preference of non-dist files over dist files for phpcs.xml and phpcs.xml.dist - The order that the files are searched is now: .phpcs.xml, phpcs.xml, .phpcs.xml.dist, phpcs.xml.dist - Thanks to Juliette Reinders Folmer for the patch - Progress output now correctly shows skipped files - Progress output now shows 100% when the file list has finished processing (request #1697) - Stopped some IDEs complaining about testing class aliases - Thanks to Vytautas Stankus for the patch - Squiz.Commenting.InlineComment incorrectly identified comment blocks in some cases, muting some errors - Thanks to Juliette Reinders Folmer for the patch - Fixed bug #1512 : PEAR.Functions.FunctionCallSignature enforces spaces when no arguments if required spaces is not 0 - Fixed bug #1522 : Squiz Arrays.ArrayDeclaration and Strings.ConcatenationSpacing fixers causing parse errors with here/nowdocs - Fixed bug #1570 : Squiz.Arrays.ArrayDeclaration fixer removes comments between array keyword and open parentheses - Fixed bug #1604 : File::isReference has problems with some bitwise operators and class property references - Thanks to Juliette Reinders Folmer for the patch - Fixed bug #1645 : Squiz.Commenting.InlineComment will fail to fix comments at the end of the file - Thanks to Juliette Reinders Folmer for the patch - Fixed bug #1656 : Using the --sniffs argument has a problem with case sensitivity - Fixed bug #1657 : Uninitialized string offset: 0 when sniffing CSS - Fixed bug #1669 : Temporary expression proceeded by curly brace is detected as function call - Fixed bug #1681 : Huge arrays are super slow to scan with Squiz.Arrays.ArrayDeclaration sniff - Fixed bug #1694 : Squiz.Arrays.ArrayBracketSpacing is removing some comments during fixing - Thanks to Juliette Reinders Folmer for the patch - Fixed bug #1702 : Generic.WhiteSpaceDisallowSpaceIndent fixer bug when line only contains superfluous whitespace -------------------------------------------------------------------------------- ================================================================================ php-pecl-mongodb-1.3.1-1.fc27 (FEDORA-2017-fcc05e6309) MongoDB driver for PHP -------------------------------------------------------------------------------- Update Information: **Version 1.3.1** * [PHPC-1014] - config.m4 produces unterminated quoted string -------------------------------------------------------------------------------- ================================================================================ php-zendframework-zend-xml2json-3.1.0-1.fc27 (FEDORA-2017-1b03ccc847) Provides functionality for converting XML to JSON -------------------------------------------------------------------------------- Update Information: **Version 3.1.0** - 2017-10-16 * **Added** - [#5](https://github.com/zendframework/zend-xml2json/pull/5) adds support for PHP 7.1 and 7.2. * **Removed** - [#1](https://github.com/zendframework /zend-xml2json/pull/1) removes an obsolete `@deprecated` annotation. - [#5](https://github.com/zendframework/zend-xml2json/pull/5) removes support for PHP 5.5. The code likely still runs on that version, but we no longer support it. - [#5](https://github.com/zendframework/zend-xml2json/pull/5) removes support for HHVM. -------------------------------------------------------------------------------- ================================================================================ phpunit6-6.4.3-1.fc27 (FEDORA-2017-0bc0d5fb1b) The PHP Unit Testing framework -------------------------------------------------------------------------------- Update Information: **Version 6.4.3** - 2017-10-16 * **Fixed** * Fixed [#2811](https://github.com/sebastianbergmann/phpunit/issues/2811): `expectExceptionMessage()` does not work without `expectException()` ---- **Version 6.4.2** - 2017-10-15 * **Fixed** * Fixed [#1873](https://github.com/sebastianbergmann/phpunit/issues/1873): Arguments for an object within a listener cannot accept multiple arguments of the same type * Fixed [#2237](https://github.com/sebastianbergmann/phpunit/issues/2237): `assertArraySubset()` should provide the diff when the assertion fails * Fixed [#2688](https://github.com/sebastianbergmann/phpunit/issues/2688): `assertNotContains()` interferes with actual string * Fixed [#2693](https://github.com/sebastianbergmann/phpunit/issues/2693): Second `yield from` is not called from a data provider * Fixed [#2721](https://github.com/sebastianbergmann/phpunit/issues/2721): Confusing failure message when `assertFileNotEquals()` is used on two empty files * Fixed [#2731](https://github.com/sebastianbergmann/phpunit/issues/2731): Empty exception message cannot be expected * Fixed [#2778](https://github.com/sebastianbergmann/phpunit/issues/2778): `assertContains()` does not handle empty strings in strings correctly -------------------------------------------------------------------------------- ================================================================================ python-Mastodon-1.1.1-2.fc27 (FEDORA-2017-9d15c7bc4b) Python wrapper for the Mastodon API -------------------------------------------------------------------------------- Update Information: Initial build -------------------------------------------------------------------------------- References: [ 1 ] Bug #1502072 - Review Request: python-Mastodon - Python wrapper for the Mastodon API https://bugzilla.redhat.com/show_bug.cgi?id=1502072 -------------------------------------------------------------------------------- ================================================================================ python-structlog-17.2.0-1.fc27 (FEDORA-2017-e9de92d980) Painless structural logging -------------------------------------------------------------------------------- Update Information: Update to 17.2.0 -------------------------------------------------------------------------------- References: [ 1 ] Bug #1502060 - structlog 17.2.0 is available https://bugzilla.redhat.com/show_bug.cgi?id=1502060 -------------------------------------------------------------------------------- ================================================================================ tpm2-abrmd-1.1.0-6.fc27 (FEDORA-2017-1165871ddb) A system daemon implementing TPM2 Access Broker and Resource Manager -------------------------------------------------------------------------------- Update Information: Fix tpm2-abrmd won't start when tss user does not exist -------------------------------------------------------------------------------- References: [ 1 ] Bug #1502996 - Systemd will fail to start tpm2-abrmd if the tss user does not exist. https://bugzilla.redhat.com/show_bug.cgi?id=1502996 -------------------------------------------------------------------------------- _______________________________________________ test mailing list -- test@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to test-leave@xxxxxxxxxxxxxxxxxxxxxxx