Commit Graph

38779 Commits

Author SHA1 Message Date
Khem Raj 11a2f137bc libfile-slurp-perl: upgrade 9999.19 -> 9999.32
License-Update: license note moved from README to README.md and expanded to a full copyright / same-terms-as-Perl stanza

fix URI and license for 9999.32

The 9999.32 release is published by new CPAN maintainer (CAPOEIRAB)
and renamed the license file to README.md

 - Point SRC_URI at the CAPOEIRAB author directory (sha256 unchanged).
 - Update LIC_FILES_CHKSUM to the COPYRIGHT & LICENSE section of README.md.
 - Refresh the stale HOMEPAGE to the dist page.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-28 00:59:06 -07:00
Khem Raj 3259516d4d ccid: upgrade 1.5.5 -> 1.8.0
License-Update: FSF postal address replaced with a URL and LGPL text reflowed

Switch to using meson build system

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-28 00:59:05 -07:00
Khem Raj 1f16d11429 pcsc-lite: upgrade 2.0.3 -> 2.5.0
License-Update: dropped the doc/example pcsc_demo.c entry from the GPLv3 LIC_FILES_CHKSUM list

Switch to the meson build system.

do_package otherwise failed with installed-but-not-shipped files:

  /usr/sysusers.d/pcscd-sysusers.conf
  /usr/lib/systemd/user/pcscd.service
  /usr/lib/systemd/user/pcscd.socket

pcsc-lite installs sysusers.d to systemd's sysusersdir (${libdir}) when
the pkg-config var is found and to ${exec_prefix}/sysusers.d otherwise,
so remove both. Ship the systemd user units by adding
${nonarch_libdir}/systemd/user to FILES:${PN}.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2026-06-28 00:59:05 -07:00
Khem Raj a2ab019840 ifuse: upgrade 1.2.0 -> 1.2.1
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Khem Raj e73caaf78f crash-cross-canadian: fix build, including on clang based SDKs
The cross-canadian variant did not build. Several issues:

1. DEPENDS used :append on top of crash.inc's target DEPENDS. cross-canadian
   does not remap DEPENDS to nativesdk, so the target zlib/readline/ncurses/
   gmp/mpfr stayed in the dependency set and staged a real target usr/lib into
   the recipe sysroot, clashing with the nativesdk toolchain (clang-glue
   provides usr/lib as a symlink) during do_prepare_recipe_sysroot. Override
   DEPENDS with the nativesdk set instead (matching gdb-cross-canadian) and add
   the -native build tools the build needs.

2. do_compile hardcoded ${HOST_PREFIX}gcc, which does not exist on clang based
   SDKs (TOOLCHAIN = "clang"), giving "C compiler cannot create executables".
   Use the toolchain-aware ${CC}/${CXX} like the other variants.

3. crash's gdb merge re-enters the top-level crash Makefile from gdb's link
   rule ("make -C ../.. ... library") without passing the compiler, so crash's
   own objects fell back to the Makefile default $(CROSS_COMPILE)gcc and failed
   to find a compiler on clang SDKs. Forward CC/CXX through that recursion in
   the bundled gdb-16.2.patch; this is harmless where ${cross}-gcc exists.

Verified by building crash, crash-native, crash-cross and
crash-cross-canadian-x86-64 for a clang based SDK (qemux86-64).

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Khem Raj 496ce81934 crash: pull in gmp/mpfr for the cross variant
The bundled gdb 16.2 hard-requires GMP and MPFR (crash 8.0.6 bundled gdb 10.2,
which did not). native.bbclass remaps DEPENDS to their -native variants
automatically, so crash-native builds, but cross.bbclass does not - so
crash-cross failed in gdb's configure with:

    configure: error: Building GDB requires GMP 4.2+, and MPFR 3.1.0+.

List the build-host dependencies (gmp/mpfr, plus readline/ncurses that crash
links) explicitly for class-cross.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Khem Raj 15f9b7f915 crash: fix buildpaths QA properly via gdb --with-sysroot=/
The recipe passed --with-sysroot=${STAGING_DIR_TARGET} to the bundled gdb's
configure. gdb bakes that path in as its default target sysroot, so the
resulting /usr/bin/crash binary embedded the build-time recipe-sysroot path:

    File /usr/bin/crash in package crash contains reference to TMPDIR [buildpaths]

This was worked around by demoting the buildpaths QA check to a warning
(ERROR_QA:remove / WARN_QA:append), which only hides the problem - the build
path is still wrong for a binary that runs on the target (or, for the
cross-canadian variant, in the SDK).

Set --with-sysroot=/ instead. crash takes the kernel/vmlinux and dump on its
command line, so gdb's compiled-in default sysroot is irrelevant at runtime;
"/" is both a sane default and contains no build path. With this the binary
no longer references TMPDIR, so the QA suppression can be removed and the
buildpaths check passes for real.

Verified with a clean build for qemux86-64: no buildpaths QA issue and no
TMPDIR references remain in the crash binary.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Khem Raj d5423311b9 crash: drop unnecessary git scaffolding from do_compile
The do_compile:prepend ran "git init && git add . && git commit" inside the
staged gdb-16.2 tree. crash's build does not use git at all - the bundled gdb
is unpacked from a release tarball and merged with plain "patch -p0" - so this
served no purpose and only made the build depend on a working git identity.

In any environment where committer identity is unset, or where commit signing
is enabled globally (commit.gpgsign=true), do_compile fails with:

    error: gpg failed to sign the data
    fatal: failed to write commit object

Drop the git scaffolding entirely; the gdb patch still applies with patch(1).

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Robert Berger 56b437228b crash 8.0.6 -> 9.0.2 + crash-memory-driver
1) crash-memory-driver: fixed typo to include proper patch
2) crash-memory-driver: keep license,...

patch against comments on pull request:

1) HOMEPAGE updated
2) UPSTREAM_CHECK_URI updated
3) exports removed
4) if [ -f "gdb-16.2.patch" ]; then... removed
5) notes about QA Issue: reference to TMPDIR [buildpaths] added
6) notes ./crash --buildinfo removed
7) LIC_FILES_CHKSUM: use license text in crash.c
8) PV = "9.0.2+git${SRCPV}" -> SRCPV removed
9) removed unused patches
10) crash: LICENSE = GPL-3.0-only

Signed-off-by: Robert Berger <Robert.Berger@ReliableEmbeddedSystems.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:59 -07:00
Khem Raj a7428c96bf crash: fix bundled gdb build for C++20
std::allocator::construct was removed in C++20 (GCC 16 default).

Rewrite 0006-gdbsupport-fix-default-init-alloc to include <memory>
guard the using-declaration to pre-C++17, and add a forwarding
construct() overload.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-27 15:50:58 -07:00
Antonios Christidis a9d4a92025 opencl-cts: enforce -Werror flags and fix upstream build warnings
The recipe was suppressing errors by including
'--compile-no-warning-as-error' and removing '-Werror=format-security'
from SECURITY_STRINGFORMAT. Remove both workarounds and carry upstream
patches that fix the underlying warnings instead.

Signed-off-by: Antonios Christidis <a-christidis@ti.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:33 -07:00
Antonios Christidis ff14b970f6 opencl-cts: Update version 2026.05.05 -> 2026.06.18
Update opencl-cts version from 2026.05.05 to 2026.06.18.

Signed-off-by: Antonios Christidis <a-christidis@ti.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:33 -07:00
Markus Volk d7accea337 flatpak: update 1.17.6 -> 1.18.0
Changes in 1.18.0
~~~~~~~~~~~~~~~~~
Released: 2026-06-08

Enhancements:

* Improve error handling and printed output of `flatpak-coredumpctl` (#6649,
  #6680)

* Support the AMD vendor specific compute interface (`/dev/kfd`) via the DRI
  device permission (#6648)

* Improve the output of `flatpak update` with failure causes (#6657)

* Improve startup time for fish shell integration (#6635)

* Translation updates: zh_CN (#6671)

Bug fixes:

* Fix building when HAVE_LIBSYSTEMD but not USE_SYSTEM_HELPER is defined (#6652)

* Ignore system bus failures in parental controls check (#6663)

* Fix some return values and replace deprecated `GTimeVal` with
  `g_get_real_time()` (#6646)

* Suppress an unused-result warning in the tests (#6655)

Changes in 1.17.7
~~~~~~~~~~~~~~~~~~
Released: 2026-05-06

Enhancements:

* Add the new permission conditionals `has-usb-device` and `has-usb-portal` to
  allow apps to drop --device=all and --device=usb permissions (#6560)

* Always send the `Flatpak-Upgrade-From` header when updating instead of
  freshly installing, to improve the quality of statistics (#6626)

* Improve how the absence of the system repo is handled (#6621)

* Changes to repos are now more atomic which helps to avoid them being in an
  invalid state. This could be observed when importing the GPG key failed,
  because the system clock was wrong. (#6547)

* A function to report the age of the configuration was added to libflatpak,
  which will help GNOME Software to prevent unnecessary work (#6532)

* Improvements to the build system (#6614, #6610)

* Improve various tests (#6604, #6606, #6619, #6617, #6605, #6625)

* Translation updates: tr (#6629), zh_CN (#6630)

Bug fixes:

* Fix a regression in handling of the fallback-x11 permission, which was
  affecting overrides from Flatseal (#6632)

* Fix a memory leak in the Flatpak portal (#6613)

* Install SELinux configuration files to the right directory (#6622)

* Silence wrong `lseek()` errors when creating sub-sandboxes (#6609)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
2026-06-26 19:59:33 -07:00
Walter Werner Schneider ff827d3ea1 zbar: upgrade 89e7900d85dd -> 0.23.93
Upgrade zbar from 89e7900d85dd (2020-12-31) to 0.23.93 (2024-01-09).

Removed all patches because they have been merged upstream.

Enabled pthread integration by default and renamed configs to match
upstream.

Tested the python API and gstreamer integration, I wasn't able to test
any of the various package configs that are related to GUIs because I
don't have a access to boards with displays.

Signed-off-by: Walter Werner Schneider <contact@schnwalter.eu>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:33 -07:00
Hemanth Kumar M D e2584b80b7 lftp: add zsh completion subpackage
4.9.3 installs zsh completion via 'make install'. Package it as
${PN}-zsh-completion consistent with other recipes in meta-oe.

Link: https://github.com/lavv17/lftp/commit/7f5c127878fa76a916b9ea80419d65e7df549d3e

Signed-off-by: Hemanth Kumar M D <Hemanth.KumarMD@windriver.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:33 -07:00
Khem Raj 56c550a48e lftp: fix build with clang, lld and GCC 16 libstdc++
lftp 4.9.3 bundles gnulib sources that fail to build with the OpenEmbedded
clang + lld toolchain. Carry a single patch with the gnulib compatibility
fixes:

1. Single-argument static_assert (lib/dirent.in.h, lib/uchar.in.h) is a
   C++17 feature; clang in its default C++14 mode rejects it with
   "static_assert with no message is a C++17 extension". Add a message.
   Reported upstream: https://github.com/lavv17/lftp/issues/766

2. lib/stdlib.in.h pre-includes <string> to pre-instantiate std::strtoull
   before the "#define strtoull rpl_strtoull" macro fires, but guarded the
   workaround with "&& !defined __clang__" so it never triggered under
   clang + libstdc++, rewriting std::strtoull to the non-existent
   std::rpl_strtoull. Extend the guard to cover clang.

3. After gnulib split md5.c/sha1.c into primary + -stream.c files, both
   define GL_OPENSSL_INLINE to _GL_EXTERN_INLINE before including the
   header, so with the OpenSSL md5/sha1 backends both translation units
   emit out-of-line wrapper copies and lld fails with duplicate symbol
   errors. Drop the override from the -stream.c files.

Consolidates the three previously separate patches into one; verified by
building lftp for qemux86-64 with clang + lld (the duplicate-symbol link
failure reproduces without the patch and is resolved with it).

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:33 -07:00
Khem Raj ad432033b1 lftp: upgrade 4.9.2 -> 4.9.3
Signed-off-by: Filipe Pires <filipe.pires@konsulko.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-26 19:59:21 -07:00
Markus Volk 070da51be8 librtmp: add a patch to fix build with nettle-4
This was taken from Archlinux:
https://gitlab.archlinux.org/archlinux/packaging/packages/rtmpdump/-/blob/main/nettle-4.patch

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 19:05:26 -07:00
Sandeep J 907b15a30c meta-webserver/README.md: update broken Yocto reference manual URL
Update old URL:
   http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#var-PACKAGECONFIG
to:
   https://docs.yoctoproject.org/ref-manual/variables.html#term-PACKAGECONFIG

Signed-off-by: Sandeep J <Sandeep.J@windriver.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:17 -07:00
Wang Mingyu 6764a6ca96 xfce4-settings: upgrade 4.21.1 -> 4.21.2
0001-build-Do-not-display-full-path-in-generated-headers.patch
removed since it's included in 4.21.2

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:17 -07:00
Wang Mingyu 13419906af syslog-ng: upgrade 4.11.0 -> 4.12.0
0001-feat-Add-option-in-cmake-to-remove-awk.patch
0002-feat-Add-option-in-autotools-to-remove-awk.patch
removed since they're included in 4.12.0

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:17 -07:00
Wang Mingyu 5a1603e21d swagger-ui: upgrade 5.32.6 -> 5.32.7
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:17 -07:00
Wang Mingyu 97e2a8106f python3-wrapt: upgrade 2.2.1 -> 2.2.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu b49b1505df python3-virtualenv: upgrade 21.5.0 -> 21.5.1
Changelog:
  fix(seed): refuse to seed unsupported Python versions

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu 4924c2b321 python3-txaio: upgrade 25.12.2 -> 26.6.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu 991a7bf75f python3-tqdm: upgrade 4.67.3 -> 4.68.3
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu a77c74761b python3-telnetlib3: upgrade 4.0.4 -> 4.0.5
Changelog:
 yield drain() after telnetlib3-client stdout.write()

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu ddfade8364 python3-svglib: upgrade 1.6.0 -> 2.0.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:16 -07:00
Wang Mingyu 1b4d3a7617 python3-sqlalchemy: upgrade 2.0.50 -> 2.0.51
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu 2ffa73965f python3-socketio: upgrade 5.16.2 -> 5.16.3
Changelog:
 Catch all exceptions in redis and rabbitmq client managers

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu d91f01f0ef python3-sentry-sdk: upgrade 2.62.0 -> 2.63.0
Changelog:
===========
- Prevent double wrapping of sync handlers on FastAPI >= 0.137
- Use effective_route_context path for prefixed routers
- (asgi) Gate query string and client IP behind send_default_pii
- (serializer) Avoid creating reference cycles on every call
- (user) Set user.ip_address on telemetry if present
- Remove 0000 trace_id fallbacks
- MANIFEST.in: Graft tests directory.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu d54826df1f python3-scikit-build: upgrade 0.19.0 -> 0.19.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu c28a822905 python3-reportlab: upgrade 4.5.1 -> 5.0.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu c1e7d5d7af python3-pytest-unordered: upgrade 0.7.0 -> 0.8.0
Changelog:
============
- Add Pytest 9 support
- Add Python 3.14 support
- Keep latest Pytest tests on supported Python versions
- Refactor CI to use the tox test matrix
- Replace pre-commit workflow with prek and mise
- Add Context7 project metadata
- Update linting tools
- Update GitHub Actions versions

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:15 -07:00
Wang Mingyu b323e486bc python3-pyro5: upgrade 5.16 -> 5.17
Changelog:
=============
- Fix exception leaks
- MsgpackSerializer.loadsCall: honor ext_hook (symmetric with loads)
- Fixed slow locate_ns() on Windows: skipped reverse DNS lookup of 127.0.1.1 which caused 5+ second delays due to DNS timeout.
- Fixed exception leaks in message handling
- Fixed GC issue with daemon property
- Fixed thread race condition in nameserver remove()
- Fixed possible resource leaks in client
- Fixed IPv6 NAT port parse error in server
- Fixed crash related to None environment variable handling
- Fixed a deadlock scenario when using multiple proxies with different daemon connections
- Improved logging performance by avoiding eager string formatting
- Gracefully handle unreachable network in ip address resolution fallback
- Fixed potential socket leak from broadcast discovery when nameserver is unreachable
- Added extra message protocol validation for robustness
- Fixed nameserver metadata lookup returning incorrect results for None values
- Fix msgpack serializer loadsCall to make sure custom arguments get properly deserialized
- Various documentation and spelling corrections

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:14 -07:00
Wang Mingyu 5e8e0b0eda python3-pyfuse3: upgrade 3.4.2 -> 3.5.0
Changelog:
===========
- Filesystems may now define a ~Operations.poll method to support the epoll and select system calls.
- The FileHandleT and InodeT types are no longer declared as NewTypes but are now simply aliases for int.
- Future releases of pyfuse will be signed with signify rather than GPG.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:14 -07:00
Wang Mingyu b53f68656e python3-py7zr: upgrade 1.1.2 -> 1.1.3
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:14 -07:00
Wang Mingyu c3ea3e721c python3-prettytable: upgrade 3.17.0 -> 3.18.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:14 -07:00
Wang Mingyu 887a270938 python3-nanobind: upgrade 2.12.0 -> 2.13.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:14 -07:00
Wang Mingyu d8d618dd0c python3-msgpack: upgrade 1.2.0 -> 1.2.1
Changelog:
 Fix a segfault when calling Unpacker.unpack() or Unpacker.skip() after an unpacking failure.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu 8ad18691cc python3-jsbeautifier: upgrade 1.15.4 -> 2.0.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu c57f6f3cc9 python3-inline-snapshot: upgrade 0.34.1 -> 0.34.2
Changelog:
- Fixed snapshot updates when pytest reuses stale assertion-rewrite cache files
  after a test folder is moved, which could leave cached code objects pointing at
  the old source path

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu fc7fb896c3 python3-google-auth: upgrade 2.54.0 -> 2.55.0
Changelog:
===========
- make RAB feature production ready
- run async background boundary refresh on detached session

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu 510a03a10c python3-fsspec: upgrade 2026.4.0 -> 2026.6.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu e69339c2d8 python3-fastapi: upgrade 0.137.1 -> 0.138.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:13 -07:00
Wang Mingyu c29507e8d3 python3-fastapi-cli: upgrade 0.0.24 -> 0.0.27
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:12 -07:00
Wang Mingyu 0fc29a4e28 python3-engineio: upgrade 4.13.2 -> 4.13.3
Changelog:
============
- Make sure client disconnects when write loop exits
- Address flaky unit test
- Stop using codecov service, since it has been failing for a long time

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:12 -07:00
Wang Mingyu 332d617776 python3-cyclonedx-python-lib: upgrade 11.10.0 -> 11.11.0
Changelog:
=============
- feat: CryptoPrimitive enum cases for CycloneDX 1.7
- feat: ProtocolPropertiesType enum cases for CycloneDX 1.7
- fix: ProtocolPropertiesType enum case 5g-aka for CycloneDX 1.7
- tests: check all enum completeness
- refactor: simplify contrib.bom.utils

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:12 -07:00
Wang Mingyu 0a0663b936 python3-coverage: upgrade 7.14.1 -> 7.14.3
Changelog:
===========
- Fix: some messages were being written to stdout, making coverage json -o -
  useless for capturing JSON output. Now messages are written to stderr
- Fix: CoverageData kept one SQLite connection per thread that recorded
  coverage, but never closed them when those threads terminated. On long runs
  with many short-lived threads this leaked one file descriptor per dead thread,
  eventually failing with OSError: [Errno 24] Too many open files. Connections
  belonging to terminated threads are now closed and dropped.
- Fix: when using sys.monitoring, we were assuming we could use the COVERAGE_ID
  tool id. But other tools might also assume they could use that id.
  Pre-allocated ids don't really make sense, so now we search for a usable one
  instead.
- Following the advice of cibuildwheel, we no longer distribute wheels for
  Python 3.13 free-threaded.
- Fix: the default exclusion rule now also matches function bodies whose
  closing return-type bracket is on its own line (for example, after a long ->
  dict[...] annotation that a formatter has split over multiple lines).
- Fix: On 3.13t, we incorrectly issued Couldn't import C tracer errors. We
  can't import the C tracer because in 7.14.2 we stopped shipping compiled
  wheels for 3.13t.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:12 -07:00
Wang Mingyu f38bf8c4e2 python3-cmake: upgrade 4.3.2 -> 4.3.4
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-06-25 08:45:12 -07:00