Packages changed:
  autofs
  brltty
  grub2
  gzip
  libnetfilter_conntrack (1.0.8 -> 1.0.9)
  libqt5-qtbase
  lzip (1.22 -> 1.23)
  openssl-1_1
  python-openpyxl (3.0.7 -> 3.0.9)
  python-pandas (1.4.0 -> 1.4.1)
  rubygem-faraday (1.3.0 -> 2.1.0)
  rubygem-faraday-net_http (1.0.1 -> 2.0.1)
  rubygem-pdf-reader (2.9.0 -> 2.9.1)
  spice-gtk (0.39 -> 0.40)
  sushi
  vim (8.2.4286 -> 8.2.4375)
  yast2-packager (4.4.22 -> 4.4.23)
  yast2-trans (84.87.20220206.a953ff83bc -> 84.87.20220211.620fde21a3)

=== Details ===

==== autofs ====

- Add autofs-Test-TCP-request-correctly-in-nfs_get_info.patch
  Fix bug when rpcbind not visible
  (bsc#1195587 bsc#1195595)

==== brltty ====
Subpackages: brltty-driver-at-spi2 brltty-driver-brlapi brltty-driver-speech-dispatcher brltty-driver-xwindow brltty-lang libbrlapi0_8 python3-brlapi system-user-brltty xbrlapi

- Pass --with-tables-directory=%{_datadir}/%{name} to configure: do
  not install the tables to /etc, as they are not supposed to be
  modified by local admins.

==== grub2 ====
Subpackages: grub2-i386-pc grub2-snapper-plugin grub2-systemd-sleep-plugin grub2-x86_64-efi grub2-x86_64-xen

- Set grub2-check-default shebang to "#!/bin/bash", as the the code
  uses many instructions which are undefined for a POSIX sh.
  (boo#1195794).

==== gzip ====

- add conflicts/provides for alternative(gzip)
- modernize spec file

==== libnetfilter_conntrack ====
Version update (1.0.8 -> 1.0.9)

- Update to release 1.0.9
  * This release comes with the new nfct_nlmsg_build_filter()
    function that allows to add metadata for kernel-side
    filtering of conntrack entries during conntrack table dump.
  * The nfct_query() API supports the new NFCT_Q_FLUSH_FILTER
    argument, it allows to flush only IPv6 or IPv4 entries from
    the connection tracking table.

==== libqt5-qtbase ====
Subpackages: libQt5Concurrent5 libQt5Core5 libQt5DBus5 libQt5Gui5 libQt5Network5 libQt5OpenGL5 libQt5PrintSupport5 libQt5Sql5 libQt5Sql5-mysql libQt5Sql5-sqlite libQt5Test5 libQt5Widgets5 libQt5Xml5 libqt5-qtbase-platformtheme-gtk3

- Update patch after it was merged to dev upstream and fix another
  place missed in the first version (boo#1195386, CVE-2022-23853):
  * 0001-QProcess-Unix-ensure-we-don-t-accidentally-execute-s.patch

==== lzip ====
Version update (1.22 -> 1.23)

- Update to release 1.23
  * Decompression time has been reduced by 5-12% depending on the
    file.
  * In case of error in a numerical argument to a command line
    option, lzip now shows the name of the option and the range
    of valid values.

==== openssl-1_1 ====
Subpackages: libopenssl1_1 libopenssl1_1-32bit libopenssl1_1-hmac

- Pull libopenssl-1_1 when updating openssl-1_1 with the same
  version. [bsc#1195792]
- FIPS: Fix function and reason error codes [bsc#1182959]
  * Add openssl-1_1-FIPS-fix-error-reason-codes.patch

==== python-openpyxl ====
Version update (3.0.7 -> 3.0.9)

- specfile:
  * update copyright year
  * be a bit more specific in the %files section
- update to version 3.0.9:
  * Bugfixes
    + #1284 Ignore blank ignored in existing Data Validations
    + #1539 Add support for cell protection for merged cell ranges
    + #1645 Timezone-aware datetimes raise an Exception
    + #1666 Improved normalisation of chart series
    + #1670 Catch OverflowError for out of range datetimes
    + #1708 Alignment.relativeIndent can be negative
    + #1736 Incorrect default value groupBy attribute
- changes from version 3.0.8:
  * Deleted because it contained breaking changes from 3.1

==== python-pandas ====
Version update (1.4.0 -> 1.4.1)

- update to version 1.4.1:
  * Fixed regressions
    + Regression in Series.mask() with inplace=True and PeriodDtype
    and an incompatible other coercing to a common dtype instead of
    raising (GH45546)
    + Regression in assert_frame_equal() not respecting
    check_flags=False (GH45554)
    + Regression in DataFrame.loc() raising ValueError when indexing
    (getting values) on a MultiIndex with one level (GH45779)
    + Regression in Series.fillna() with downcast=False incorrectly
    downcasting object dtype (GH45603)
    + Regression in api.types.is_bool_dtype() raising an
    AttributeError when evaluating a categorical Series (GH45615)
    + Regression in DataFrame.iat() setting values leading to not
    propagating correctly in subsequent lookups (GH45684)
    + Regression when setting values with DataFrame.loc() losing Index
    name if DataFrame was empty before (GH45621)
    + Regression in join() with overlapping IntervalIndex raising an
    InvalidIndexError (GH45661)
    + Regression when setting values with Series.loc() raising with
    all False indexer and Series on the right hand side (GH45778)
    + Regression in read_sql() with a DBAPI2 connection that is not an
    instance of sqlite3.Connection incorrectly requiring SQLAlchemy
    be installed (GH45660)
    + Regression in DateOffset when constructing with an integer
    argument with no keywords (e.g. pd.DateOffset(n)) would behave
    like datetime.timedelta(days=0) (GH45643, GH45890)
  * Bug fixes
    + Fixed segfault in DataFrame.to_json() when dumping tz-aware
    datetimes in Python 3.10 (GH42130)
    + Stopped emitting unnecessary FutureWarning in
    DataFrame.sort_values() with sparse columns (GH45618)
    + Fixed window aggregations in DataFrame.rolling() and
    Series.rolling() to skip over unused elements (GH45647)
    + Fixed builtin highlighters in Styler to be responsive to NA with
    nullable dtypes (GH45804)
    + Bug in apply() with axis=1 raising an erroneous ValueError
    (GH45912)
  * Other
    + Reverted performance speedup of DataFrame.corr() for
    method=pearson to fix precision regression (GH45640, GH42761)

==== rubygem-faraday ====
Version update (1.3.0 -> 2.1.0)

updated to version 2.1.0
  see installed CHANGELOG.md
  [#]# [1.8.0](https://github.com/lostisland/faraday/releases/tag/v1.8.0) (2021-09-18)
  [#]## Features
  * Backport authorization procs (#1322, @jarl-dk)
  [#]# [v1.7.0](https://github.com/lostisland/faraday/releases/tag/v1.7.0) (2021-08-09)
  [#]## Features
  * Add strict_mode to Test::Stubs (#1298, @yykamei)
  [#]# [v1.6.0](https://github.com/lostisland/faraday/releases/tag/v1.6.0) (2021-08-01)
  [#]## Misc
  * Use external Rack adapter (#1296, @iMacTia)
  [#]# [v1.5.1](https://github.com/lostisland/faraday/releases/tag/v1.5.1) (2021-07-11)
  [#]## Fixes
  * Fix JRuby incompatibility after moving out EM adapters (#1294, @ahorek)
  [#]## Documentation
  * Update YARD to follow RackBuilder (#1292, @kachick)
  [#]# [v1.5.0](https://github.com/lostisland/faraday/releases/tag/v1.5.0) (2021-07-04)
  [#]## Misc
  * Use external httpclient adapter (#1289, @iMacTia)
  * Use external patron adapter (#1290, @iMacTia)
  [#]# [v1.4.3](https://github.com/lostisland/faraday/releases/tag/v1.4.3) (2021-06-24)
  [#]## Fixes
  * Silence warning (#1286, @gurgeous)
  * Always dup url_prefix in Connection#build_exclusive_url (#1288, @alexeyds)
  [#]# [v1.4.2](https://github.com/lostisland/faraday/releases/tag/v1.4.2) (2021-05-22)
  [#]## Fixes
  * Add proxy setting when url_prefix is changed (#1276, @ci)
  * Default proxy scheme to http:// if necessary, fixes #1282 (#1283, @gurgeous)
  [#]## Documentation
  * Improve introduction page (#1273, @gurgeous)
  * Docs: add more middleware examples (#1277, @gurgeous)
  [#]## Misc
  * Use external `em_http` and `em_synchrony` adapters (#1274, @iMacTia)
  [#]# [v1.4.1](https://github.com/lostisland/faraday/releases/tag/v1.4.1) (2021-04-18)
  [#]## Fixes
  * Fix dependencies from external adapter gems (#1269, @iMacTia)
  [#]# [v1.4.0](https://github.com/lostisland/faraday/releases/tag/v1.4.0) (2021-04-16)
  [#]## Highlights
  With this release, we continue the work of gradually moving out adapters into their own gems ?
  Thanks to @MikeRogers0 for helping the Faraday team in progressing with this quest ?
  And thanks to @olleolleolle efforts, Faraday is becoming more inclusive than ever ?
  Faraday's `master` branch has been renamed into `main`, we have an official policy on inclusive language and even a rubocop plugin to check for non-inclusive words ??!
  Checkout the "Misc" section below for more details ? !
  [#]## Fixes
  * Fix NoMethodError undefined method 'coverage' (#1255, @Maroo-b)
  [#]## Documentation
  * Some docs on EventMachine adapters. (#1232, @damau)
  * CONTRIBUTING: Fix grammar and layout (#1261, @olleolleolle)
  [#]## Misc
  * Replacing Net::HTTP::Persistent with faraday-net_http_persistent (#1250, @MikeRogers0)
  * CI: Configure the regenerated Coveralls token (#1256, @olleolleolle)
  * Replace Excon adapter with Faraday::Excon gem, and fix autoloading issue with Faraday::NetHttpPersistent (#1257, @iMacTia)
  * Drop CodeClimate (#1259, @olleolleolle)
  * CI: Rename default branch to main (#1263, @olleolleolle)
  * Drop RDoc support file .document (#1264, @olleolleolle, @iMacTia)
  * CONTRIBUTING: add a policy on inclusive language (#1262, @olleolleolle)
  * Add rubocop-inclusivity (#1267, @olleolleolle, @iMacTia)
  [#]# [v1.3.1](https://github.com/lostisland/faraday/releases/tag/v1.3.1) (2021-04-16)
  [#]## Fixes
  * Escape colon in path segment (#1237, @yarafan)
  * Handle IPv6 address String on Faraday::Connection#proxy_from_env (#1252, @cosmo0920)
  [#]## Documentation
  * Fix broken Rubydoc.info links (#1236, @nickcampbell18)
  * Add httpx to list of external adapters (#1246, @HoneyryderChuck)
  [#]## Misc
  * Refactor CI to remove duplicated line (#1230, @tricknotes)
  * Gemspec: Pick a good ruby2_keywords release (#1241, @olleolleolle)
- updated to version 1.8.0
  * Backport authorization procs (#1322, @jarl-dk)
- updated to version 1.7.0
  [#]# [v1.7.0](https://github.com/lostisland/faraday/releases/tag/v1.7.0) (2021-08-09)
  [#]## Features
  * Add strict_mode to Test::Stubs (#1298, @yykamei)
  [#]# [v1.6.0](https://github.com/lostisland/faraday/releases/tag/v1.6.0) (2021-08-01)
  [#]## Misc
  * Use external Rack adapter (#1296, @iMacTia)
- updated to version 1.5.1
  [#] Fixes
  * Fix JRuby incompatibility after moving out EM adapters (#1294, @ahorek)
  [#] Documentation
  * Update YARD to follow RackBuilder (#1292, @kachick)
- updated to version 1.5.0
  [#] Misc
  * Use external httpclient adapter (#1289, @iMacTia)
  * Use external patron adapter (#1290, @iMacTia)
updated to version 1.4.3
  see installed CHANGELOG.md
  [#]# [v1.3.0](https://github.com/lostisland/faraday/releases/tag/v1.3.0) (2020-12-31)
  [#]## Highlights
  Faraday v1.3.0 is the first release to officially support Ruby 3.0 in the CI pipeline ? ?!
  This is also the first release with a previously "included" adapter (Net::HTTP) being isolated into a [separate gem](https://github.com/lostisland/faraday-net_http) ?!
  The new adapter is added to Faraday as a dependency for now, so that means full backwards-compatibility, but just to be safe be careful when upgrading!
  This is a huge step towards are Faraday v2.0 objective of pushing adapters and middleware into separate gems.
  Many thanks to the Faraday Team, @JanDintel and everyone who attended the [ROSS Conf remote event](https://www.rossconf.io/event/remote/)
  [#]## Features
  * Improves consistency with Faraday::Error and Faraday::RaiseError (#1229, @qsona, @iMacTia)
  [#]## Fixes
  * Don't assign to global ::Timer (#1227, @bpo)
  [#]## Documentation
  * CHANGELOG: add releases after 1.0 (#1225, @olleolleolle)
  * Improves retry middleware documentation. (#1228, @iMacTia)
  [#]## Misc
  * Move out Net::HTTP adapter (#1222, @JanDintel, @iMacTia)
  * Adds Ruby 3.0 to CI Matrix (#1226, @iMacTia)

==== rubygem-faraday-net_http ====
Version update (1.0.1 -> 2.0.1)

updated to version 2.0.1
  no changelog found

==== rubygem-pdf-reader ====
Version update (2.9.0 -> 2.9.1)

updated to version 2.9.1
  see installed CHANGELOG
  v2.9.1 (4th February 2022)
  - Fix exception in Page#walk introduced in 2.9.0 (http://github.com/yob/pdf-reader/pull/442)
  - Other small bug fixes

==== spice-gtk ====
Version update (0.39 -> 0.40)
Subpackages: libspice-client-glib-2_0-8 libspice-client-glib-helper libspice-client-gtk-3_0-5 typelib-1_0-SpiceClientGlib-2_0 typelib-1_0-SpiceClientGtk-3_0

- Update to version 0.40. Features and Issues addressed:
  * Fix usbid parsing regression introduced in !78 (v0.39)
  * !91 - Fix crash with division by 0 [rhbz#1941627]
  * !97 - #157 - Fix detecting pyparsing module
  * Add API to allocate SpiceUsbDevice (for Android)
    spice_usb_device_manager_allocate_device_for_file_descriptor()
  * !93 - #137 - add support for TLS-SNI
  * !92 - Support USB emulation for MacOS
  * !96 - Support side mouse buttons
  * !85 - #75 - add spice_display_keyboard_ungrab()
  * !81 - GL fix warning fix and improve scanout logic
  * !84 - Fix leak and warnings in gstaudio and spicy
  * !86, !87, !90 - Several introspection fixes and improvements
- Drop patches contained in new tarball
  support-new-pyparsing.patch

==== sushi ====
Subpackages: sushi-lang

- Add typelib\\(LOKDocView\\) global requires exclude: We do not
  want to mandate libreoffice install just for the file preview
  funtion. If libreoffice is installed, the preview in will
  function as expected.
- Following the above, add (typelib(LOKDocView) if libreoffice)
  Requires: Pull in the needed libreoffice glue if libreoffice is
  installed.
- Pass explicit wayland=enabled and X11=enabled to meson, ensure we
  build support for both (we already have dependencies in place).

==== vim ====
Version update (8.2.4286 -> 8.2.4375)
Subpackages: gvim vim-data vim-data-common

-  Updated to version 8.2.4375, fixes the following problems
  * Vim9: strict type checking after copy() and deepcopy().
  * Cannot assign empty list with any list type to variable with specific
  list type.
  * Preprocessor indents are inconsistent.
  * Warnings reported by MSVC.
  * Error number used twice.
  * Test fails.
  * Vim9: when copying a list it gets type list<any> even when the original
  list did not have a type.
  * Vim9: concatenating two lists may result in wrong type.
  * Vim9: not all code covered by tests.
  * Vim9: not all code covered by tests.
  * Divide by zero with huge tabstop value.
  * SafeState autocommand interferes with debugging.
  * Cannot build tiny version. (Tony Mechelynck)
  * Vim9: type error for copy of dict.
  * Vim9: return type of getline() is too strict.
  * A few messages should not be translated.
  * Vim9: slice() makes a copy but doesn't change the type.
  * Tex filetype detection fails.
  * No test for fixed perl filetype check.
  * A few more messages should not be translated.
  * Vim9: cannot list autoload function.
  * Vim9: crash when using a partial in the wrong context.
  * Vim9: constant list and dict get a declaration type other than "any".
  * Vim9: changing script variable type not caught at compile time.
  * No error for using :vim9script in a :def function.
  * Vim9: cannot change type of list after making a slice.
  * Test fails where lines are skipped.
  * Put in Visual mode not fully tested.
  * Various comment and indent mistakes, returning wrong zero.
  * :put does not work properly in compiled function. (John Beckett)
  * Athena and Motif: when maximized scrollbar position is wrong.
  * Vim9: crash when using a funcref to a closure.
  * Vim9: crash when using funcref with closure.
  * Vim9: nested function name can start with "_".
  * Vim9: script-local function name can start with "_".
  * 'wildmenu' only shows few matches.
  * "o" and "O" copying comment not sufficiently tested.
  * May end up with no current buffer.
  * Command line complete matches cleard when typing character. (Dominique
  Pellé)
  * No support for end line number and column in 'errorformat'.
  * Vim9: no error if script imports itself.
  * Vim9: no test for existing script variable in block.
  * Vim9: incomplete test for existing script variable in block.
  * cstack not always passed to where it is needed.
  * Command line popup menu not positioned correctly.
  * No autocommand event triggered before changing directory. (Ronnie Magatti)
  * Using :filter for :scriptnames does not work. (Ben Jackson)
  * Part of condition is always true.
  * An error from an expression mapping messes up the display.
  * CTRL-A does not work properly with the cmdline popup menu.
  * Command line not redrawn when finishing popup menu and the screen has
  scrolled up.
  * CI will soon switch to other windows version.
  * When reloading not all properties are detected.
  * <amatch> is expanded like a file name for DirChangedPre.
  * A custom statusline may cause Esc to work like Enter on the command line
  when the popup menu is displayed.
  * In some build setups UNUSED is not defined.
  * "legacy exe cmd" does not do what one would expect.
  * FEAT_GUI_ENABLED defined but never used.
  * No coverage is measured on MS-Windows CI.
  * ReScript files are not recognized.
  * CI does not use the latest Lua and Python.
  * Dynamic loading of libsodium not handled properly.
  * Unnecessary call to check_colorcolumn().
  * Command line completion functions are very long.
  * sticky command modifiers are too sticky.
  * Vim9: line number of exception is not set.
  * crash when repeatedly using :retab.
  * Vim9: allowing use of "s:" leads to inconsistencies.
  * Vim9: some tests fail.
  * :retab may allocate too much memory.
  * sticky command modifiers are too sticky.
  * Not enough tests for command line completion.
  * Calling in_vim9script() multiple times.
  * Amiga: a few compiler warnings.
  * Redundant #ifdef argument.
  * MS-Windows: libsodium.dll not included with the installer.
  * Vim9: can create a script variable from a legacy function.
  * Filetype detection from file contents is in legacy script.
  * Expression test fails.
  * Unreachable code.
  * ctx_imports is not used.

==== yast2-packager ====
Version update (4.4.22 -> 4.4.23)

- Remove duplicate repositories created at the end of installation
  (repositories which are stored in the *.repo_1 files, bsc#1194546)
- 4.4.23

==== yast2-trans ====
Version update (84.87.20220206.a953ff83bc -> 84.87.20220211.620fde21a3)
Subpackages: yast2-trans-af yast2-trans-ar yast2-trans-bg yast2-trans-bn yast2-trans-bs yast2-trans-ca yast2-trans-cs yast2-trans-cy yast2-trans-da yast2-trans-de yast2-trans-el yast2-trans-en_GB yast2-trans-es yast2-trans-et yast2-trans-fa yast2-trans-fi yast2-trans-fr yast2-trans-gl yast2-trans-gu yast2-trans-hi yast2-trans-hr yast2-trans-hu yast2-trans-id yast2-trans-it yast2-trans-ja yast2-trans-jv yast2-trans-ka yast2-trans-km yast2-trans-ko yast2-trans-lo yast2-trans-lt yast2-trans-mk yast2-trans-mr yast2-trans-nb yast2-trans-nl yast2-trans-pa yast2-trans-pl yast2-trans-pt yast2-trans-pt_BR yast2-trans-ro yast2-trans-ru yast2-trans-si yast2-trans-sk yast2-trans-sl yast2-trans-sr yast2-trans-sv yast2-trans-ta yast2-trans-th yast2-trans-tr yast2-trans-uk yast2-trans-vi yast2-trans-wa yast2-trans-xh yast2-trans-zh_CN yast2-trans-zh_TW yast2-trans-zu

- Update to version 84.87.20220211.620fde21a3:
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Dutch)
  * Translated using Weblate (Catalan)
  * Translated using Weblate (Dutch)
  * Translated using Weblate (Catalan)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Japanese)
  * New POT for text domain 'storage'.
  * New POT for text domain 's390'.
  * New POT for text domain 'dns-server'.
  * Translated using Weblate (Turkish)
  * New POT for text domain 'packager'.
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Dutch)
  * Translated using Weblate (Catalan)
  * Translated using Weblate (Japanese)
  * New POT for text domain 'nfs'.
  * New POT for text domain 'network'.