Please note that this mail was generated by a script.
The described changes are computed based on the aarch64 DVD.
The full online repo contains too many changes to be listed here.

Please check the known defects of this snapshot before upgrading:
https://openqa.opensuse.org/tests/overview?distri=opensuse&groupid=3&version=Tumbleweed&build=20240610

Please do not reply to this email to report issues, rather file a bug
on bugzilla.opensuse.org. For more information on filing bugs please
see https://en.opensuse.org/openSUSE:Submitting_bug_reports

Packages changed:
  gnome-sudoku (46.1 -> 46.2)
  libopenmpt (0.7.7 -> 0.7.8)
  libqt5-qtwebengine
  openSUSE-release (20240609 -> 20240610)
  openblas_openmp (0.3.26 -> 0.3.27)
  openblas_pthreads (0.3.26 -> 0.3.27)
  openssh
  yast2-trans (84.87.20240603.1527509889 -> 84.87.20240610.1108c0c7e7)

=== Details ===

==== gnome-sudoku ====
Version update (46.1 -> 46.2)

- Update to version 46.2:
  + Fix memory leaks.
  + Fix print button not displaying.

==== libopenmpt ====
Version update (0.7.7 -> 0.7.8)

- Update to 0.7.8:
  * [Sec] Potential heap out-of-bounds read with malformed Dynamic
    Studio DSm files.
  * MED: Additional command pages can now be read.
  * MED: Echo DSP is now emulated.
  * AMS: Default channel panning was broken, using all-center
    panning instead of MOD-style panning.
  * STP: Correctly import volume slides where both nibbles are set.
  * MDL: Pitch slide depth was wrong since libopenmpt 0.6.0.
  * DTM: Fix pitch slide depth for samples with finetune.
  * DSm: Don’t import as Amiga module (and thus allow Amig
    a resampler to be enabled), as this PC format can easily
    exceed the Amiga frequency range.
  * DSm: Only the first 48 samples were ever read.
  * STM / STX: Don’t set channel panning.
    ScreamTracker 2 only outputs mono sound.
  * PSM: File header probing was stricter than actual file loader,
    rejecting manipulated files that would otherwise load fine.

==== libqt5-qtwebengine ====

- use bundled re2 (boo#1226119)

==== openSUSE-release ====
Version update (20240609 -> 20240610)
Subpackages: openSUSE-release-appliance-custom openSUSE-release-dvd

- automatically generated by openSUSE-release-tools/pkglistgen

==== openblas_openmp ====
Version update (0.3.26 -> 0.3.27)

- Update to version 0.3.27 (boo#1225869):
  General:
  * Added initial (generic) support for the `CSKY` architecture.
  * Capped the maximum number of threads used in `GEMM`, `GETRF`
    and `POTRF` to avoid creating underutilized or idle threads.
  * Sped up multithreaded `POTRF` on all platforms.
  * Added extension `openblas_set_num_threads_local()` that returns
    the previous thread count.
  * Re-evaluated the `SGEMV` and `DGEMV` load thresholds to avoid
    activating multithreading for too small workloads.
  * Improved the fallback code used when the precompiled number of
    threads is exceeded,  and made it callable multiple times
    during the lifetime of an instance.
  * Added CBLAS interfaces for the BLAS extensions `?AMIN`,`?AMAX`,
    `CAXPYC` and `ZAXPYC`.
  * Fixed a potential buffer overflow in the interface to the
    `GEMMT` kernels.
  * Fixed use of incompatible pointer types in `GEMMT` and
    `C`/`ZAXPBY` as flagged by GCC-14.
  * Fixed unwanted case sensitivity of the character parameters in
    `?TRTRS` sped up the OpenMP thread management code.
  * Fixed sizing of logical variables in `INTERFACE64` builds of
    the C version of LAPACK.
  * Fixed inclusion of new LAPACK and LAPACKE functions from
    LAPACK 3.11 in the shared library.
  * Modified the error thresholds for `SGS`/`DGS` functions in
    the LAPACK testsuite to suppress spurious errors.
  * Added support for calling ?NRM2 with a negative increment value
    on all architectures.
  * Fixed handling of the `OPENBLAS_LOOPS` variable in several
    benchmarks.
  * Integrated fixes from the Reference-LAPACK project:
    Increased accuracy in `C`/`ZLARFGP` (Reference-LAPACK PR 981).
  x86:
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  x86-64:
  * Removed all instances of `sched_yield()` on Linux and BSD.
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Added compiler checks for `AVX512BF16` compatibility.
  * Fixed cpu handling fallbacks for Sapphire Rapids with disabled
    AVX2 in `DYNAMIC_ARCH` mode.
  * Fixed extensions `SCSUM` and `DZSUM`.
  * Improved `GEMM` performance for ZEN targets.
  arm64:
  * Added initial support for the Cortex-A76 cpu.
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Fixed default compiler options for gcc (-march and -mtune).
  * Added support for the NeoverseV2 cpu in `DYNAMIC_ARCH` builds.
  * Corrected `SCSUM` kernels (erroneously duplicating `SCASUM`
    behaviour).
  * Added SVE-enabled kernels for `CSUM`/`ZSUM`.
  * Worked around an inaccuracy in the `NRM2` kernels for NeoverseN1.
  power:
  * Improved performance of `SGEMM` on POWER8/9/10.
  * Improved performance of `DGEMM` on POWER10.
  zarch:
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Fixed calculation of `?SUM` on Z13.
- LIBNAMESUFFIX semantics have changed: no separator will be added.
  Adjusted in spec file.

==== openblas_pthreads ====
Version update (0.3.26 -> 0.3.27)

- Update to version 0.3.27 (boo#1225869):
  General:
  * Added initial (generic) support for the `CSKY` architecture.
  * Capped the maximum number of threads used in `GEMM`, `GETRF`
    and `POTRF` to avoid creating underutilized or idle threads.
  * Sped up multithreaded `POTRF` on all platforms.
  * Added extension `openblas_set_num_threads_local()` that returns
    the previous thread count.
  * Re-evaluated the `SGEMV` and `DGEMV` load thresholds to avoid
    activating multithreading for too small workloads.
  * Improved the fallback code used when the precompiled number of
    threads is exceeded,  and made it callable multiple times
    during the lifetime of an instance.
  * Added CBLAS interfaces for the BLAS extensions `?AMIN`,`?AMAX`,
    `CAXPYC` and `ZAXPYC`.
  * Fixed a potential buffer overflow in the interface to the
    `GEMMT` kernels.
  * Fixed use of incompatible pointer types in `GEMMT` and
    `C`/`ZAXPBY` as flagged by GCC-14.
  * Fixed unwanted case sensitivity of the character parameters in
    `?TRTRS` sped up the OpenMP thread management code.
  * Fixed sizing of logical variables in `INTERFACE64` builds of
    the C version of LAPACK.
  * Fixed inclusion of new LAPACK and LAPACKE functions from
    LAPACK 3.11 in the shared library.
  * Modified the error thresholds for `SGS`/`DGS` functions in
    the LAPACK testsuite to suppress spurious errors.
  * Added support for calling ?NRM2 with a negative increment value
    on all architectures.
  * Fixed handling of the `OPENBLAS_LOOPS` variable in several
    benchmarks.
  * Integrated fixes from the Reference-LAPACK project:
    Increased accuracy in `C`/`ZLARFGP` (Reference-LAPACK PR 981).
  x86:
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  x86-64:
  * Removed all instances of `sched_yield()` on Linux and BSD.
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Added compiler checks for `AVX512BF16` compatibility.
  * Fixed cpu handling fallbacks for Sapphire Rapids with disabled
    AVX2 in `DYNAMIC_ARCH` mode.
  * Fixed extensions `SCSUM` and `DZSUM`.
  * Improved `GEMM` performance for ZEN targets.
  arm64:
  * Added initial support for the Cortex-A76 cpu.
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Fixed default compiler options for gcc (-march and -mtune).
  * Added support for the NeoverseV2 cpu in `DYNAMIC_ARCH` builds.
  * Corrected `SCSUM` kernels (erroneously duplicating `SCASUM`
    behaviour).
  * Added SVE-enabled kernels for `CSUM`/`ZSUM`.
  * Worked around an inaccuracy in the `NRM2` kernels for NeoverseN1.
  power:
  * Improved performance of `SGEMM` on POWER8/9/10.
  * Improved performance of `DGEMM` on POWER10.
  zarch:
  * Fixed handling of `NaN` and `Inf` arguments in `ZSCAL`.
  * Fixed calculation of `?SUM` on Z13.
- LIBNAMESUFFIX semantics have changed: no separator will be added.
  Adjusted in spec file.

==== openssh ====
Subpackages: openssh-clients openssh-common openssh-server

- Add #include <stdlib.h> in some files added by the ldap patch to
  fix build with gcc14 (boo#1225904).
  * openssh-7.7p1-ldap.patch

==== yast2-trans ====
Version update (84.87.20240603.1527509889 -> 84.87.20240610.1108c0c7e7)
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.20240610.1108c0c7e7:
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Tamil)
  * Translated using Weblate (Tamil)
  * Translated using Weblate (Tamil)
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Romanian)
  * Translated using Weblate (Dutch)
  * Translated using Weblate (Japanese)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Slovak)
  * Translated using Weblate (Catalan)
  * New POT for text domain 'timezone_db'.
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Slovenian)
  * Translated using Weblate (Romanian)
  * New POT for text domain 'registration'.
  * New POT for text domain 'control'.


Reply via email to