Packages changed: bash bluez (5.63 -> 5.64) dnf (4.10.0 -> 4.11.1) file ibus (1.5.25 -> 1.5.26) inih (53 -> 55) libdnf (0.65.0 -> 0.66.0) mozilla-nss polkit-default-privs (1550+20220303.95a78fb -> 1550+20220325.163dbdf) python-MarkupSafe (2.0.1 -> 2.1.1) python-alembic (1.7.6 -> 1.7.7) python-cryptography (36.0.1 -> 36.0.2) === Details === ==== bash ==== Subpackages: bash-sh - Do use old legacy PreReq to get bash installed before bash-sh but do not require bash-sh by bash (bsc#1197448) ==== bluez ==== Version update (5.63 -> 5.64) Subpackages: bluez-cups libbluetooth3 - update to version 5.64: This is another release mostly with bug fixes on HOG, GATT, A2DP, Media, AVDTP, AVRCP, and scanning failure. This release includes a fix for building with old glibc (< 2.25) and other minor issues found with the static code analyzing tool. ISO packet support is added to the emulator as a part of LE Audio development. - removed obsoleted 0002-Use-g_memdup2-everywhere.patch ==== dnf ==== Version update (4.10.0 -> 4.11.1) - Update to 4.11.1 + Allow destdir option with modulesync command + Add documentation for query api flags (rh#2035577) + Fix swap command to work with local rpm files correctly (rh#2036434) + Fix regression in verifying signatures using rpmkeys + Use rpm.TransactionSet.dbCookie() to determining if rpmdb has changed (rh#2043476) + Fix decompression of groups.xml (rh#2030255) + Fix history undo on a Reason Change (rh#2010259, rh#2053014) + Remove /usr/bin from sys.path to avoid accidentally importing garbage + Fix: Python dnf API does not respect cacheonly (rh#1862970) + Fix python3.11 build: remove deprecated, update traceback regex + fix dnf mark error when history sqlite missing + [doc] Improve description of multilib_policy=all (rh#1996681, rh#1995630) + [doc] clarify effect of --enablerepo and --disablerepo options (rh#2031414) + [doc] default values for module_obsoletes and module_stream_switch (rh#2051846) - Add Fix-processing-of-download-errors.patch backported from upstream * Fix dnf incorrectly aborting on non-English systems when packages already cached (rh#2024527) ==== file ==== Subpackages: file-magic libmagic1 - add file-5.41-cache-regexps-locale-restore.patch to restore previous locale handling behavior - add file-5.41-cache-regexps.patch to cache regexp lookups ==== ibus ==== Version update (1.5.25 -> 1.5.26) Subpackages: libibus-1_0-5 typelib-1_0-IBus-1_0 - Update version to 1.5.26 * Enhance compose keys * Enhance Emoji features * Implement clear preedit for GTK4 * Calculate keycode from keysym in GTK3 forward-key-event * Fix to send char position at update_preedit_text * Deprecate gettext.bind_textdomain_codeset() since Python 3.8 * Fix ibus_key_event_from_string for gobject-introspection * Fix a key event loop with forwarding keys * Delete gnome-autogen dependency * Change XKB layout string color in panel * Add IBUS_INPUT_HINT_PRIVATE for browser private mode * mkdir socket dirs instead of socket paths * Add org.freedesktop.IBus.session.generic.service * Check XDG_SESSION_DESKTOP for Plasma desktop * Update simple.xml with xkeyboard-config 2.35.1 * Update ibusunicodegen.h with unicode-ucd 14.0.0 * Enhance CI * Fix typos * Fix wrong cursor location in gtk3 apps * Update URLS * invalidate cache based on symlink mtime too * Fix unref problems with floating references * Update man page for Emoji shortcut key * Add systemd unit file * Fix forward key keycode for GTK4 - Drop ibus-fix-wrong-cursor-location.patch, merged by upstream ==== inih ==== Version update (53 -> 55) - Update to version 55 * Include proper version in installed pkgconfig files. - Update to version 54 * Improve quality of shared objects by explicitly defining symbol visibility. ==== libdnf ==== Version update (0.65.0 -> 0.66.0) Subpackages: libdnf-repo-config-zypp libdnf2 - Update to 0.66.0 + Use `rpmdbCookie` from librpm, remove `hawkey.Sack._rpmdb_version` + Fix handling transaction id in resolveTransactionItemReason (rh#2010259, rh#2053014) + Remove deprecated assertions (rh#2027383) + Increase required rpm version since we use `rpmdbCookie()` + Skip rich deps for autodetection of unmet dependencies (rh#2033130) - Use ldconfig_scriptlets macro for ldconfig scriptlets ==== mozilla-nss ==== Subpackages: libfreebl3 libsoftokn3 mozilla-nss-certs - Add nss-util pkgconfig and config files (copied from RH/Fedora) ==== polkit-default-privs ==== Version update (1550+20220303.95a78fb -> 1550+20220325.163dbdf) - Update to version 1550+20220325.163dbdf: * whitelisting: add usbguard actions (bsc#1196621) - Update to version 1550+20220324.7f46822: * Fix generation of file /etc/polkit-1/rules.d/90-default-privs.rules ==== python-MarkupSafe ==== Version update (2.0.1 -> 2.1.1) - specfile: * update copyright year * require python >= 3.7 - update to version 2.1.1: * Avoid ambiguous regex matches in "striptags". :pr:`293` - changes from version 2.1.0: * Drop support for Python 3.6. :pr:`262` * Remove "soft_unicode", which was previously deprecated. Use "soft_str" instead. :pr:`261` * Raise error on missing single placeholder during string interpolation. :issue:`225` * Disable speedups module for GraalPython. :issue:`277` ==== python-alembic ==== Version update (1.7.6 -> 1.7.7) - update to 1.7.7: * Fixed issue where using :meth:`.Operations.create_table` in conjunction with a :class:`.CheckConstraint` that referred to table-bound :class:`.Column` objects rather than string expressions would be added to the parent table potentially multiple times, resulting in an incorrect DDL sequence. Pull request courtesy Nicolas CANIART. * The ``logging.fileConfig()`` line in ``env.py`` templates, which is used to setup Python logging for the migration run, is now conditional on :attr:`.Config.config_file_name` not being ``None``. Otherwise, the line is skipped as there is no default logging configuration present. * Fixed bug where an :meth:`.Operations.alter_column` operation would change a "NOT NULL" column to "NULL" by emitting an ALTER COLUMN statement that did not specify "NOT NULL". (In the absence of "NOT NULL" T-SQL was implicitly assuming "NULL"). An :meth:`.Operations.alter_column` operation that specifies :paramref:`.Operations.alter_column.type` should also specify include either :paramref:`.Operations.alter_column.nullable` or :paramref:`.Operations.alter_column.existing_nullable` to inform Alembic as to whether the emitted DDL should include "NULL" or "NOT NULL"; a warning is now emitted if this is missing under this scenario. ==== python-cryptography ==== Version update (36.0.1 -> 36.0.2) - update to 36.0.2: * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 1.1.1n.