Packages changed:
  ImageMagick (7.1.0.17 -> 7.1.0.19)
  Mesa (21.3.1 -> 21.3.3)
  Mesa-drivers (21.3.1 -> 21.3.3)
  amavisd-new
  babeltrace
  createrepo_c
  double-conversion (3.1.6 -> 3.1.7)
  fmt (8.0.1 -> 8.1.0)
  k4dirstat (3.3.0 -> 3.4.0)
  kdump (0.9.1 -> 0.9.2)
  lapack
  libeconf (0.4.2+git20211111.c7a2c52 -> 0.4.4+git20220104.962774f)
  libjcat (0.1.8 -> 0.1.9)
  libkolabxml
  libsndfile
  lightdm
  mariadb
  ovmf
  perl-JSON (4.03 -> 4.04)
  perl-URI-cpan (1.007 -> 1.008)
  pfstools
  publicsuffix (20211213 -> 20211230)
  python-prettytable (2.4.0 -> 2.5.0)
  rtkit
  sg3_utils (1.47 -> 1.47+2.388b767)
  squashfs (4.4 -> 4.5)
  supermin
  suse-module-tools (16.0.17 -> 16.0.18)
  tree (1.8.0 -> 2.0.1)
  vim (8.2.3863 -> 8.2.3995)
  xorg-x11-server (21.1.2 -> 21.1.3)
  xscreensaver
  yast2-configuration-management (4.4.1 -> 4.4.2)
  yast2-security (4.4.3 -> 4.4.4)
  yast2-storage-ng (4.4.28 -> 4.4.30)
  yast2-trans (84.87.20211227.623da84d84 -> 84.87.20220102.99430aa97b)
  zchunk

=== Details ===

==== ImageMagick ====
Version update (7.1.0.17 -> 7.1.0.19)
Subpackages: ImageMagick-config-7-SUSE ImageMagick-extra libMagickCore-7_Q16HDRI10 libMagickWand-7_Q16HDRI10

- update to 7.1.0.19:
  * support -integral option.
  * possible DoS for certain SVG constructs (reference
    https://github.com/ImageMagick/ImageMagick/issues/4626).
- update to 7.1.0.18:
  * support face index for font collections, e.g. msgothic.ttc[1].
  * Improved adjustment of page offset when resizing an image.

==== Mesa ====
Version update (21.3.1 -> 21.3.3)
Subpackages: Mesa-dri-devel Mesa-libEGL1 Mesa-libGL1 Mesa-libglapi0 libgbm1

- update to 21.3.3
  * Bug fixes
  * Assassin?s Creed Syndicate crashes with Mesa 21.3.0+ ACO
  * [21.3 regression] swr: Build failure with MSVC
  * anv: dEQP-VK.graphicsfuzz.spv-stable-pillars-volatile-nontemporal-store fails

==== Mesa-drivers ====
Version update (21.3.1 -> 21.3.3)
Subpackages: Mesa-dri Mesa-gallium Mesa-libva libvdpau_r300 libvdpau_r600 libvdpau_radeonsi libvulkan_intel libvulkan_radeon libxatracker2

- update to 21.3.3
  * Bug fixes
  * Assassin?s Creed Syndicate crashes with Mesa 21.3.0+ ACO
  * [21.3 regression] swr: Build failure with MSVC
  * anv: dEQP-VK.graphicsfuzz.spv-stable-pillars-volatile-nontemporal-store fails

==== amavisd-new ====
Subpackages: amavisd-new-docs

- amavisd-new should require packets perl-IO-stringy and perl-Net-LibIDN
  (bsc#1193291)

==== babeltrace ====

- reenable babeltrace on armv6/v7 (switch to excludearch)

==== createrepo_c ====
Subpackages: libcreaterepo_c0 python3-createrepo_c

- python3-nose is not required for the testsuite, update BuildRequires
  to the actual package used, python3-setuptools.

==== double-conversion ====
Version update (3.1.6 -> 3.1.7)

- update to 3.1.7:
  * Reintroduce macros, if DOUBLE_CONVERSION_NON_PREFIXED_MACROS is set
  * Also add support for Synopsys ARC64 architecture

==== fmt ====
Version update (8.0.1 -> 8.1.0)

- Update to version 8.1.0
  * Optimized chrono formatting.
    + Processing of some specifiers such as %z and %Y is now up
    to 10-20 times faster, for example on GCC 11 with
    libstdc++.
  * Implemented subsecond formatting for chrono durations.
  * Fixed handling of precision 0 when formatting chrono
    durations.
  * Fixed an overflow on invalid inputs in the tm formatter.
  * Added fmt::group_digits that formats integers with a
    non-localized digit separator (comma) for groups of three
    digits.
  * Added support for faint, conceal, reverse and blink text
    styles.
  * Added experimental support for compile-time floating point
    formatting.
  * Added UDL-based named argument support to compile-time
    format string checks.
  * Implemented escaping of string range elements.
  * Switched to JSON-like representation of maps and sets for
    consistency with Python's str.format.
  * Extended fmt::join to support C++20-only ranges.
  * Optimized handling of non-const-iterable ranges and
    implemented initial support for non-const-formattable types.
  * Disabled implicit conversions of scoped enums to integers
    that was accidentally introduced in earlier versions.
  * Deprecated implicit conversion of [const] signed char* and
    [const] unsigned char* to C strings.
  * Deprecated _format, a legacy UDL-based format API.
  * Marked format, formatted_size and to_string as [[nodiscard]].
  * Added missing diagnostic when trying to format function and
    member pointers as well as objects convertible to pointers
    which is explicitly disallowed.
  * Optimized writing to a contiguous buffer with format_to_n.
  * Optimized writing to non-char buffers.
  * Decimal point is now localized when using the L specifier.
  * Improved floating point formatter implementation.
  * Fixed handling of very large precision in fixed format.
  * Made a table of cached powers used in FP formatting static.
  * Resolved a lookup ambiguity with C++20 format-related
    functions due to ADL.
  * Removed unnecessary inline namespace qualification.
  * Implemented argument forwarding in format_to_n.
  * Fixed handling of implicit conversions in fmt::to_string and
    format string compilation.
  * Changed the default access mode of files created by
    fmt::output_file to -rw-r--r-- for consistency with fopen.
  * Make fmt::ostream::flush public.
  * Improved C++14/17 attribute detection.
  * Improved documentation.
  * Improved fuzzers and added a fuzzer for chrono timepoint
    formatting.
  * Added the FMT_SYSTEM_HEADERS CMake option setting which
    marks {fmt}'s headers as system. It can be used to suppress
    warnings.
  * Added the Bazel build system support.
  * Improved build configuration and tests.
  * Fixed various warnings and compilation issues.

==== k4dirstat ====
Version update (3.3.0 -> 3.4.0)
Subpackages: k4dirstat-lang

- Update to 3.4.0
  * Refresh tree after deleting a file
  * Count directory sizes as 0 if excluded
  * Fix a crash when unfolding a empty <Files> folder
  * Updated Dutch translation
  * Always save the allocated size to cache files and correct
    saved size of hard links
  * Display size of over-allocated files properly
  * Use allocated size to compute folder size recursively
    (i.e. no longer under estimate folders with many small files).

==== kdump ====
Version update (0.9.1 -> 0.9.2)

- kdump-0.9.2-mkdumprd-properly-pass-compression-params.patch: Fix
  malformation in passing Dracut compression parameters in mkdumprd
  (bsc#1193765).
- Refresh existing patches.
- Sync with SLE15-SP4 changelog. These patches were never applied
  to Factory:
  * kdump-avoid-endless-loop-EAI_AGAIN.patch
  * kdump-calibrate-Add-LUKS2-Argon2-requirements-to-the-reser.patch
  * kdump-calibrate-Fix-kernel-command-line-parsing.patch
  * kdump-do-not-add-rd.neednet.patch
  * kdump-Do-not-list-all-block-devices-if-no-block-devices-ar.patch
  * kdump-ensure-initrd.target.wants-directory.patch
  * kdump-Enumerate-all-BTRFS-devices-for-btrfs-mount-points.patch
  * kdump-Implement-KString-isHexNumber.patch
  * kdump-install-etc-resolv.conf-using-resolved-path.patch
  * kdump-Mount-and-device-resolution-using-libmount-and-lsblk.patch
  * kdump-remove-console-hvc0-from-commandline.patch
  * kdump-set-serial-console-from-Xen-cmdline.patch
- Update to 0.9.2
  * Isolate fadump initrd within the default one (jsc#SLE-18272)
  * Bug fixes
  * Code cleanups
- Remove patches that have been upstreamed:
  * kdump-mounts.cc-Include-sys-ioctl.h.patch
  * kdump-Add-bootdev-to-dracut-command-line.patch
  * kdump-do-not-iterate-past-end-of-string.patch
  * kdump-fix-incorrect-exit-code-checking.patch
  * kdump-avoid-endless-loop-on-EAI_AGAIN.patch
  * kdump-install-real-resolv.conf.patch
  * kdump-Store-kdump-initrd-in-kernel-image-path.patch
- Remove patches that have been solved differently:
  * kdump-on-error-option-yesno.patch

==== lapack ====
Subpackages: libblas3 libcblas3 liblapack3

- Add Fix-out-of-bounds-read.patch to fix out of bound reads when
  user input is not validated properly.  (bsc#1193562, CVE-2021-4048)

==== libeconf ====
Version update (0.4.2+git20211111.c7a2c52 -> 0.4.4+git20220104.962774f)
Subpackages: libeconf0 libeconf0-32bit

- Update to version 0.4.4+git20220104.962774f:
  * Fixed i586 build (#158)
- Update to version 0.4.2+git20220104.5dfd69d:
  * Reading numbers with different bases (e.g. oktal) (bsc#1193632) (#157)

==== libjcat ====
Version update (0.1.8 -> 0.1.9)

- update to 0.1.9:
  * Set which backends are supported in the pkgconfig file
  * Use -Dcli=false to reduce the install size
  * Return an error if we try to self-sign no bytes of data
  * Show a more accurate output when not all engines are enabled

==== libkolabxml ====

- Strip the URL from 'Source:'. The download link is dead.
- Run xsd without ASLR to workaround boo#1060506

==== libsndfile ====

- Fix heap buffer overflow in flac_buffer_copy (CVE-2021-4156,
  bsc#1194006):
  libsndfile-CVE-2021-4156.patch

==== lightdm ====
Subpackages: liblightdm-gobject-1-0 lightdm-lang

- Change to systemd-sysusers

==== mariadb ====
Subpackages: libmariadbd19 mariadb-client mariadb-errormessages

- Build mariadb-galera on SLE
- Add dependency on galera-4 for mariadb-galera
- Remove old constraints for mariadb-galera

==== ovmf ====
Subpackages: qemu-ovmf-x86_64 qemu-uefi-aarch64

- Modified gdb_uefi.py.in for python3 (bsc#1192126)
  - change 'long' to 'int'
  - using
    print ('
    instead of
    print "

==== perl-JSON ====
Version update (4.03 -> 4.04)

- updated to 4.04
  see /usr/share/doc/packages/perl-JSON/Changes
  4.04 2021-12-17
  - updated backportPP with JSON::PP 4.07

==== perl-URI-cpan ====
Version update (1.007 -> 1.008)

- updated to 1.008
  see /usr/share/doc/packages/perl-URI-cpan/Changes
  1.008     2021-12-15 15:53:55-05:00 America/New_York
  - fix prereqs to rely on URI, not the unindexed URI::_generic

==== pfstools ====
Subpackages: libpfs2 pfscalibration pfstmo

- Fix compilation error due to detected OOB access, add
  0001-Avoid-out-of-bounds-access-for-monochrome-images-in-.patch
- Fix compilation with CMake >= 3.22, add
  0001-Replace-deprecated-removed-GLUT_glut_LIBRARY-with-GL.patch
- Reenable OpenEXR with OpenEXR >= 3.x detection fix, add
  0001-Prefer-upstream-CMake-Config-Mode-files-for-OpenEXR.patch

==== publicsuffix ====
Version update (20211213 -> 20211230)

- Update to version 20211230:
  * util: gTLD data autopull updates for 2021-12-30T15:13:57 UTC (#1494)
  * util: gTLD data autopull updates for 2021-12-22T15:14:13 UTC (#1492)

==== python-prettytable ====
Version update (2.4.0 -> 2.5.0)

- update to 2.5.0:
  * Add Single Border table style

==== rtkit ====

- Change to using systemd-sysusers

==== sg3_utils ====
Version update (1.47 -> 1.47+2.388b767)
Subpackages: libsgutils2-1_47-2

- Update to version 1.47+2.388b767:
  * rescan-scsi-bus.sh: apply fix for '-r' (boo#1194293)
  * _service: use openSUSE github repo again (with cherry-picks
    from upstream)
  * spec file: suppress commit ID in library version

==== squashfs ====
Version update (4.4 -> 4.5)

- update to 4.5:
  * Mksquashfs now supports "Actions".
  * New sqfstar command which will create a Squashfs image from a tar archive.
  * Tar style handling of source pathnames in Mksquashfs.
  * Cpio style handling of source pathnames in Mksquashfs.
  * New option to throttle the amount of CPU and I/O.
  * Mksquashfs now allows no source directory to be specified.
  * New Pseudo file "R" definition which allows a Regular file
    o be created with data stored within the Pseudo file.
  * Symbolic links are now followed in extract files
  * Unsquashfs now supports "exclude" files.
  * Max depth traversal option added.
  * Unsquashfs can now output a "Pseudo file" representing the
    input Squashfs filesystem.
  * New -one-file-system option in Mksquashfs.
  * New -no-hardlinks option in Mksquashfs.
  * Exit code in Unsquashfs changed to distinguish between
    non-fatal errors (exit 2), and fatal errors (exit 1).
  * Xattr id count added in Unsquashfs "-stat" output.
  * Unsquashfs "write outside directory" exploit fixed.
  * Error handling in Unsquashfs writer thread fixed.
  * Fix failure to truncate destination if appending aborted.
  * Prevent Mksquashfs reading the destination file.

==== supermin ====

- Add initrd_support_ztd-compressed_modules.patch:
  backport of 4306a131c6cd to add support of zstd compressed kernel
  modules.

==== suse-module-tools ====
Version update (16.0.17 -> 16.0.18)

- Update to version 16.0.18:
  * cdrom: Disable autoclose by default (boo#1165047).
  * Make regenerate-initrd-posttrans compatible with Dracut's
    UEFI mode (unified kernel image)

==== tree ====
Version update (1.8.0 -> 2.0.1)

- tree 2.0.1:
  * Make patterns ending in '/' match directories (but not files)
    for -I / -P, should also fix issues with --gitignore as well
  - Fix --gitignore not matching files relative to the path of the
    .gitignore
- tree 2.0.0:
  * Simplified code
  * Adds --info to print information about files/directories from
    information found in .info files
  * In HTML output, comments show as mouse over tooltips
  * Output un-indented JSON on file descriptor 3 ("stddata")
    automatically if file descriptor 3 is present
  * Always HTML escape filenames in HTML output even when -C is used
  * Return a non-zero exit status if there is a failure to open any directory.
  * Added --gitignore option to filter out files specified by
    .gitignore files. (also reads $GIT_DIR/info/exclude if present.)
  * To facilitate gitignore, adds support for ** on pattern matching
    to allow /**/ to match a single /
  * Now also supports multiple -I and -P instances
  * Now prints meta data for the top level directory as well.
  * Properly sort --fromfile input
  * Make tree colorization use reset (rs code in dir_colors,)
    not normal color when resetting attributes
  * Honor -n (no color) even if the CLICOLOR_FORCE environment
    variable is set
  * Fix --sort option to not require =
  * Defer sorting for --du until the entire sub-directory tree has
    been processed.
  * Fix JSON string escaping such that it is not using the HTML
    escaping
  * Add --filesfirst option
  * XML/HTML/JSON output needs to be mutually exclusive, last
    command line switch wins
- drop tree-makefile.patch

==== vim ====
Version update (8.2.3863 -> 8.2.3995)
Subpackages: gvim vim-data vim-data-common

- Updated to version 8.2.3995, fixes the following problems
- fixed boo#1194219
  * Various build flags accidentally enabled.
  * Cannot disable requesting key codes from xterm.
  * Vim9: compiler complains about using "try" as a struct member.
  * Vim9: type checking global variables is inconsistent.
  * Implementation of some list functions too complicated.
  * Vim9: function test fails.
  * Vim9: type checking for "any" is inconsistent.
  context menu. (Gabriel Dupras)
  * List.c contains code for dict and blob.
  * Vim9: finddir() and uniq() return types can be more specific.
  * go.mod files are not recognized.
  * Cannot highlight the number column for a sign.
  * gcc complains about buffer overrun.
  * 'cindent' does not recognize inline namespace.
  * Function does not abort after a type error in compare
  * Vim9: debugger tries to read more lines than there are.
  * getreg() and getregtype() contain dead code.
  * Solution filter files are not recognized.
  * More duplicated code in f_getreginfo().
  * Crash when switching to other regexp engine fails.
  * Crash when clearing the argument list while using it.
  * Arglist test fails.
  * Can define autocmd for every event by using "au!".
  * E1135 is used for two different errors.
  * The argument list may contain duplicates.
  * Duplicate code for translating script-local function name.
  * Vim9: type check for using v: variables is basic.
  * When modifyOtherKeys is used CTRL-C is not recognized.
  * Vim9: many local variables are initialized with an instruction.
  * Vim9: no proper type check for first argument of call().
  * Vim9: confusing error when using function() with a number.
  * Vim9: no test for nested function not available later.
  * Vim9: the second argument of map() and filter() is not checked at
  compile time.
  * Vim9: not sufficient testing for variable initialization.
  * Vim9: test for map() on string fails.
  * It is not easy to use a script-local function for an option.
  * Vim9: Cannot set 'cpo' in main .vimrc if using Vim9 script.
  * Vim9: double free with nested :def function.
  * "gM" does not count tabs as expected.
  * Vim9: skip expression type is not checked at compile time.
  * Dockerfile using prefix name not recognized.
  * Vim9 help still contains "under development" warnings.
  * Error messages are spread out.
  * Cannot use a script-local function for 'foldtext'.
  * Containerfile using prefix name not recognized.
  * When the compare function of sort() produces and error then sort()
  does not abort.
  * Vim9: type check for filter() does not accept unknown.
  * The ins_complete() function is much too long.
  * Help for expressions does not mention Vim9 syntax.
  * Various spelling mistakes in comments.
  * illegal memory access when completing with invalid bytes.
  * No error for passing an invalid line number to append().
  * The eval.txt help file is way too big.
  * Function list test fails.
  * Vim9: wrong argument for append() results in two errors.
  * Restoring directory after using another window is inefficient.
  * The way xdiff is used is inefficient.
  * Cannot build with dynamic Ruby 3.1.
  * Vim9: double free if a nested function has a line break in the argument
  list.
  * Vim9: no error if something follows :enddef in a nested function.
  * Diff mode confused by NUL bytes.
  * Build failure without the 'autochdir' option. (John Marriott)
  * Vim9: double free when using lambda.
  * Heredoc test fails.
  * Using unititialized variable.
  * getcmdline() argument has a misleading type.
  * Coverity reports a memory leak.
  * C line comment not formatted properly.
  * After ":cd" fails ":cd -" is incorrect.
  * Repeating line comment is undesired for "O" command.
  * CTRL-U in Insert mode does not fix the indent.
  * No proper test for maintaining change mark in diff mode.
  * Insert mode completion function is too long.
  * Line comment start is also found in a string.
  * Match highlight disappears when doing incsearch for ":s/pat".
  * SIGTSTP is not handled.
  * Coverity reports a possible memory leak.
  * Compiler warning from gcc for uninitialized variable.
  * Insert mode completion functions are too long.
  * Vim9: partial variable argument types are wrong, leading to a crash.
  * When an internal error makes Vim exit the error is not seen.
  * Unnecessary check for NULL pointer.
  * Vim9: failure with partial with unknown argument count.
  * Using freed memory with /\%V.
  * Going beyond the end of the line with /\%V.
  * Vim9: memory leak when text after a nested function.
  * First line not redrawn when adding lines to an empty buffer.
  * Insert completion code is too complicated.
  * Vim9: no error for shadowing if script var is declared later.
  * Duplicate assignment.
  * Build failure compiling xxd with "-std=c2x".
  * Error messages are spread out.
  * Build fails for missing error message.
  * Build failure with tiny and small features. (Tony Mechelynck)
  * Some common lisp and scheme files not recognized.
  * Vim9: no easy way to check if Vim9 script is supported.
  * When using feedkeys() abbreviations may be blocked.
  * Error messages are spread out.
  * Build failure.
  * Value of MAXCOL not available in Vim script.
  * Error messages are spread out.
  * Build fails.
  * Error messages are spread out.
  * Tiny build fails.
  * Vim9: LISTAPPEND instruction does not check for a locked list.
  * Error messages are spread out.
  * FEARG_LAST is never used. (Dominique Pellé)
  * Error messages are spread out.
  * Build error when using dynamycally loaded Python 3.
  * Vim9: the feature is not mentioned in the right places.
  * If 'operatorfunc' invokes an operator the remembered Visual mode may be
  changed. (Naohiro Ono)
  * Vim9: debugging a for loop doesn't stop before it starts.
  * Some lines of code not covered by tests.
  * Error messages are spread out.
  * Tiny build fails.
  * Some insert completion code is not tested.
  * Testing wrong operator.
  * Vim9: error when extending dict<any> with another type that it was
  initialized with.
  * Wrong local-additions in the help with language mix.
  * When recording a change in Select mode the first typed character appears
  twice.
  * Vim9: extend() complains about the type even when it was not declared.
  * Not all sshconfig files are detected as such.

==== xorg-x11-server ====
Version update (21.1.2 -> 21.1.3)
Subpackages: xorg-x11-server-Xvfb xorg-x11-server-extra xorg-x11-server-sdk

- u_xfree86-activate-GPU-screens-on-autobind.patch
  * Part of the original patch by Dave Airlie has landed
    078277e4d92f05a90c4715d61b89b9d9d38d68ea, this contains the
    remainder of what was in SUSE before Xorg 21.1.
    (github issue#1254, boo#1192751)
- Update to version 21.1.3
  * This release fixes several regressions since 1.20.x and 21.1.1
    + glx/dri: Filter out fbconfigs that don't have a supported pixmap format
    + xf86/logind: Fix compilation error when built without logind/platform bus
    + xf86/logind: fix missing call to vtenter if the platform device is not paused
    + Convert more funcs to use InternalEvent.
    + os: Try to discover the current seat with the XDG_SEAT var first

==== xscreensaver ====
Subpackages: xscreensaver-data xscreensaver-data-extra xscreensaver-lang

- Reenable PAM (boo#1194058).

==== yast2-configuration-management ====
Version update (4.4.1 -> 4.4.2)

- Adapt to ruby3.1 (bsc#1193192)
- 4.4.2

==== yast2-security ====
Version update (4.4.3 -> 4.4.4)

- Related to jsc#SLE-22069:
  - Autoyast LSM section: added "selectable" option to the section
  - Do not propose a default LSM configuration when it is declared
    as not configurable in the control file or AutoYaST
- 4.4.4

==== yast2-storage-ng ====
Version update (4.4.28 -> 4.4.30)

- Display LUKS2 configuration checkbox in the installer console
  (related to jsc#SLE-21308)
- 4.4.30
- Adapt for ruby 3.1 (bsc#1193192)
- 4.4.29
- Dropped test clients proposal_testing and partitioner_testing in
  favor of a more powerful one called storage_testing (related to
  fate#318196).

==== yast2-trans ====
Version update (84.87.20211227.623da84d84 -> 84.87.20220102.99430aa97b)
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.20220102.99430aa97b:
  * Translated using Weblate (Italian)
  * Translated using Weblate (Italian)
  * Translated using Weblate (Italian)
  * Translated using Weblate (Spanish)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Lithuanian)
  * Translated using Weblate (Lithuanian)
  * Translated using Weblate (Lithuanian)
  * Translated using Weblate (Arabic)
  * New POT for text domain 'installation'.
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Slovak)
  * New POT for text domain 'security'.
  * New POT for text domain 'installation'.
  * Translated using Weblate (Ukrainian)
  * Translated using Weblate (Ukrainian)
  * Translated using Weblate (Ukrainian)

==== zchunk ====

- add zstd-1.5.1.patch (gh#zchunk/zchunk/57)