| Age | Commit message (Collapse) | Author | Files | Lines |
|
Alexander Kanavin (1):
bin/bitbake-setup: print a note about fetcher log if something fails there
Antonin Godard (1):
doc/bitbake-user-manual-metadata: move := section before ??=
Chris Laplante (9):
lib: rename fetch2 as fetch; invert compat shim to make bb.fetch2 = bb.fetch
bin, lib, conf: use bb.fetch instead of bb.fetch2
tests: add fetch_import tests to test bb.fetch2 => bb.fetch migration
doc: update manual to reflect bb.fetch2 => bb.fetch migration
runqueue: cleanup imports
runqueue: optimize construction of rev_prio_map
runqueue: declare pressure/load attributes in RunQueueScheduler.__init__ rather than dynamically
runqueue: fix remaining attributes created outside of constructor
runqueue: wait for covered tasks before setscene
Richard Purdie (8):
bitbake: Bump to version 2.19.1
toaster: Update to django 5.2
fetch/gitsm: Store the original url data to fix relative gitsm paths
tests/fetch: Swap github grpc repo for our own small test repo
tests/fetch: Swap bitbake github mirror for YP one
tests/fetch: Drop ftp checkstatus test
tests/fetch: Switch to YP mirror repos instead of github
asyncrpc/serv: Add missing import
Ross Burton (2):
vendor.txt: add tomli
lib/bb/_vendor: resync to add tomli
Trevor Woerner (1):
doc: quote the value in the named-checksum example
WXbet (1):
knotty: show elapsed time on the task progress bar
Yann Dirson (1):
doc/bitbake-user-manual-ref-variables: document PREFERRED_RPROVIDER
Change-Id: I31d21cc2892a75f822fa477509c03001217307ae
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
usbmuxd ships 39-usbmuxd.rules, which starts the daemon when an Apple
device appears:
ACTION=="add", ..., OWNER="usbmux", ENV{SYSTEMD_WANTS}="usbmuxd.service"
The recipe never creates that account. Up to systemd v257 udev only
logged a warning and the rest of the line still ran. systemd a1ee55e3c9
("udev-rules: ignore OWNER=/GROUP= with unknown user/group", first
released in v258) makes udev drop the whole rule line instead, so
SYSTEMD_WANTS is never applied and usbmuxd is never started when a
device is plugged in.
Creating the account is what the rule already expects, and it preserves
the intent of the systemd change: that change guards against a rule
naming a nonexistent user silently clearing a valid earlier ownership
assignment, and with the account present there is no nonexistent user.
Removing OWNER= from the rule would evade that check instead of
satisfying it. The daemon still runs as root, so nothing else changes.
Also ship a sysusers.d fragment. Systems that modified a user or
password at runtime carry a copied-up /etc/passwd in a writable /etc,
which masks an account added at image build time even after an update;
systemd-sysusers recreates it there. The uid may then differ, but the
udev rule resolves the account by name and the daemon runs as root, so
only the name matters.
Distros that keep /etc on persistent storage may also need
systemd-sysusers to actually run on boot; that is outside the scope of
this recipe.
Signed-off-by: Eric Chiang <ericyunlinchiang@gmail.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
(cherry picked from commit 5b4d5deac5bbbd286d43a6f6a3d1f8722bdfa8aa)
Change-Id: If778197c7db00fb14284678dd1b1b0e0b2423cff
Signed-off-by: Eric Chiang Quanta <Eric.Chiang@quantatw.com>
|
|
Adrian Freihofer (7):
tests/cooker: add a shared bitbake-subprocess test base class
tests/cooker: add a bitbake -b bbappend test
command: fix setConfig coercing bool config values to truthy strings
cooker: add a buildFile mode that runs a single task
tinfoil: add a prepared task runner
tests/cooker: add TinfoilTests for run_prepared_task
fetch2/wget: remove orphaned NamedTemporaryFile in _fetch_index
Alejandro Mery (1):
data: Return a list from exported_vars()
Antonin Godard (3):
doc: bitbake-user-manual-metadata.rst: fix append example
doc: bitbake-user-manual-environment-setup: use pip to install bitbake-setup
default-registry: use core/yocto/monitor-disk-space fragment by default
Chris Laplante (18):
fetch2: get rid of unused FetchMethod.urls property
fetch2/wget: cache SSL context instead of recreating every time
pyproject.toml: remove broken [build-system] section
pyproject.toml: specify min Python version for project
runqueue: Fix pending_hash_index not including taskname
data_smart: use Pattern.search instead of findall, to match comment
runqueue: fix init of RunQueueScheduler.prio_map; add test for 'basic' scheduler
runqueue: use set 'discard' method instead of 'in' followed by 'remove'
build: localize import of bb.progress
__init__.py: add missing import bb.event
cookerdata: cleanup imports
runqueue: fix bad check in process_possible_migrations
runqueue: remove unused attributes/variables
runqueue: remove unused RunQueueExecute.sorted_setscene_tids; declare setscene_tids_generator in __init__
runqueue: remove long-unused RunQueueData get_user_idstring/get_short_user_idstring
runqueue: remove RunQueueExecute.build_stamps2 which is never read
runqueue: clean up dumpsigs polling
runqueue: report memory pressure limit correctly
Francisco Pedraza (1):
asyncrpc: Close the client event loop when the client is collected
Fredrik Svensson (svsvenss) (2):
fetch2/wget: reuse cached HTTPS connections
tests/fetch: report OpenSSL certificate generation errors
Joshua Watt (12):
hashserv: server: Fix formatting
AGENTS.md: Add file
asyncrpc: Add Task Group
asyncrpc: serv: Use Task Group
asyncrpc: serv: Cancel all clients on server stop
hashserv: tests: Improve test logging
hashserv: client: Add asynchronous streaming API
hashserv: server: Add queued streaming API
hashserv: server: Use streaming and queue API for upstream unihash queries
hashserv: server: Use streaming and queue API for upstream exist queries
hashserv: tests: Add more upstream tests
hashserv: tests: Add test for upstream pipelining
Matt Madison (1):
parse/ast: improve error handling for invalid task dependencies
Michal Sieron (1):
hashserv: server: Fix upstream get-unihash miss truncating stream
Peter Kjellerstedt (1):
fetch2/git: Clarify error about missing LFS support
Philip Lorenz (1):
fetch2: Raise on git lfs fetch failures
Quentin Schulz (4):
doc: bitbake-user-manual-metadata: fix missing whitespace around '=' operator
doc/bitbake-user-manual-environment-setup: fix reference to non-existing term
doc/bitbake-user-manual-ref-variables: fix reference to non-existing entry in variable glossary
doc/bitbake-user-manual-environment-setup: cross-reference DL_DIR
Richard Purdie (18):
tests/setup: Drop win32 platform reference
fetch/wget: Handle long filenames correctly
data: Fix expandKeys recursion issue
fetch/__init__: Clean up minor mirror code duplication
fetch2: Drop unneeded checksum check
fetch2: Drop ESTALE error handling
utils: Allow lockfile/unlockfile to take empty names
utils: Add lockfile_to_exclusive
fetch2: Switch to shared locking for read accesses
utils: Fix lockfile_to_exclusive to avoid deadlock
bin/toaster: Remove accidentally added version string
toaster/tests: Add and use wait_until_element_visible()
toaster/orm/lsupdates: Improve error handling
cooker: Clean up collect_bbfiles handling
toaster: Rename wait_until_element_clickable -> wait_until_finder_clickable
toaster/layerdetails: Add id labels to textareas to make tests more robust
tests/selenium_helpers_base: Add wait_until_element_clickable
toaster/tests/layerdetails: Update tests to use labels and scrolling function
Rouven Rastetter (1):
fetch2/wget: checkstatus: Do not try again on 404 status code
Sebastian Muxel (1):
fetch2/gcp: treat GatewayTimeout as fetch failure
Thomas Perrot (2):
fetch/{npm,npmsw}: re-enable fetchers now that checksums come from SRC_URI
tests/fetch: restore and extend npm/npmsw test coverage
Trevor Woerner (1):
doc: continue the eventmask example onto its second line
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I3046ee4d5f55ca3314c19ab5c345a0b8c3311af4
|
|
Antonin Godard (12):
ref-manual/variables.rst: document the LOCALE_UTF8_IS_DEFAULT variable
tools/check-glossaries: return 1 in case of failure
tools/check-glossaries: fix default doc path
Add a pre-commit hook to check the glossaries
ref-manual: fix some repeated strings
brief-yoctoprojectqs/index.rst: refresh bitbake-setup outputs
migration-guides/release-notes-3.4.2.rst: fix a broken link
docs-wide: fix broken path links
ref-manual/classes.rst: replace obsolete mailing list thread
ref-manual/images.rst: update obsolete VMWare links
migration-guides/release-notes-5.0.rst: remove broken link
docs-wide: fix various broken links
Lian Wang (1):
fix multiple typo and grammar issues
Robert P. J. Day (2):
ref-manual: expand on kernel "do_sizecheck" task
ref-manual: add "KERNEL_IMAGE_STRIP_EXTRA_SECTIONS" to variables
Change-Id: Ie6b53117496eab9910c7e9b29f114208eb9fe162
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alexander Kanavin (1):
gtk-doc: upgrade 1.35.1 -> 1.36.1
Andreas Mützel (1):
cml1: use KCONFIG_CONFIG_ROOTDIR in savedefconfig
AshishKumar Mishra (1):
package.bbclass: hardcode emit_pkgdata to run last
Babanpreet Singh (4):
devtool: standard: fix finish/update-recipe for recipes using AUTOREV
oeqa/selftest/devtool: exercise devtool finish on an AUTOREV recipe
devtool: standard: fix update-recipe/finish --initial-rev override
oeqa/selftest/devtool: cover update-recipe --initial-rev
Benjamin Robin (2):
python3: add back Co-authored-by in CVE-2026-11972 patch
glib-2.0: add back Signed-off-by in CVE-2026-58016 patch
Gustavo Henrique Nihei (1):
u-boot: re-enable RISC-V compressed (c) ISA extension
Harish Sadineni (2):
kernel-arch: Add clang toolchain support
kernel-yocto: Set CLANG_FLAGS for kernel config checks when using clang
Jaipaul Cheernam (2):
bzip2: Fix CVE-2026-42250
gzip: fix CVE-2026-41992
Jose Quaresma (1):
os-release: set BUILD_ID vardepsexclude with weak assignment
Jörg Sommer (4):
files/fs-perms.txt: Replace /srv by $servicedir
systemd: Simplify code to handle resolv.conf with resolved
systemd: Ship /srv with the package
base-files: Replace /srv, /var by $servicedir, $localstatedir
Oleksiy Obitotskyy (1):
lzlib: respect CFLAGS from the recipe
Peter Marko (3):
go: upgrade 1.26.4 -> 1.26.5
flac: fix buildpaths with doxygen enabled
flac: make documentation build deterministic
Richard Purdie (10):
gawk: upgrade 5.4.0 -> 5.4.1
libmicrohttpd: upgrade 1.0.5 -> 1.0.6
mesa-demos: upgrade to latest revision
webkitgtk: upgrade 2.52.4 -> 2.52.5
cmake: upgrade 4.3.4 -> 4.4.0
xset: upgrade 1.2.5 -> 1.2.6
diffoscope: upgrade 323 -> 324
p11-kit: upgrade 0.26.2 -> 0.26.4
python3-websockets: upgrade 16.0 -> 16.1
libffi: upgrade 3.6.0 -> 3.7.1
Ross Burton (7):
fontconfig: upgrade 2.18.1 -> 2.18.2
python3-build: upgrade 1.5.0 -> 1.5.1
lib/oe/utils: move INHIBIT_DEFAULT_DEPS from make_arch_independent() to allarch.bbclass
glibc: inherit update-rc.d
glibc: only install nscd if it's been enabled
glibc: only inherit init script classes if nscd is enabled
glibc: disable nscd by default
Ryan Eatmon (2):
kernel-fit-image: Add KERNEL_DTBVENDORED support for FIT_CONF_DEFAULT_DTB
oe-selftest: fitimage: Add tests for KERNEL_DTBVENDORED
Siddharth Doshi (1):
screen: upgrade 5.0.1 -> 5.0.2
Sudhir Dumbhare (1):
openssh: set status for CVE-2026-3497
Vijay Anusuri (1):
tzdata/tzcode-native: upgrade 2026b -> 2026c
Yogesh Tyagi (1):
bindgen-cli: set CLANG_PATH in native and nativesdk wrappers to matching clang
mark.yang (4):
libx11-compose-data: set CVE_PRODUCT to empty value
python3-cryptography: set CVE_PRODUCT
python3-ply: set CVE_PRODUCT
python3-pyasn1: set CVE_PRODUCT
Change-Id: Ia083665c05d664f5cf43186358abdf6b0b3eba4d
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alex Kiernan (2):
fuse-archive: Add recipe
pjproject: Add recipe
Antonios Christidis (1):
opencl-cts: Suppress -Wfree-nonheap-object compiler warning
Deepesh Varatharajan (2):
librust-cxx: upgrade 1.0.194 -> 1.0.197
nushell: upgrade 0.111.0 -> 0.114.1
Jason Schonberg (2):
c-ares: upgrade 1.34.6 -> 1.34.8
xfdesktop: upgrade 4.20.2 -> 4.21.0
Khem Raj (19):
python3-httptools: Relax setuptools upper bound in build requirements
python3-charset-normalizer: Relax setuptools upper bound in build requirements
python3-pychromecast: Relax build requirements
python3-pikepdf: Fix cross build with scikit-build-core
fex: Upgrade to FEX-2607 release
fex: force use of bundled fmt to fix build against fmt 12.2.0
uim: fix cross-build segfault by loading native plugins in uim-module-manager
postgresql: adapt to systemd-systemctl-native merge into systemd-tools-native
meta-webserver: Depend upon networking layer
gnome-calendar: fix build against libical 4.0
python3-dbus-deviation: Drop all setup_requires to fix build failure
sysdig: Fix intermittent missing libsinsp/libscap headers on rebuild
bpftrace: link test data source binary without host runtime
sysdig: Use LuaJIT headers to match the linked LuaJIT library
gerbera: fix build against fmt 12.2.0
librav1e: fix nasm-native dependency override for x86-64
bpftrace: fix patch context so -fno-stack-protector applies to test object
mpd: fix build against fmt 12.2.0
frr: Fix native clippy failing to load libatomic.so.1
Leon Anavi (11):
python3-pybind11: Upgrade 3.0.1 -> 3.0.4
python3-pikepdf: Upgrade 10.5.1 -> 10.9.1
python3-unidecode: Enable tests
python3-jsbeautifier: Enable tests
python3-olefile: Enable tests
python3-screeninfo: Enable tests
python3-pybcj: Enable tests
python3-pyppmd: Enable tests
python3-rarfile: Upgrade 4.2 -> 4.3
python3-rarfile: Enable tests
python3-wand: Enable tests
Markus Volk (2):
pipewire: update 1.6.7 -> 1.6.8
evolution-data-server: update 3.56.2 -> 3.60.2
Peter Kjellerstedt (1):
pegtl: Correct the license to BSL-1.0
Priyansh Jain (1):
thermald: upgrade to 2.5.12
Wang Mingyu (37):
bcc: upgrade 0.36.1 -> 0.37.0
ctags: upgrade 6.2.20260628.0 -> 6.2.20260705.0
geoclue: upgrade 2.8.1 -> 2.8.2
graphviz: upgrade 15.0.0 -> 15.1.0
imagemagick: upgrade 7.1.2-26 -> 7.1.2-27
libio-compress-perl: upgrade 2.221 -> 2.223
libsdl3: upgrade 3.4.10 -> 3.4.12
libxmp: upgrade 4.7.0 -> 4.7.1
memcached: upgrade 1.6.42 -> 1.6.43
mm-common: upgrade 1.0.7 -> 1.0.8
ndctl: upgrade v84 -> v85
openvpn: upgrade 2.7.4 -> 2.7.5
ostree: upgrade 2026.1 -> 2026.2
python3-aiohappyeyeballs: upgrade 2.6.2 -> 2.7.1
python3-argcomplete: upgrade 3.6.3 -> 3.7.0
python3-bumble: upgrade 0.0.230 -> 0.0.231
python3-cbor2: upgrade 6.1.2 -> 6.1.3
python3-discovery: upgrade 1.4.2 -> 1.4.3
python3-faker: upgrade 40.23.0 -> 40.28.1
python3-huey: upgrade 3.0.3 -> 3.1.1
python3-humanize: upgrade 4.15.0 -> 4.16.0
python3-jsbeautifier: upgrade 2.0.1 -> 2.0.3
python3-lazy: upgrade 1.6 -> 2.0
python3-mlcommons-loadgen: upgrade 6.0.15 -> 6.0.16
python3-pillow: upgrade 12.2.0 -> 12.3.0
python3-responses: upgrade 0.26.1 -> 0.26.2
python3-sentry-sdk: upgrade 2.63.0 -> 2.64.0
python3-twitter: upgrade 4.16.0 -> 4.17.0
python3-tzlocal: upgrade 5.4.3 -> 5.4.4
python3-xmlschema: upgrade 4.3.1 -> 4.3.2
rabbitmq-c: upgrade 0.16.0 -> 0.17.0
smarty: upgrade 5.8.3 -> 5.8.4
ssh-audit: upgrade 3.3.0 -> 3.9.0
stunnel: upgrade 5.78 -> 5.79
upower: upgrade 1.91.2 -> 1.91.3
weechat: upgrade 4.9.2 -> 4.9.3
xarchiver: upgrade 0.5.4.26 -> 0.5.4.27
Change-Id: Id60d995229d0a6290395c6c410acc0ae64fdc591
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Jon Mason (6):
arm-toolchain: Update to new toolchain version
arm-bsp/corstone1000-external-sys-tests: update to the latest commit
arm-bsp/external-system: update to the latest commit
arm/opencsd: update to 1.8.3
arm/optee-ftpm: update recipe name
CI: fix sstate-mirror
Change-Id: I0358b2f5796c4ee73eb867a0598fb38005757bb7
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Fabien Lehoussel (1):
bitbake-setup: handle dict entries in oe-fragments
Jaipaul Cheernam (1):
bitbake-setup: use bb.fetch for buildtools installer download
Michal Sieron (1):
fetch2: Ensure UntrustedUrl.msg is str
Rob Woolley (9):
bitbake-setup: Add version option
pypi: Add PyPI packaging for bitbake-setup
pypi: Add packaging documentation for developers
gitignore: Ignore temporary staging directory
Add pyproject.toml and vendor.txt for vendoring
Add vendor patches
Update vendorized modules
vendor.txt: Add typing_extensions for bs4
Update typing_extensions with vendoring
Sandeep J (1):
doc/README: update broken yocto-docs cgit URL
Change-Id: I92281a61c186bdfaea09c5427ec791dcb72379a0
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Antonin Godard (27):
dev-manual/wic.rst: replace deprecated wks directories
ref-manual/classes.rst: replace deprecated wks directory
ref-manual/kickstart.rst: replace deprecated wks directory
bsp-guide/bsp.rst: fix raspberry layer content example
dev-manual/wic.rst: remove note on wic-tools
dev-manual/wic.rst: remove bullet point on host requirements
dev-manual/wic.rst: add where to set IMAGE_FSTYPES/WKS_FILE[S] from
dev-manual/wic.rst: add a requirement to use wic from the build system
dev-manual/wic.rst: convert code snippet to code-blocks
ref-manual/kickstart.rst: remove note on available commands
ref-manual/kickstart.rst: document the include directive
tools/update-documentation-conf: remove
ref-manual/variables.rst: document the USERMOD_PARAMS variable
migration-guides/migration-6.1.rst: add USERMOD_PARAMS note
ref-manual/variables.rst: add deprecation note for GROUPMEMS_PARAM
ref-manual/classes.rst: document python_uv_build
migration-guides/migration-6.1.rst: add note on oe.utils.*_distro_features() removal
ref-manual/variables.rst: document the UBOOT_FIT_CONF_DESC variable
migration-guides/migration/release-notes-6.1.rst: cover recent changes
ref-manual/system-requirements.rst: drop Fedora 42 support
tools/build-docs-container: drop Fedora 42 support
ref-manual/variables.rst: document the CCACHE_NATIVE_RECIPES_ALLOWED variable
ref-manual/variables.rst: document missing CONFLICT_*_FEATURES variables
ref-manual/variables.rst: document the LOCALE_PATHS variable
ref-manual/variables.rst: document the TEST_SERIALCONTROL_CONNECT_TIMEOUT variable
ref-manual/variables.rst: document the TEST_SERIALCONTROL_PS1 variable
ref-manual/variables.rst: document the IMAGE_*_DEBUGFS variables
Bruce Ashfield (1):
kernel-dev: document patch handling for discovered BSP descriptions
Lee Chee Yang (1):
migration-guides: add add release notes for 6.0.1
Paul Barker (1):
recipe-style-guide: Clarify when License-Update tag is needed
Robert P. J. Day (7):
ref-manual: warn reader about confusing DEPLOYDIR and DEPLOY_DIR
ref-manual: render first mention of DEPLOY_DIR as a :term:
ref-manual: add intro content to "Manually Called Tasks"
ref-manual: mention EXTRA_IMAGE_FEATURES in task
ref-manual: add intro content to Ref Manual "Tasks" section
ref-manual: remove all traces of "kernel_menuconfig" task
dev-manual: update bmaptool section, refer to "bmaptool" package
Change-Id: I6908a40ba262cca6ccec54c8e20f5a3ed03d9e2a
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Adam Blank (1):
package_pkgdata: fix typo to stop calling undefined function
Alex Kiernan (3):
rust-target-config: armv8a AArch32 Thumb build fixes
tune-cortexa32: enable Thumb-2 and fix AArch32 crypto FPU selection
scdoc: Upgrade 1.11.4 -> 1.11.5
Alexander Kanavin (43):
selftest/locales: opt out of ptests in DISTRO_FEATURES
at-spi2-core: upgrade 2.60.4 -> 2.60.5
barebox-tools: upgrade 2026.06.0 -> 2026.06.1
cmake: upgrade 4.3.3 -> 4.3.4
expat: upgrade 2.8.1 -> 2.8.2
glib-2.0: upgrade 2.88.1 -> 2.88.2
iproute2: upgrade 7.0.0 -> 7.1.0
libarchive: upgrade 3.8.7 -> 3.8.8
libffi: upgrade 3.5.2 -> 3.6.0
libpsl: upgrade 0.21.5 -> 0.22.0
lighttpd: upgrade 1.4.83 -> 1.4.84
python3-hypothesis: upgrade 6.155.2 -> 6.155.7
python3-pdm: upgrade 2.27.0 -> 2.28.0
python3-pytest: upgrade 9.1.0 -> 9.1.1
python3-setuptools-scm: upgrade 10.0.5 -> 10.2.0
python3-vcs-versioning: upgrade 1.1.1 -> 2.2.2
python3-wcwidth: upgrade 0.8.1 -> 0.8.2
socat: upgrade 1.8.1.1 -> 1.8.1.3
sqlite3: upgrade 3.53.2 -> 3.53.3
tcl: upgrade 9.0.3 -> 9.0.4
ttyrun: upgrade 2.42.1 -> 2.43.0
waffle: upgrade 1.8.2 -> 1.8.3
wic: upgrade 0.3.0 -> 0.3.1
xkeyboard-config: upgrade 2.47 -> 2.48
vulkan-samples: upgrade to latest revision
qemu: upgrade 11.0.1 -> 11.0.2
lttng-modules: upgrade 2.15.1 -> 2.15.2
opkg: upgrade 0.9.0 -> 0.10.0
acl: upgrade 2.3.2 -> 2.4.0
appstream: upgrade 1.1.2 -> 1.1.3
attr: upgrade 2.5.2 -> 2.6.0
git: upgrade 2.54.0 -> 2.55.0
python3-click: upgrade 8.4.1 -> 8.4.2
python3-setuptools-rust: upgrade 1.12.1 -> 1.13.0
shared-mime-info: upgrade 2.4 -> 2.5.1
strace: upgrade 7.0 -> 7.1
vulkan: upgrade 1.4.350.0 -> 1.4.350.1
libical: upgrade 3.0.20 -> 4.0.3
gnu-config: upgrade to latest revision
gn: upgrade to latest revision
piglit: upgrade to latest revision
files/common-licenses/MIT-with-fmt-exception: add a custom license
fmt: upgrade 12.1.0 -> 12.2.0
Andrew Geissler (1):
qemu: add ppc64le support to COMPATIBLE_HOST
Antonin Godard (1):
python3-sphinx-argparse: update 0.5.2 -> 0.6.0
Benjamin Robin (Schneider Electric) (3):
glib-2.0: fix CVE-2026-58016
python3: fix CVE-2026-11940
python3: fix CVE-2026-11972
Changqing Li (1):
report-error.bbclass: add site.conf/toolcfg.conf into error report
Eilís 'pidge' Ní Fhlannagáin (1):
ovmf: fix tpm PACKAGECONFIG to use TPM2_ENABLE
Gustavo Henrique Nihei (1):
opensbi: don't override ELFFLAGS, silence ldflags QA for bare-metal ELFs
Guðni Már Gilbert (1):
bluez5: tool changes following 5.87 upgrade
Joshua Watt (4):
grub-efi: Change to MACHINE_ARCH
systemd-boot: Change to MACHINE_ARCH
multilib: Add systemd-boot to NON_MULTILIB_RECIPES
wic-tools: Change to MACHINE_ARCH
João Marcos Costa (1):
webkitgtk: allow usign clang to compile for arm target
Markus Volk (3):
webkitgtk: add PACKAGECONFIG for librice
webkitgtk: add PACKAGECONFIG for webrtc
webkitgtk: add PACKAGECONFIG for bubblewrap
Moritz Haase (1):
json-c: upgrade 0.18 -> 0.19
Richard Purdie (33):
sstate/staging: Add SSTATETASKS vardepsexclude entries
scripts/oe-publish-sdk: Convert string subprocess parameters to list
patchelf: upgrade 0.18.0+git -> 0.19.0
hwdata: upgrade 0.408 -> 0.409
libadwaita: upgrade 1.9.1 -> 1.9.2
python3-typing-extensions: upgrade 4.15.0 -> 4.16.0
jansson: upgrade 2.15.0 -> 2.15.1
mesa/mesa-tools-native: Upgrade 26.1.2 -> 26.1.4
diffoscope: upgrade 319 -> 323
igt-gpu-tools: upgrade 2.4 -> 2.5
libxmlb: upgrade 0.3.27 -> 0.3.28
python3-cython: upgrade 3.2.5 -> 3.2.8
python3-rpds-py: upgrade 2026.5.1 -> 2026.6.3
python3-uv-build: upgrade 0.11.21 -> 0.11.26
erofs-utils: upgrade 1.9.1 -> 1.9.2
libjpeg-turbo: upgrade 3.1.4.1 -> 3.2.0
libjpeg-turbo: Add PIC flags
gpgme: upgrade 2.1.0 -> 2.1.2
python3-setuptools: upgrade 82.0.1 -> 83.0.0
enchant2: upgrade 2.8.16 -> 2.8.18
bluez5: upgrade 5.86 -> 5.87
staging: Fix vardepsexclude
package_pkgdata: Drop unneeded vardepsexlude
enchant2: upgrade 2.8.18 -> 2.8.19
libxfont2: upgrade 2.0.7 -> 2.0.8
python3-hatchling: upgrade 1.30.1 -> 1.31.0
python3-uv-build: upgrade 0.11.26 -> 0.11.28
xserver-xorg: upgrade 21.1.23 -> 21.1.24
xwayland: upgrade 24.1.12 -> 24.1.13
dropbear: upgrade 2026.91 -> 2026.92
patchelf: upgrade 0.19.0 -> 0.19.1
repo: upgrade 2.64 -> 2.65
python3-cffi: upgrade 2.0.0 -> 2.1.0
Robert P. J. Day (1):
kernel.bbclass: fix typo in comment, "INTIRAMFS_TASK"
Roland Kovacs (2):
gnupg: Upgrade 2.5.17 -> 2.5.20
gnupg: fix CVE-2026-57062
Ross Burton (21):
kea: remove install-umask workaround
libevent: upgrade 2.1.12 -> 2.1.13
classes/meson: set python install locations in the cross file
blueprint-compiler: inherit python3-dir not python3targetconfig
python3-pycairo: inherit python3-dir not python3targetconfig
at-spi2-core: inherit python3-dir not python3targetconfig
conf/templates/local.conf.sample: add comment about headless qemu
kea: fix python module packaging
kea: remove obsolete staticdev packaging
meson: add explanatory comment to the meson-native wrapper script
meson: remove obsolete environment unsets
meson: remove obsolete SSL_CERT_DIR assignment in the wrapper script
classes/archiver: change numbered list to bullets
classes/archiver: remove SRPM mode
classes/insane: create one CachedPath instance in qa_check_staged
classes/insane: clean up do_qa_sysroot
classes/insane: increase shebang size limit
xmlto: update SRC_URI
busybox: enable xxd
mesa-demos: switch to fetching from git instead of tarballs
mesa-demos: move to latest commit
Sandeep J (1):
pybootchartgui/README: fix broken bootchart.org URL
Siddharth Doshi (4):
openssh: upgrade 10.3p1 -> 10.4p1
vim: upgrade 9.2.0569 -> 9.2.0782
tiff: upgrade 4.7.1 -> 4.7.2
log4cplus: upgrade 2.1.2 -> 2.2.0.1
Siva Balasubramanian (2):
libarchive: skip fuzz tests in ptest run
oeqa/selftest/kernelmodulesplit: test cross-recipe kernel module dependencies
Sundeep KOKKONDA (1):
rust: Upgrade 1.96.0 -> 1.96.1
Theo Gaige (Schneider Electric) (4):
dhcpcd: patch CVE-2026-56113
dhcpcd: patch CVE-2026-56114
dhcpcd: patch CVE-2026-56116
dhcpcd: patch CVE-2026-56117
Trevor Gamblin (7):
patchtest: tests: base.py: remove duplicate Commit object
patchtest: tests: test_mbox.py: improve variable and message clarity, fix whitespace
patchtest: tests: test_metadata.py: simplify SRC_URI collection, remove unneeded import
patchtest: tests: test_patch.py: simplify source patch and upstream status checking
patchtest: tests: test_python_pylint.py: use more Pythonic comparison, fix indent
patchtest: correctly abort --directory test
parted: skip flaky test on riscv64
Trevor Woerner (1):
buildtools-extended-tarball: drop wic helper tools
Change-Id: Ib215d2822a71f82c05700feee542d3f4448415e2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alex Kiernan (2):
minisign: Add recipe
python3-pyroute2: Add sqlite3 to RDEPENDS
Bartosz Golaszewski (2):
gpiod-sysfs-proxy: update to v1.0.2
libgpiod: update to v2.3.1
Claus Stovgaard (1):
android-tools: fix native build
Deepak Rathore (1):
mbedtls: set CVE_STATUS for CVE-2025-66442
Etienne Cordonnier (1):
ttf-noto-emoji: upgrade 20200916 -> 2.051
Harsh Rai (1):
pipewire: add MP3 compressed offload support
Jan Vermaete (1):
python3-markdown-it-py: version bump 3.0.0 -> 4.2.0
Jason Schonberg (2):
xfce4-panel : upgrade 4.21.1 -> 4.21.2
php: upgrade 8.5.7 -> 8.5.8
Leon Anavi (10):
python3-croniter: Upgrade 6.2.2 -> 6.2.3
python3-coverage: Upgrade 7.14.3 -> 7.15.0
python3-stevedore: Upgrade 5.8.0 -> 5.9.0
python3-genson: Upgrade 1.3.0 -> 1.4.0
python3-genson: Enable tests
python3-filelock: Upgrade 3.29.4 -> 3.29.6
python3-pycurl: Upgrade 7.46.0 -> 7.47.0
python3-flaky: Add recipe
python3-pycurl: Enable tests
libheif: Upgrade 1.21.2 -> 1.23.1
Leonard Göhrs (1):
python3-aiohttp: add buildpath HOME check exception due to upstream pkg
Michael Fitzmayer (2):
canopenterm: update to version 2.03
canvenient: update to version 1.02
Ross Burton (2):
librav1e: make nasm dependency x86-specific
uutils-coreutils: delete .cargo/config.toml
Trevor Woerner (2):
gd: restore png, zlib, and tiff in the default PACKAGECONFIG
gd: add missing library deps to PACKAGECONFIG entries
Wang Mingyu (2):
tigervnc: Fix do_configure Error
fastfetch: drop drm-amdgpu and split vaapi into va-drm/va-x11
Change-Id: I25c127fc615e0a7c201ccd06da16b55b7a0ab732
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Ayoub Zaki (4):
linux-raspberrypi: switch to Linux 6.18
raspi-utils: bump SRCREV and add rpi-fw-crypto and rpi-eeprom-ab tools
rpi-bootfiles: update firmware to 20260521
rpi-eeprom: update eeprom firmware to v2026.05.11-2712
Khem Raj (1):
raspberrypi4: Pin to using 6.12 kernel
Change-Id: Idceafdd4ce36d6fd45818237fee238897a593520
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Jon Mason (1):
arm-bsp: Lengthen Boot timeout for rdv2/rdn2
Change-Id: I298782122123f275aa321b6114075b8b968b6ca4
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Richard Purdie (1):
utils: Add NFS EEXISTS/isdir failure workaround
Change-Id: Id050043583ef23df55505988d95e13c3546d946b
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Adam x Nilsson (2):
lvgl: Update to 9.5.0
lvgl-demo-fb: Update to 9.5.0
Alex Kiernan (1):
android-libboringssl: Fix build on glibc >= 2.41
Alexander Kanavin (1):
jansson: move to oe-core
Andreas Zdziarstek (1):
image_types_verity.bbclass: add FEC support
Andrej Kozemcak (1):
nginx: upgrade 1.30.2 -> 1.30.3
Antonios Christidis (2):
opencl-cts: Update version 2026.05.05 -> 2026.06.18
opencl-cts: enforce -Werror flags and fix upstream build warnings
Ashwin Prabhakar (4):
ramspeed: Add recipe for cache and memory benchmarking tool
osbench: Add osbench recipe for OS benchmarking tools
assimp: Add new recipe for Open Asset Import Library (Assimp)
vkmark: add recipe for Vulkan graphics benchmark
Bartosz Golaszewski (2):
libgpiod: update to v2.3
python3-gpiod: update to v2.5.0
Colin McAllister (2):
gstd: Upgrade to 0.16.0 release
libsoup-2.4: Remove recipe
Etienne Cordonnier (5):
android-libboringssl: add new recipe for BoringSSL shared libraries
android-tools: upgrade 29.0.6.r14 -> 35.0.2
android-tools-conf: replace sysfs implementation with configfs
android-tools: make patch more secure
contrib: oe-stylize: fix warning
Gianfranco Costamagna (1):
ettercap: move from old libpcre to new libpcre2
Hemanth Kumar M D (4):
bit7z: workaround array-bounds warnings with GCC 16
directfb: fix build with GCC 16
spice: fix build failures with GCC 16
lftp: add zsh completion subpackage
Jason Schonberg (5):
Add missing HOMEPAGEs
nodejs: upgrade 24.16.0 -> 24.17.0
libnet-dns-perl: upgrade 1.54 -> 1.55
libio-pty-perl: fix SRC_URI and License
nodejs: upgrade 24.17.0 -> 24.18.0
Jeroen Hofstee (1):
nodejs: native: avoid target-specific signatures
Joao Marcos Costa (1):
bpftrace: fix buildpaths QA issue in bpftrace-dbg and bpftrace-ptest
Jörg Sommer (6):
multitail: New "tail for multiple files in parallel" v7.1.5
lsd: New "ls replacement with colours and icons in Rust" v1.2.0
fuzzytail: New "tail replacement written in Rust" v0.2.3
atftp: Rework recipe and use libpcre2
sngrep: upgrade 1.8.2 -> 1.8.3+gitc77bd7
octave: upgrade 7.2.0 -> 11.3.0 + rework + pcre -> pcre2
Khem Raj (142):
exfatprogs: upgrade 1.2.6 -> 1.4.1
libdvdread: upgrade 6.1.3 -> 7.0.1
libdvdnav: upgrade 6.1.1 -> 7.0.0
libdvdcss: upgrade 1.4.3 -> 1.5.0
hwloc: upgrade 2.12.2 -> 2.14.0
lftp: upgrade 4.9.2 -> 4.9.3
lftp: fix build with clang, lld and GCC 16 libstdc++
crash: fix bundled gdb build for C++20
crash: drop unnecessary git scaffolding from do_compile
crash: fix buildpaths QA properly via gdb --with-sysroot=/
crash: pull in gmp/mpfr for the cross variant
crash-cross-canadian: fix build, including on clang based SDKs
ifuse: upgrade 1.2.0 -> 1.2.1
pcsc-lite: upgrade 2.0.3 -> 2.5.0
ccid: upgrade 1.5.5 -> 1.8.0
libfile-slurp-perl: upgrade 9999.19 -> 9999.32
libxml-libxml-perl: upgrade 2.0134 -> 2.0213
libtest-nowarnings-perl: upgrade 1.04 -> 1.06
xdebug: upgrade 3.5.1 -> 3.5.3
apache2: upgrade 2.4.67 -> 2.4.68
xfce4-dev-tools: upgrade 4.21.0 -> 4.21.1
openvpn: upgrade 2.7.0 -> 2.7.4
libpeas-1: upgrade 1.36.0 -> 1.38.1
gnome-control-center: upgrade 49.2.2 -> 49.7
dconf-editor: upgrade 45.0.1 -> 49.0
libopenmpt: upgrade 0.8.4 -> 0.8.7
gupnp-av: upgrade 0.14.4 -> 0.14.5
aravis: upgrade 0.8.31 -> 0.8.36
dlm: upgrade 4.2.0 -> 4.3.0
rp-pppoe: upgrade 3.15 -> 4.0
nbd: upgrade 3.26.1 -> 3.27.0
libowfat: upgrade 0.32 -> 0.34
pgpool2: upgrade 4.6.6 -> 4.7.2
geoipupdate: upgrade 2.5.0 -> 3.1.1
strongswan: upgrade 6.0.6 -> 6.0.7
fetchmail: upgrade 6.6.2 -> 6.6.4
libldb: upgrade 2.8.2 -> 2.9.2
drbd: upgrade 9.2.1 -> 9.3.2
squid: upgrade 7.5 -> 7.6
ncftp: upgrade 3.2.7 -> 3.3.0
restinio: upgrade 0.6.13 -> 0.6.19
samba: upgrade 4.23.5 -> 4.23.8
libmaxminddb: upgrade 1.4.3 -> 1.13.3
networkmanager-openconnect: upgrade 1.2.8 -> 1.2.10
weechat: upgrade 4.8.2 -> 4.9.2
cpuid: upgrade 20230614 -> 20260503
cloc: upgrade 1.98 -> 2.08
giflib: upgrade 6.1.2 -> 6.1.3
abseil-cpp: upgrade 20260107.1 -> 20260526.0
poke: upgrade 4.2 -> 4.3
gst-editing-services: upgrade 1.22.7 -> 1.22.12
geany: upgrade 2.0 -> 2.1
libio-pty-perl: upgrade 1.20 -> 1.31
mercurial: upgrade 6.6.3 -> 7.2.2
gnuplot: upgrade 6.0.3 -> 6.0.4
libabigail: upgrade 2.5 -> 2.10
tiptop: upgrade 2.3.1 -> 2.3.2
tmux: upgrade 3.6a -> 3.6b
msgpack-cpp: upgrade 7.0.0 -> 8.0.0
libqb: upgrade 2.0.8 -> 2.0.10
hplip: upgrade 3.25.8 -> 3.26.4
redis: upgrade 8.0.6 -> 8.8.0
logwatch: upgrade 7.13 -> 7.14
cfengine-masterfiles: upgrade 3.26.0 -> 3.27.1
rsyslog: upgrade 8.2512.0 -> 8.2604.0
parallel: upgrade 20260422 -> 20260522
dmalloc: upgrade 5.5.2 -> 5.6.5
dash: upgrade 0.5.13.3 -> 0.5.13.4
cfengine: upgrade 3.26.0 -> 3.27.1
icewm: upgrade 3.8.2 -> 4.0.0
genimage: upgrade 19 -> 20
lcov: upgrade 1.16 -> 2.4
log4cpp: upgrade 1.1.4 -> 1.1.6
poppler: upgrade 25.12.0 -> 26.06.0
nspr: upgrade 4.38.2 -> 4.39
xmlsec1: upgrade 1.3.9 -> 1.3.11
bvi: upgrade 1.4.2 -> 1.5.0
zile: upgrade 2.4.15 -> 2.6.4
libsdl2-compat: upgrade 2.32.64 -> 2.32.70
joe: upgrade 4.6 -> 4.8
st: upgrade 0.9.2 -> 0.9.3
leptonica: upgrade 1.86.0 -> 1.87.0
gutenprint: upgrade 5.3.4 -> 5.3.5
neon: upgrade 0.34.2 -> 0.37.1
gtkwave: upgrade 3.3.122 -> 3.3.127
ttf-vlgothic: upgrade 20200720 -> 20220612
libsdl2-image: upgrade 2.8.10 -> 2.8.12
pv: upgrade 1.10.1 -> 1.10.5
xscreensaver: upgrade 6.04 -> 6.15
webkitgtk3: upgrade 2.50.6 -> 2.52.4
libopus: upgrade 1.6 -> 1.6.1
proj: upgrade 9.7.0 -> 9.8.1
nmap: upgrade 7.92 -> 7.99
telepathy-glib: upgrade 0.24.1 -> 0.24.2
ace: upgrade 8.0.5 -> 8.0.6
zabbix: upgrade 7.0.24 -> 7.0.27
libpaper: upgrade 2.2.6 -> 2.2.8
cairomm-1.16: upgrade 1.18.0 -> 1.18.1
libmtp: upgrade 1.1.21 -> 1.1.23
flashrom: upgrade 1.6.0 -> 1.7.0
ipmiutil: upgrade 3.1.9 -> 3.2.2
cairomm: upgrade 1.14.5 -> 1.14.6
ktls-utils: upgrade 1.3.0 -> 1.4.0
logcheck: upgrade 1.4.3 -> 1.4.7
libmodule-build-tiny-perl: upgrade 0.048 -> 0.053
libdata-hexdump-perl: upgrade 0.02 -> 0.04
libextutils-installpaths-perl: upgrade 0.012 -> 0.015
libextutils-parsexs-perl: upgrade 3.35 -> 3.63
libcrypt-openssl-rsa-perl: upgrade 0.37 -> 0.41
libisoburn: upgrade 1.5.6 -> 1.5.8.pl02
libisofs: upgrade 1.5.6 -> 1.5.8.pl02
libcamera: fix malformed -Wno-error=array-bounds flag
networkmanager-openconnect: only require webkit2gtk for the auth dialog
weechat: fix cross Python detection
android-libboringssl: Use discarded-qualifiers that works with clang
breakpad: fix build with GCC 16
poke: fix cross configure of bundled jitter
pstack: include <cstdint> for fixed-width integer types
gd: guard GCC-only -Wno-error=maybe-uninitialized
genimage: set pipefail shell explicitly for cross builds
mbuffer: build in-tree so mkversion.sh is found
minifi-cpp: fix fmt branch and retarget gcc-16 patch
python3-croniter: refresh trove-classifiers patch
xfce4-panel: fix redefinition of autoptr cleanup for XfceTitledDialog
pimd: skip pre-configure make clean via CLEANBROKEN
abseil-cpp: fix clang build with BMI2
pam-radius: skip pre-configure make clean via CLEANBROKEN
libmng: skip pre-configure make clean via CLEANBROKEN
procmail: drop target-only libs from native autoconf.h probe
android-tools: fix build with libstdc++ and current C++ frontends
libowfat: relax -Werror=incompatible-pointer-types for GCC 14+
assimp: disable warnings-as-errors to fix GCC 16 build
avro-c++: relax -Werror=unused-but-set-variable for GCC 16
redis-plus-plus: relax -Werror=maybe-uninitialized for GCC 16
telepathy-glib: relax -Werror=incompatible-pointer-types for GCC 14+
libyui-ncurses: fix wchar_t stream to narrow ostream for GCC 16
usbguard: fix bundled PEGTL demangle static_assert with GCC 16
tokyocabinet: drop $HOME/lib from LD_RUN_PATH to fix buildpaths QA
apitrace: do not embed source dir into binary (buildpaths QA)
freeglut: build without the glvnd distro feature for X11, Wayland and GLES
crash: Fix cross compilation for 32-bit arm
pcp: Add readline-native and ncurses-native to pcp-native DEPENDS
Leon Anavi (31):
python3-tornado: Upgrade 6.5.6 -> 6.5.7
python3-geojson: Upgrade 3.2.0 -> 3.3.0
python3-faker: Upgrade 40.21.0 -> 40.23.0
python3-traitlets: Upgrade 5.15.0 -> 5.15.1
python3-uv-dynamic-versioning: Add recipe
python3-dunamai: Add recipe
python3-httpx2: Add recipe
python3-starlette: Upgrade 1.2.1 -> 1.3.1
python3-langtable: Upgrade 0.0.70 -> 0.0.71
python3-ujson: Upgrade 5.12.1 -> 5.13.0
python3-portion: Upgrade 2.6.1 -> 2.6.2
python3-cachetools: Upgrade 7.0.4 -> 7.1.4
python3-bleak: Upgrade 3.0.1 -> 3.0.2
python3-aiodns: Upgrade 4.0.0 -> 4.0.4
python3-sh: Upgrade 2.2.2 -> 2.3.0
python3-virtualenv: Upgrade 21.4.2 -> 21.5.0
python3-fastapi: Upgrade 0.136.3 -> 0.137.1
python3-discovery: Add recipe for release 1.4.2
python3-filelock: Upgrade 3.29.1 -> 3.29.4
python3-bumble: Upgrade 0.0.228 -> 0.0.230
python3-wand: Upgrade 0.6.13 -> 0.7.1
python3-dateparser: Upgrade 1.4.0 -> 1.4.1
python3-tzlocal: Upgrade 5.3.1 -> 5.4.3
python3-autobahn: Upgrade 25.12.2 -> 26.6.1
python3-greenlet: Upgrade 3.5.1 -> 3.5.2
python3-zeroconf: Upgrade 0.149.16 -> 0.149.17
python3-zeroconf: Enable tests
python3-zeroconf: Upgrade 0.149.17 -> 0.150.0
python3-jalali-core: Add recipe
python3-jdatetime: Upgrade 5.2.0 -> 5.3.0
python3-jdatetime: Enable tests
Li Zhou (2):
minifi-cpp: revert all the paths' changes in do_install
minifi-cpp: upgrade libsodium 1.0.19 -> 1.0.20
Markus Volk (18):
exfatprogs: fix build after update
libdvdread: switch to meson buildsystem
libdvdnav: switch to meson buildsystem
libdvdcss: switch to meson buildsystem
webkitgtk3: remove backported patch
librice: add recipe
webkitgtk3: add PACKAGECONFIG for librice
eog: update 49.3 -> 50.1
hwlock: update LIC_FILES_CHECKSUM
cairomm: fix LIC_FILES_CHECKSUM
cairomm-1.16: fix LIC_FILES_CHECKSUM
gnome-disk-utility: move to dynamic-layers
packagegroup-meta-oe.bb: dont add runtime dependency on libdvdread
wireplumber: update 0.5.14 -> 0.5.15
pipewire: update 1.6.6 -> 1.6.7
xdg-desktop-portal: update 1.20.4 -> 1.22.1
librtmp: add a patch to fix build with nettle-4
flatpak: update 1.17.6 -> 1.18.0
Peter Marko (1):
libpcre: move recipe from oe-core
Qliangw (1):
libuio: fix FILE descriptor leak
Rajkumar Patel (3):
xdp-tools: add recipe
xdp-tools: upgrade 1.2.10 -> 1.6.3
rtc-testbench: add recipe
Robert Berger (1):
crash 8.0.6 -> 9.0.2 + crash-memory-driver
Sandeep J (1):
meta-webserver/README.md: update broken Yocto reference manual URL
Thomas Noack (1):
sdbus-c++-tools: upgrade 2.2.1 -> 2.3.1
Tim Orling (1):
valkey: upgrade 9.0.4 -> 9.1.0
Vyacheslav Yurkov (1):
tbb: Fix build error
Walter Werner Schneider (1):
zbar: upgrade 89e7900d85dd -> 0.23.93
Wang Mingyu (103):
opensaf: fix build error by adding const to comparators
glaze: upgrade 7.7.1 -> 7.8.1
jsoncons: upgrade 1.7.0 -> 1.8.1
ldns: upgrade 1.9.0 -> 1.9.2
liburi-perl: upgrade 5.34 -> 5.35
libxfce4ui: upgrade 4.21.7 -> 4.21.8
nss: upgrade 3.124 -> 3.125
python3-cyclonedx-python-lib: upgrade 11.8.0 -> 11.10.0
python3-elementpath: upgrade 5.1.1 -> 5.1.2
python3-google-auth: upgrade 2.53.0 -> 2.54.0
python3-huey: upgrade 3.0.1 -> 3.0.3
python3-msgpack: upgrade 1.1.2 -> 1.2.0
python3-pylint: upgrade 4.0.5 -> 4.0.6
python3-pymodbus: upgrade 3.13.0 -> 3.13.1
python3-sentry-sdk: upgrade 2.61.1 -> 2.62.0
rabbitmq-c: upgrade 0.15.0 -> 0.16.0
spitools: upgrade 1.0.2 -> 1.1.0
crash: build bundled GDB with GNU C++17
tigervnc: Update to newer version
ctags: upgrade 6.2.20260607.0 -> 6.2.20260621.0
freerdp3: upgrade 3.26.0 -> 3.27.1
glaze: upgrade 7.8.1 -> 7.8.2
haveged: upgrade 1.9.22 -> 1.9.24
imagemagick: upgrade 7.1.2-25 -> 7.1.2-26
libdbi-perl: upgrade 1.648 -> 1.649
libio-compress-perl: upgrade 2.220 -> 2.221
libnvme: upgrade 1.16.1 -> 1.16.2
libtsm: upgrade 4.5.0 -> 4.6.0
mdns: upgrade 2881.100.56.0.1 -> 2881.120.11
monit: upgrade 5.35.2 -> 6.0.0
monocypher: upgrade 4.0.2 -> 4.0.3
postfix: upgrade 3.11.3 -> 3.11.4
pugixml: upgrade 1.15 -> 1.16
python3-anyio: upgrade 4.13.0 -> 4.14.0
python3-bitarray: upgrade 3.8.1 -> 3.8.2
python3-cmake: upgrade 4.3.2 -> 4.3.4
python3-coverage: upgrade 7.14.1 -> 7.14.3
python3-cyclonedx-python-lib: upgrade 11.10.0 -> 11.11.0
python3-engineio: upgrade 4.13.2 -> 4.13.3
python3-fastapi-cli: upgrade 0.0.24 -> 0.0.27
python3-fastapi: upgrade 0.137.1 -> 0.138.0
python3-fsspec: upgrade 2026.4.0 -> 2026.6.0
python3-google-auth: upgrade 2.54.0 -> 2.55.0
python3-inline-snapshot: upgrade 0.34.1 -> 0.34.2
python3-jsbeautifier: upgrade 1.15.4 -> 2.0.1
python3-msgpack: upgrade 1.2.0 -> 1.2.1
python3-nanobind: upgrade 2.12.0 -> 2.13.0
python3-prettytable: upgrade 3.17.0 -> 3.18.0
python3-py7zr: upgrade 1.1.2 -> 1.1.3
python3-pyfuse3: upgrade 3.4.2 -> 3.5.0
python3-pyro5: upgrade 5.16 -> 5.17
python3-pytest-unordered: upgrade 0.7.0 -> 0.8.0
python3-reportlab: upgrade 4.5.1 -> 5.0.0
python3-scikit-build: upgrade 0.19.0 -> 0.19.1
python3-sentry-sdk: upgrade 2.62.0 -> 2.63.0
python3-socketio: upgrade 5.16.2 -> 5.16.3
python3-sqlalchemy: upgrade 2.0.50 -> 2.0.51
python3-svglib: upgrade 1.6.0 -> 2.0.2
python3-telnetlib3: upgrade 4.0.4 -> 4.0.5
python3-tqdm: upgrade 4.67.3 -> 4.68.3
python3-txaio: upgrade 25.12.2 -> 26.6.1
python3-virtualenv: upgrade 21.5.0 -> 21.5.1
python3-wrapt: upgrade 2.2.1 -> 2.2.2
swagger-ui: upgrade 5.32.6 -> 5.32.7
syslog-ng: upgrade 4.11.0 -> 4.12.0
xfce4-settings: upgrade 4.21.1 -> 4.21.2
7zip: upgrade 26.01 -> 26.02
ctags: upgrade 6.2.20260621.0 -> 6.2.20260628.0
fastfetch: upgrade 2.64.2 -> 2.65.2
fluentbit: upgrade 5.0.7 -> 5.0.8
gvfs: upgrade 1.60.0 -> 1.60.1
haveged: upgrade 1.9.24 -> 1.9.26
libass: upgrade 0.17.4 -> 0.17.5
libgedit-gfls: upgrade 0.4.1 -> 0.4.2
libio-socket-ssl-perl: upgrade 2.098 -> 2.099
nano: upgrade 9.0 -> 9.1
python3-aioresponses: upgrade 0.7.8 -> 0.7.9
python3-alembic: upgrade 1.18.4 -> 1.18.5
python3-anyio: upgrade 4.14.0 -> 4.14.1
python3-apiflask: upgrade 3.1.0 -> 3.1.1
python3-elementpath: upgrade 5.1.2 -> 5.1.3
python3-fastapi: upgrade 0.138.0 -> 0.138.1
python3-fastnumbers: upgrade 5.1.1 -> 5.2.0
python3-gmpy2: upgrade 2.3.0 -> 2.3.1
python3-google-auth: upgrade 2.55.0 -> 2.55.1
python3-greenlet: upgrade 3.5.2 -> 3.5.3
python3-hpack: upgrade 4.1.0 -> 4.2.0
python3-httplib2: upgrade 0.31.2 -> 0.32.0
python3-ipython: upgrade 9.14.1 -> 9.15.0
python3-mlcommons-loadgen: upgrade 6.0.14 -> 6.0.15
python3-pandas: upgrade 3.0.3 -> 3.0.4
python3-redis: upgrade 8.0.0 -> 8.0.1
python3-regex: upgrade 2026.5.9 -> 2026.6.28
python3-tox: upgrade 4.55.1 -> 4.56.1
python3-typer: upgrade 0.26.7 -> 0.26.8
python3-wand: upgrade 0.7.1 -> 0.7.2
python3-xxhash: upgrade 3.7.0 -> 3.8.0
rasdaemon: upgrade 0.8.4 -> 0.8.5
smarty: upgrade 5.8.0 -> 5.8.3
smcroute: upgrade 2.5.7 -> 2.6.0
swagger-ui: upgrade 5.32.7 -> 5.32.8
uthash: upgrade 2.3.0 -> 2.4.0
xclock: upgrade 1.1.1 -> 1.2.0
Xiaozhan Li (1):
radvd: upgrade radvd from 2.20 to 2.21
Yi Zhao (2):
vsomeip: upgrade 3.5.11 -> 3.7.3
pm-graph: fix do_package issue for nativesdk
Zheng Ruoqin (5):
freeglut-gles: Add symbol link to fix opencl-cts compile error
freeglut: Add virtual/freeglut to PROVIDES
jasper: Use virtual/freeglut instead of freeglut
ftgl: Use virtual/freeglut instead of freeglut
opencl-cts: Use virtual/freeglut instead of freeglut
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I3bf06433c957cb97bfba26092daf671d0f83b2ea
|
|
The move to qemu 11 and the enforcement of 64 bit machines broke ppc64le
machines. Add ppc64le wherever there is a ppc64 machine.
Change-Id: I866dab1745b776fcf1a1f7656e282bd41adf8d11
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 77a329d18a068dcc7d3b24c1e90826dfde45d2d1)
|
|
Antonin Godard (4):
Document shared state signing
host_packages_scripts/ubuntu_docs.sh: remove python3-saneyaml
tools/build-docs-container: add debian 11
migration-guides/migration-6.0.rst: fix wks file move note
Chen Qi (3):
ref-manual/variables.rst: add UPSTREAM_STABLE_RELEASE_REGEX and STABLE_VERSION_PARTS
ref-manual/classes.rst: add upstream-stable-release-point class documentation
ref-manual/release-process.rst: add patch acceptance policies and stable point release upgrades
Peter Marko (1):
build-manual: update ROOTFS_POSTPROCESS_COMMAND example
Quentin Schulz (1):
poky.yaml.in: bump min git version
Robert P. J. Day (30):
ref-manual: clarify that PACKAGE_EXCLUDE supports DEB packaging
dev-manual: correct example of "bitbake-layers"
dev-manual: explain how to properly call "bitbake-layers"
dev-manual: replace period with comma in list
dev-manual: drop "PREFERRED_VERSION" from x86-base.inc snippet
dev-manual: change "setup" to "set up" when used as an action
dev-manual: for testing local changes, refer to devtool section
dev-manual: fix grammatical error, missing word "with"
dev-manual: use "trade-off" as the noun
dev-manual: fix broken grammar in "Libraries" section
dev-manual: fully define SOLIBS-related variables in bitbake.conf
security-manual: some grammar and wording fixes in intro
kernel-dev: break a paragraph into a bullet list
kernel-dev: remove references to defunct LTSI project
dev-manual: update AUTOREV explanation to match current file
dev-manual: SysVinit is the default init manager for Poky
test-manual: add more detail to the ptest section
ref-manual: clarify use of "PACKAGE_ARCH" in a packagegroup
ref-manual: document RM_WORK_EXCLUDE_ITEMS variable
ref-manual: update glossary entries for packaging backend variables
ref-manual: add more explanation to glossary variable LICENSE
ref-manual: explain default value used for SUMMARY
security-manual: clarify text on avoiding root logins, empty passwords
dev-manual: mention bitbake-layers "--example-recipe-version" option
ref-manual: fix incorrect heading level for site.conf section
test-manual: grammatical and URL tweaks/additions in "Welcome" section
ref-manual: under meta/files entry, mention Wic files
ref-manual: add missing entry for build/tmp/deploy/spdx
dev-manual: rename Build Quality section to mention "buildhistory"
test-manual: clarify that ptest-runner is added automatically
Vyacheslav Yurkov (1):
migration-guide: Fix migration scripts
jaekyu.lee (1):
migration-guide: 5.1: Fix typo
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I46123d7da03bcf476575de9bbf31ee9e3a7eec15
|
|
Adrian Freihofer (7):
oe-selftest: fitimage: replace _gen_random_file with _gen_elf64_dummy
oe-selftest: fitimage: add machine-agnostic test-dtbs-as-ext recipe
oe-selftest: fitimage: replace bbb-dtbs-as-ext with test-dtbs-as-ext
oe-selftest: fitimage: replace MACHINE==qemux86-64 guards with KERNEL_SETUP_BIN
oe-selftest: fitimage: add machine settings table and skip helpers
oe-selftest: fitimage: stop hardcoding MACHINE and DISTRO in tests
oe-selftest: fitimage: Do not expect kernel property in DTBO config subnodes
Alex Kiernan (1):
dhcpcd: Add PACKAGECONFIG for seccomp
Alexander Kanavin (49):
gstreamer1.0: disable an intermittently failing test
gstreamer1.0: upgrade 1.28.2 -> 1.28.4 (the remaining pieces)
glslang: upgrade 1.4.341.0 -> 1.4.350.0
vulkan-validation-layers: upgrade 1.4.341.0 -> 1.4.350.0
spirv-tools: upgrade 1.4.341.0 -> 1.4.350.0
vulkan-tools: upgrade 1.4.341.0 -> 1.4.350.0
vulkan-loader: upgrade 1.4.341.0 -> 1.4.350.0
vulkan-utility-libraries: upgrade 1.4.341.0 -> 1.4.350.0
libmd: upgrade 1.1.0 -> 1.2.0
libslirp: upgrade 4.9.1 -> 4.9.3
libxkbcommon: upgrade 1.13.1 -> 1.13.2
minicom: upgrade 2.10 -> 2.11.1
wget: disable NTLM support
nettle: upgrade 3.10.2 -> 4.0
python3-shacl2code: upgrade 1.0.1 -> 1.1.0
which: upgrade 2.23 -> 2.25
dtc: upgrade 1.7.2 -> 1.8.1
jansson: add a recipe from meta-oe
igt-gpu-tools: upgrade 2.3 -> 2.4
libcap-ng: upgrade 0.9.1 -> 0.9.3
libfyaml: upgrade 0.9.4 -> 0.9.6
ltp: upgrade 20260130 -> 20260529
neard: upgrade 0.19 -> 0.20
perl: upgrade 5.42.0 -> 5.42.2
ppp: upgrade 2.5.2 -> 2.5.3
python3-dtc: upgrade 1.7.2 -> 1.8.1
tcf-agent: upgrade 1.9.0 -> 1.11.0
virglrenderer: upgrade 1.2.0 -> 1.3.0
strace: remove skip-bpf.patch
util-linux: upgrade 2.41.3 -> 2.42.2
lttng-tools: upgrade 2.14.1 -> 2.15.1
lttng-modules: upgrade 2.14.4 -> 2.15.1
lttng-ust: upgrade 2.14.0 -> 2.15.1
inetutils: upgrade 2.7 -> 2.8
debugedit: upgrade 5.2 -> 5.3
elfutils: upgrade 0.194 -> 0.195
libsolv: upgrade 0.7.37 -> 0.7.39
man-pages: upgrade 6.17 -> 6.18
parted: upgrade 3.6 -> 3.7
librsvg: upgrade: 2.62.2 -> 2.62.3
vte: upgrade 0.82.2 -> 0.84.0
ovmf: upgrade edk2-stable202511 -> edk2-stable202605
gn: upgrade to latest revision
pkgconf: exclude pre-releases from version checks
webkitgtk: upgrade 2.50.6 -> 2.52.4
systemtap: upgrade 5.4 -> 5.5
kea: upgrade 3.0.3 -> 3.2.0
boost: upgrade 1.90.0 -> 1.91.0
oeqa: allow exceptions in buildpath HOME checks
Anders Heimer (14):
package_manager/ipk: fix dummy install arguments
archiver: fix .pc tar exclude pattern
oe: pass gcc and tmux commands as lists
oe/patch: drop shell=True from runcmd
oeqa/oelib: add runcmd tests
oe/patch: convert simple runcmd shell callers
oe/patch: avoid shell pipeline in _applypatch
oe/patch: remove obsolete PATCHFILE assignment
oeqa/oelib: test GitApplyTree patch names
oe/patch: pass GitApplyTree commands as argv lists
oe/patch: return manual-resolution commands as argv lists
oeqa/oelib: test patch command argv handling
package: replace copydebugsources shell pipelines
oeqa/selftest: add copydebugsources tests
Ankur Tyagi (3):
wireless-regdb: upgrade 2026.03.18 -> 2026.05.30
ca-certificates: upgrade 20260223 -> 20260601
mpg123: upgrade 1.33.5 -> 1.33.6
Antoine Gouby (1):
mesa: fix INSANE_SKIP package name for mesa-gl
Anton Skorup (1):
libxml2: patch CVE-2026-11979
Benjamin Robin (Schneider Electric) (4):
python3-spdx-python-model: update from version 0.0.5 to 0.0.6
python3-sbom-cve-check: update to version 1.3.2
sbom-cve-check-update-cvelist-native: update to version 2026-06-24
sbom-cve-check-update-nvd-native: update to version 2026.06.24-000003
Bruce Ashfield (1):
kern-tools: bump SRCREV for conditional 'depends on X if Y' support
Changqing Li (1):
diffstat: upgrade 1.68 -> 1.69
Colin Pinnell McAllister (1):
gstreamer1.0-plugins-good: remove dangling libsoup2 ref
Daniel Turull (4):
libssh2: fix CVE-2026-55200
libssh2: fix CVE-2026-55199
dlopen-deps.inc: treat soname list as ordered alternatives
bc: set CVE_PRODUCT
Deepesh Varatharajan (2):
cargo-c: update 0.10.22 -> 0.10.23
llvm/mesa/rust: simplify llvm-config handling
Denys Dmytriyenko (1):
wayland-protocols: upgrade 1.48 -> 1.49
Dmitry Baryshkov (1):
bitbake.conf: drop opencl from DISTRO_FEATURES_FILTER_NATIVE/_NATIVESDK
Eric Meyers (1):
create-spdx-image-3.0: correct SSTATE_SKIP_CREATION key for do_create_image_sbom_spdx
Florin Diaconescu (1):
scripts/rpm2cpio.sh: Use 'xz -dc' instead of xzcat
Hangtian Zhu (1):
wpa-supplicant: add PACKAGECONFIG controls for suiteb, wnm, and mbo
Hemanth Kumar M D (2):
binutils: Upgrade to 2.46.1 release
sanity.bbclass: warn on cargo config files outside the build tree
Hiago De Franco (1):
nospdx: also drop do_create_recipe_sbom
Himanshu Jadon (1):
tar: Fix CVE-2026-5704
Jaeyoon Jung (2):
multilib: extend variables after packages split
oeqa/selftest/pkgdata: add a test for variable consistency in multilib
Jaipaul Cheernam (5):
install-buildtools: auto-discover environment setup script via glob
binutils: Fix CVE-2026-6846
cmake-native: prevent host libidn2 contamination
install-buildtools: refactor fetch and install logic
install-buildtools: add --local-file option
John Ripple (2):
go-vendor.bbclass: Unpack into BP for destsuffix
go-vendor.bbclass: Remove vendor symlink
Joshua Watt (2):
ffmpeg, x264: Add comment about circular dependency
spdx: Add custom annotations to recipe packages
João Marcos Costa (7):
ptest-packagelists.inc: disable glib-2.0 for RISCV64
local.conf.sample.extended: update fortran example
llvm-project-source.inc: fix string replacements in do_preconfigure
llvm-project-source.inc: fix end of line in triple variable
clang/llvm: add missing instance of Distro class in Linux.cpp
common-clang.inc: fix undefined name in get_clang_arch
clang_git.bb: remove dangling comment
Jörg Sommer (1):
less: upgrade 692 -> 704
Khem Raj (2):
jansson: Fix build with lld linker
baremetal-helloworld: Fix override order
Kris Gavvala (2):
libcap: add ptest support
python3: skiptest tracemalloc_track_race
Leon Anavi (2):
python3-uritools: Upgrade 6.1.0 -> 6.1.2
python3-numpy: Upgrade 2.4.6 -> 2.5.0
Luca Fancellu (2):
e2fsprogs: fix parallel library build ordering
ncurses: fix split wide library and pkg-config installs
Marek Vasut (2):
kernel-fit-image.bbclass: Do not include kernel property in DTBO config subnodes
kernel-fit-image.bbclass: Fix operation with KERNEL_DTBVENDORED = "1"
Markus Volk (1):
curl: update 8.20.0 -> 8.21.0
Michael Tretter (1):
busybox: fdisk: enable GPT support
Moritz Haase (1):
createrepo-c: upgrade 1.2.3 -> 1.2.4
Nate Kent (1):
sudo: fix pam-wheel sed for sudo 1.9.17p2 sudoers
Nico (1):
systemd-boot: remove unused variables
Nicolas Dechesne (2):
alsa-ucm-conf: upgrade 1.2.15.3 -> 1.2.16.1
alsa-ucm-conf: remove stale comment
Omkar Patil (1):
libinput: fix CVE-2026-50292
Otavio Salvador (1):
quota: use native rpcgen and a single-word RPCGEN_CPP
Paul Barker (5):
libportal: upgrade 0.9.1 -> 0.10.0
bind: upgrade 9.20.23 -> 9.20.24
lsof: upgrade 4.99.6 -> 4.99.7
python3-dtschema: upgrade 2026.4 -> 2026.6
ffmpeg: upgrade 8.1.1 -> 8.1.2
Peter Kjellerstedt (3):
common-licenses/PHP-3.0: Correct the license text
common-licenses: Remove unused licenses
toaster.bbclass: Support layers that are not Git repositories
Peter Marko (7):
openssl: upgrade 3.5.6 -> 3.5.7
python3: upgrade 3.14.5 -> 3.14.6
vex: drop obsolete conflict check with cve-check class
recipetool: remove handling of libpcre
slang: disable pcre packageconfig by default
wget: remove pcre packageconfig option
libpcre: remove recipe
Peter Tatrai (1):
rust: backport explicit-tail-calls test skips for unsupported LLVM targets
Ricardo Salveti (1):
uboot-sign: allow customizing the FIT configuration description
Richard Purdie (65):
oeqa/maturin: Update dependency version
sanity: Update minimum git version to 2.22.0
classes/lib: Start to convert strings to lists of command parameters
diffoscope: upgrade 318 -> 319
gst-devtools: upgrade 1.28.2 -> 1.28.4
gstreamer1.0-libav: upgrade 1.28.2 -> 1.28.4
gstreamer1.0-python: upgrade 1.28.2 -> 1.28.4
gstreamer1.0: upgrade 1.28.2 -> 1.28.4
libmodulemd: upgrade 2.15.2 -> 2.15.3
python3-maturin: upgrade 1.13.3 -> 1.14.0
python3-pyopenssl: upgrade 26.2.0 -> 26.3.0
python3-uv-build: upgrade 0.11.17 -> 0.11.21
stress-ng: upgrade 0.21.00 -> 0.21.03
ccache: upgrade 4.13.5 -> 4.13.6
enchant2: upgrade 2.8.15 -> 2.8.16
glib-2.0: Upgrade 2.88.0 -> 2.88.1
libadwaita: upgrade 1.9.0 -> 1.9.1
libdrm: upgrade 2.4.133 -> 2.4.134
libgit2: upgrade 1.9.2 -> 1.9.4
libgpg-error: upgrade 1.60 -> 1.61
libksba: upgrade 1.6.8 -> 1.8.0
libusb1: upgrade 1.0.29 -> 1.0.30
libxmlb: upgrade 0.3.26 -> 0.3.27
mkfontscale: upgrade 1.2.3 -> 1.2.4
puzzles: upgrade to latest revision
python3-cryptography{,vectors}: upgrade 48.0.0 -> 48.0.1
python3-cython: upgrade 3.2.4 -> 3.2.5
python3-docutils: upgrade 0.22.4 -> 0.23
python3-hatchling: upgrade 1.29.0 -> 1.30.1
python3-hypothesis: upgrade 6.152.4 -> 6.155.2
python3-idna: upgrade 3.17 -> 3.18
python3-lxml: upgrade 6.1.0 -> 6.1.1
python3-meson-python: upgrade 0.19.0 -> 0.20.0
python3-numpy: upgrade 2.4.5 -> 2.4.6
python3-pdm-backend: upgrade 2.4.8 -> 2.4.9
python3-pdm: upgrade 2.26.8 -> 2.27.0
python3-pip: upgrade 26.1.1 -> 26.1.2
python3-pygobject: upgrade 3.56.2 -> 3.56.3
python3-snowballstemmer: upgrade 3.1.0 -> 3.1.1
python3-trove-classifiers: upgrade 2026.4.28.13 -> 2026.6.1.19
python3-wcwidth: upgrade 0.7.0 -> 0.8.1
python3-click: upgrade 8.3.3 -> 8.4.1
python3-click: Fixes for new pytest and flaky ptest
python3-pytest: upgrade 9.0.3 -> 9.1.0
repo: upgrade 2.63 -> 2.64
rpcbind: upgrade 1.2.8 -> 1.2.9
rsync: upgrade 3.4.2 -> 3.4.4
ruby: upgrade 4.0.3 -> 4.0.5
spirv-headers: upgrade 1.4.341.0 -> 1.4.350.0
sqlite3: upgrade 3.53.0 -> 3.53.2
taglib: upgrade 2.2.1 -> 2.3
tcl8: upgrade 8.6.17 -> 8.6.18
ttyrun: upgrade 2.42.0 -> 2.42.1
utfcpp: upgrade 4.0.9 -> 4.1.1
vulkan-headers: upgrade 1.4.341.0 -> 1.4.350.0
vulkan-samples: upgrade to latest revision
vulkan-volk: upgrade 1.4.341.0 -> 1.4.350.0
xserver-xorg: upgrade 21.1.22 -> 21.1.23
xwayland: upgrade 24.1.11 -> 24.1.12
fastfloat: upgrade 8.2.5 -> 8.2.10
lighttpd: upgrade 1.4.82 -> 1.4.83
alsa-lib: upgrade 1.2.15.3 -> 1.2.16.1
README.qemu: Update to match current architecture support
README: Merge OE-Core and QEMU READMEs into one
sstate: Reduce native sysroot execution race potential
Robert P. J. Day (3):
packagegroup-core-base-utils.bb: delete duplicate "PACKAGE_ARCH" line
recipes.txt: correct misspelled "utilties"
cpio_2.15.bb: delete unnecessary RDEPENDS of "ptest-runner"
Robert Yang (1):
strace: upgrade 6.19 -> 7.0
Ross Burton (18):
less: clean up recipe
libaio: update SRC_URI
libinput: upgrade 1.30.2 -> 1.31.3
waffle: upgrade 1.8.1 -> 1.8.2
tcl: disable the timer tests in run-ptest
libjitterentropy: fix license statement
rng-tools: remove obsolete CFLAGS
lib/sstatesig: use the SHA256 fastpath in bitbake/utils.py
shared-mime-info: remove python3native dependency
classes/gtk-doc: inherit python3native only if gtk-doc is enabled
qemu: set the compilation progress bar flag
pango: upgrade 1.57.1 -> 1.58.0
gdk-pixbuf: upgrade 2.44.6 -> 2.44.7
avahi: upgrade 0.9-rc4 -> 0.9-rc5
glib-2.0: refresh gio-querymodules install path patch
classes/meson: use ninja explicitly when compiling
systemd-systemctl-native: update MESON_TARGET for direct ninja use
systemd-systemctl-native: remove systemd-sysv-install logic
Sai Sneha (1):
i2c-tools: add LGPL-2.1-or-later license for libi2c
Siva Balasubramanian (2):
qemuboot.bbclass: add missing task dependency on kernel deploy
oeqa/selftest/devtool: add regression test for kernel cfg in subdirs
Sunil Dora (1):
clang/llvm: Upgrade to 22.1.8 release
Theo Gaige (Schneider Electric) (1):
perl: patch CVE-2026-8376
Tim Orling (3):
python3-cryptography{-vectors}: upgrade 48.0.1 -> 49.0.0
python3-maturin: upgrade 1.14.0 -> 1.14.1
python3-certifi: upgrade 2026.5.20 -> 2026.6.17
Trevor Gamblin (7):
scripts/patchtest: refactor results methods
scripts/patchtest: clean up startTestRun()
scripts/patchtest: simplify _runner()
scripts/patchtest: simplify traceback logging, remove whitespace
scripts/patchtest: simplify run()
scripts/patchtest: clean up main()
scripts/patchtest: check for meta-selftest
Ulrich Ölmann (1):
terminal.bbclass: fix typo
Vivek Puar (2):
linux-firmware: upgrade 20260519 -> 20260622
maintainers.inc: update ownership for linux-firmware
Walter Werner Schneider (1):
devtool: provide explicit error for missing "script" command
Wang Mingyu (14):
alsa-utils: upgrade 1.2.15.2 -> 1.2.16
barebox/barebox-tools: upgrade 2026.04.0 -> 2026.06.0
btrfs-tools: upgrade 6.19.1 -> 7.0
dos2unix: upgrade 7.5.5 -> 7.5.6
dropbear: upgrade 2025.89 -> 2026.91
file: upgrade 5.47 -> 5.48
fontconfig: upgrade 2.17.1 -> 2.18.1
gpgme: upgrade 2.0.1 -> 2.1.0
harfbuzz: upgrade 14.2.0 -> 14.2.1
hwdata: upgrade 0.406 -> 0.408
kbd: upgrade 2.9.0 -> 2.10.0
sbom-cve-check-update-nvd-native: upgrade 2026.05.07-000006 -> 2026.06.09-000006
ghostscript: upgrade 10.07.0 -> 10.07.1
mesa: upgrade 26.0.6 -> 26.1.2
Wei Gao (1):
dmidecode: fix x86-only tools being installed on ARM targets
Xiaozhan Li (1):
texinfo: add missing perl module runtime dependencies
Yoann Congal (1):
dropbear: Add missing WTFPL & Unlicense in LICENSE and LIC_FILES_CHKSUM
Zheng Ruoqin (1):
vim-tiny: bugfix for lack of defaults.vim
Zhixiong Chi (1):
python3-cython: make generated _cyutility.c be reproducible
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I38a743d8dc63990a1fdf2d11eaf51936fbf11852
|
|
Sandeep J (1):
README.md: update broken Yocto Project branding URL
Change-Id: I20dfdbb9424d8e5b4525a165a6ef3b43e62967bb
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Arthur Cassegrain (1):
arm/trusted-services: enable devtool modify for ts-psa-api-test
Harsimran Singh Tungal (4):
arm-bsp/documentation: corstone1000: update 2026.05 wrynose release documentation
arm-bsp/documentation: corstone1000-a320: update 2026.05 wrynose release documentation
fvp:corstone1000-a320: update Corstone-1000 A320 FVP to 11.31
ci: enable testimage coverage for Corstone-1000 A320 FVP
Jon Mason (11):
CI: use Musca S1 for LTS testing
arm/trusted-firmware-m: Add 2.3.0 Support
arm/trusted-firmware-m: remove 2.1.4
arm/trusted-firmware-a: Add support for v2.15.0
arm/trusted-firmware-a: remove older LTS versions
arm/trusted-firmware-a: Update LTS to 2.14.2
arm/trusted-firmware-a: Update git recipe to the latest commit
arm/uefi: update edk2-firmware to 202605
arm/opencsd: upgrade to v1.8.2
arm/optee: update to 4.10.0
arm/u-boot: fix uefi-secureboot on u-boot v2026.04
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I84f269bc81198ac3c0917ad9dc214e6cf21997b0
|
|
Alexander Kanavin (1):
fetch/wget/_check_latest_version_by_dir: correct iterative check of versioned directories
Anders Heimer (9):
fetch2/az: fix wget command argument construction
fetch2/git: avoid an empty argument to git lfs fetch
fetch2/git: do not shell-quote the shallow clone remote
fetch2/git: keep the gitpkgv commit count numeric
fetch2/gitannex: split the annex get arguments
fetch2/repo: fix mirror tar command arguments
fetch2/sftp: fix port and remote command arguments
fetch2/svn: remove shell quotes from the tar exclusion
toaster: preserve shell execution for build launch commands
Antonin Godard (1):
contrib/prserv/Dockerfile: remove non-existent codegen.py
David Reyna (1):
toaster: confirm bitbake version in 'gen_fixtures.py'
Gabriel Smith (1):
fetch2/crate: support user-defined protocols
Nick Owens (1):
fetch2: accept sha256 revisions
Paul Barker (1):
README: Update minimum Python version
Richard Purdie (2):
bin/*: Add/improve __version__ processing
data: Optimise renameVar when a variable doesn't exist
Rob Woolley (12):
bitbake-setup: Resolve unused loop control variables
bitbake-setup: Fix ambiguous variable names
bitbake-setup.schema.json: Add title for schema
bitbake-setup.schema.json: Add examples property
bitbake-setup.schema.json: Use anyOf for non-disjoint subschemas
bitbake-setup.schema.json: Remove trailing period
layers.schema.json: Add missing schema
layers.schema.json: Add title for subschema
layers.schema.json: Add examples property
layers.schema.json: Remove trailing period
layers.schema.json: Fix typo in property name
bitbake-setup: Add exception for E402 for bb.__version__
Thune Tran (1):
fetch2: export AWS_SHARED_CREDENTIALS_FILE for S3 fetches
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I74d3d9700ba66e48b9306c8547d698bd12c8c77a
|
|
Dmitry Baryshkov (3):
mariadb: fix building for the ARMv8.3-A and later systems
freeglut: split normal and gles packages
android-tools-conf-configs: revert deletion of the recipe
Jörg Sommer (1):
gpsd: Add ncurses-terminfo to RRECOMMENDS
Khem Raj (16):
python3-pathtools3: remove dead recipe
python3-pytest-cache: remove dead recipe
webrtc-audio-processing: drop obsolete 0.3.1 recipe
pegtl: Upgrade to 4.0.0
mbuffer: upgrade 20140310 -> 20260511
font-adobe-100dpi: upgrade 1.0.3 -> 1.0.4
font-adobe-utopia-100dpi: upgrade 1.0.4 -> 1.0.5
font-bh-100dpi: upgrade 1.0.3 -> 1.0.4
font-bh-lucidatypewriter-100dpi: upgrade 1.0.3 -> 1.0.4
font-bitstream-100dpi: upgrade 1.0.3 -> 1.0.4
font-cursor-misc: upgrade 1.0.3 -> 1.0.4
font-misc-misc: upgrade 1.1.2 -> 1.1.3
libextutils-config-perl: upgrade 0.008 -> 0.010
libmodule-pluggable-perl: upgrade 5.2 -> 6.3
libtext-diff-perl: upgrade 1.41 -> 1.45
python3-scapy: Replace oe.utils.all_distro_featuresc with bb.utils.filter
Li Zhou (1):
minifi-cpp: upgrade 0.99.1 -> 0.99.2
Markus Volk (2):
gd: disable maybe-uninitialized error
nspr: align 0005-Makefile.in-remove-_BUILD_STRING-and-_BUILD_TIME.patch
Mingli Yu (5):
xfce4-cpufreq-plugin: Fix aggregate init failure with gcc16
xfce4-sensors-plugin: Fix aggregate init failure with gcc16
minifi-cpp: Fix build with gcc 16
freeradius: Fix do_patch fuzz QA Issue
mariadb: Upgrade 11.4.10 -> 11.4.12
Naman Jain (1):
nftables: Conditionally add ${PN}-python as RDEPENDS for ptest
Nora Schiffer (1):
kernel-selftest: do not run 'make clean'
Ryan Eatmon (1):
opencl-cts: update to release 2026-05-05
Srikanth Patchava (1):
chore: add .editorconfig and .gitattributes
Wang Mingyu (30):
boost-sml: upgrade 1.1.13 -> 1.2.0
ctags: upgrade 6.2.20260531.0 -> 6.2.20260607.0
fastfetch: upgrade 2.64.0 -> 2.64.2
fluentbit: upgrade 5.0.6 -> 5.0.7
freeipmi: upgrade 1.6.17 -> 1.6.18
freeradius: upgrade 3.2.9 -> 3.2.10
hiredis: upgrade 1.3.0 -> 1.4.0
imagemagick: upgrade 7.1.2-24 -> 7.1.2-25
libdbi-perl: upgrade 1.647 -> 1.648
pcsc-tools: upgrade 1.7.4 -> 1.7.5
proftpd: upgrade 1.3.9a -> 1.3.9b
python3-beautifulsoup4: upgrade 4.14.3 -> 4.15.0
python3-cbor2: upgrade 6.1.1 -> 6.1.2
python3-cmd2: upgrade 3.5.1 -> 4.0.0
python3-cyclonedx-python-lib: upgrade 11.7.0 -> 11.8.0
python3-faker: upgrade 40.19.1 -> 40.21.0
python3-filelock: upgrade 3.29.0 -> 3.29.1
python3-inline-snapshot: upgrade 0.34.0 -> 0.34.1
python3-ipython: upgrade 9.14.0 -> 9.14.1
python3-pyais: upgrade 3.0.1 -> 3.1.0
python3-pytest-aiohttp: upgrade 1.1.0 -> 1.1.1
python3-python-multipart: upgrade 0.0.30 -> 0.0.32
python3-rich-toolkit: upgrade 0.19.10 -> 0.20.1
python3-sentry-sdk: upgrade 2.61.0 -> 2.61.1
python3-tox: upgrade 4.55.0 -> 4.55.1
python3-typer: upgrade 0.26.4 -> 0.26.7
python3-uefi-firmware: upgrade 1.13 -> 1.16
python3-uvicorn: upgrade 0.44.0 -> 0.49.0
spectre-meltdown-checker: upgrade 26.33.0420460 -> 26.36.0602723
python3-aiohttp: upgrade 3.13.5 -> 3.14.1
Yogesh Tyagi (1):
xdotool: avoid running host ldconfig during do_install
Zeming LIU (1):
Add ptest support for googletest
Change-Id: I101397cc86d04dcf7834c3f6289644accbbc27be
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Jon Mason (4):
arm/optee: modify CVE_PRODUCT
arm/trusted-firmware-a: modify CVE_PRODUCT
arm/trusted-firmware-m: add CVE_PRODUCT
arm/scp-firmware: add CVE_PRODUCT
Ross Burton (4):
CI: remove cve.yml and NVDCVE_API_KEY
CI: default CACHE_DIR to CI_PROJECT_DIR
CI: use a single multiline script statement in .build
CI: add option to control whether warnings should be fatal or not
Change-Id: I8ffcfcfc8f34b57cbe94af1462ffca4ef3ca8f43
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Andreas Mützel (1):
fetch2: make unpack_tracer available when fetching mirror URLs
Antonin Godard (1):
doc/bitbake-user-manual-ref-variables: document BB_CONSOLE_LOG's persistence
David Reyna (1):
toaster: sync release list for Toaster, test, and Layer Index
Ernest Van Hoecke (1):
bitbake-setup: always write newline at end of the README
Richard Purdie (2):
lib: Drop pyinotify
lib/bb: Further shell=True cleanups
Rob Woolley (1):
lib: Vendorize bundled third-party libraries under bb._vendor
Change-Id: I008d607a47a5845a56ccbfa768a1776155d6b972
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
oe.utils.all_distro_features is being removed.
Suggested-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
(cherry picked from commit 47ab5b9a8d28f1b6ee236d451273ab93a4f128a0)
Change-Id: I290f8c6d7b98eebbc426d9741ee81e278e3bbb2c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Antonin Godard (12):
migration-guides: add Blacksail release note templates
ref-manual/variables.rst: link *MIRRORS definitions to the BitBake manual
overview-manual/concepts: image-generation.png: convert to SVG
overview-manual/concepts: sdk-generation.png: convert to SVG
overview-manual/concepts: images.png: convert to SVG
overview-manual/concepts: sdk.png: convert to SVG
overview-manual/concepts: cross-development-toolchains.png: convert to SVG
overview-manual/concepts: user-configuration.png: convert to SVG
overview-manual/concepts: layer-input.png: convert to SVG
overview-manual/concepts: source-input.png: convert to SVG
overview-manual/concepts: package-feeds.png: convert to SVG
overview-manual/svg: remove white backgrounds
Lee Chee Yang (1):
migration-guide: add release notes for 5.0.18
Marta Rybczynska (1):
security-team.rst: update my email address and key
Paul Barker (3):
security-team: Update membership list
security-team: Tidy and update section on security team operations
security-team: Add section on multi-project embargoes
Peter Marko (1):
dev-manual: remove semicolons for rootfs commands
Robert P. J. Day (16):
overview-manual: remind reader that meta-poky is a distro layer
overview-manual: fix typo, "semi-colon" -> "colon"
overview-manual: hyphens not allowed in file version
recipe-style-guide.rst: two minor grammatical tweaks
bsp-guide: mention bootloader and device tree in BSP intro
bsp-guide: update guide to reflect newer beaglebone
overview-manual: inform the reader early of "bitbake-getvar"
bsp-guide: simplify example of structure of BSP layer
overview-manual: add ":term:" for OE Build System
overview-manual: explain "ODM" and "OSV" acronyms
overview-manual: provide a more expansive definition of "layer"
overview-manual: correct that "conf" is a subdir of build dir
overview-manual: mention that patch files can be compressed
overview-manual: use correct spelling "counterpart"
overview-manual: update deploy.bbclass snippet
contributor-guide: couple minor typo/grammar fixes
Change-Id: I3281f148ba350a09dd5ed13e5f97eca17a15a22f
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Adarsh Jagadish Kamini (1):
libpcap: fix error message on 32-bit integer overflow
Aditya GS (2):
gawk: backport randtest stability fix
gawk: add Signed-off-by to randtest backport
Adrian Freihofer (2):
oeqa/selftest/fitimage: fix missing whitespace around assignment
uboot-sign: sign SPL FIT into a copy of the SPL DTB
Alexander Kanavin (8):
libslirp: fix upstream version check
python3-chardet: lock version check to 6.x versions
oeqa/selftest: test_testimage_virgl_gtk_sdl: run only if gtk or sdl are enabled in base config
python3-qemu-qmp: add a recipe
Revert "oeqa/selftest: test_testimage_virgl_gtk_sdl: run only if gtk or sdl are enabled in base config"
qemu: upgrade 10.2.0 -> 11.0.0
qemu: upgrade 11.0.0 -> 11.0.1
qemu: add a workaround patch to address crashes in x11-only setups
Bin Cao (2):
python3: sanitize userbase in _sysconfig_vars JSON to avoid host path leak
insane.bbclass: check for build host HOME directory in packaged files
Bruce Ashfield (7):
linux-yocto/6.18: update to v6.18.32
linux-yocto/6.18: qat/intel configuration warning fixes
linux-yocto-dev: bump to v7.1
lttng-modules: fix build against kernel 7.1+
linux-yocto/6.18: update to v6.18.33
linux-yocto/6.18: update to v6.18.34
linux-yocto/6.18: update to v6.18.35
Changqing Li (2):
cgo-helloworld: init add
libxi: upgrade 1.8.2 -> 1.8.3
Chen Qi (3):
recipeutils: add optional stable_upgrade parameter to get_recipe_upgrade_status
upstream-stable-release-point.bbclass: add bbclass for stable point upgrade
devtool/upgrade.py: add --stable option
Daniel Turull (1):
devtool: upgrade: extract changelog between versions
Deepesh Varatharajan (1):
rust: Upgrade 1.95.0 -> 1.96.0
Eric Meyers (1):
npm: Convert to list-based commands for NpmEnvironment.run()
Haiqing Bai (2):
python3-pyelftools: upgrade 0.32 -> 0.33
xev: upgrade 1.2.6 -> 1.2.7
Haixiao Yan (1):
subversion: fix svn-revision.txt conflict when building for qemux86-64
Harish Sadineni (1):
perf: disable BUILD_BPF_SKEL by default
Hemanth Kumar M D (7):
gcc: Upgrade GCC to 16.1 release
gcc-runtime: disable automatic libatomic linking during build
gcc-runtime: package new libatomic_asneeded files
gcc-runtime: avoid passing MULTIBUILDTOP to libatomic
gcc: i386: fix ICE with -ffloat-store and SSE [PR125308]
glibc: disable automatic libatomic linking
libc-test: limit libatomic-staticdev ptest dependency to GCC
Jan Vermaete (1):
python3-requests: Cleanup recipe
Jate Sujjavanich (1):
udev-extraconf: use -H for unmount tmpfile find
Jesse Van Gavere (1):
rust: export CARGO_BUILD_TARGET
Jinfeng Wang (1):
bind: upgrade 9.20.22 -> 9.20.23
Jinwang Li (1):
bluez5: fix set volume failure
Joshua Watt (10):
mobile-broadband-provider-info: Fix license to be CC-PDDC
gettext-minimal-native: Use SPDX License Identifier
glib-2.0: Change from Public Domain to Gnome GCR Documentation License
python3-pyelftools: Update license to Unlicense
ttf-bitstream-vera: Use SPDX license identifier
sqlite3: Use SPDX identifier
pixman: Change PD license to HPND-sell-variant
util-macros: Remove redundant MIT license
classes/baremetal-image: Remove "do_" prefix from image manifest
spdx: Reformat
Jörg Sommer (3):
diffoscope: Upgrade 317 -> 318
python3-idna: Upgrade 3.13 -> 3.17
net-tools: Handle binmerge
Mark Hatle (1):
pseudo: Update to version 1.9.8
Mark Jonas (1):
libsdl2: Fix compilation error with DirectFB
Martin Jansa (1):
clang/llvm: Upgrade to 22.1.6 release
Mengshi Wu (1):
bluez5: fix gatt cache sync issue
Mingli Yu (1):
valgrind: Upgrade 3.27.0 -> 3.27.1
Moritz Haase (1):
cmake: upgrade 4.3.2 -> 4.3.3
Niko Mauno (2):
sbom-cve-check-common: Fatalize command failure
sbom-cve-check: Fix breakage with empty IMAGE_LINK_NAME
Peter Kjellerstedt (8):
staging.bbclass: Correct a typo
useradd.bbclass: Some clean-ups and simplifications
useradd.bbclass: Add support for USERMOD_PARAM
useradd_base.bbclass: Emulate the groupmems command using usermod
useradd.bbclass: Show a deprecation warning if GROUPMEMS_PARAM is used
extrauser.bbclass: Switch from using --root to --prefix
archiver.bbclass: Properly remove artifacts when configuration changes
oeqa/selftest/archiver: Do not run bitbake -c clean unnecessarily
Peter Marko (3):
go: upgrade 1.26.3 -> 1.26.4
vex: remove obsolete semicolon
rootfs: move tasks using image_list_installed_packages to postuninstall
Peter Tatrai (1):
time64: enable 64-bit time/file-offset flags for 32-bit nativesdk
Prabhudasu Vatala (1):
conf/machine: fix typos in ARM and x86 README files
Pratik Farkase (2):
libatomic-ops: add ptest support
libxslt: add ptest support
Ricardo Salveti (1):
u-boot: move DT validation yaml removal patch to SRC_URI
Richard Purdie (13):
xserver-xorg/xwayland: 'Clarify' xserver license
xwayland: upgrade 24.1.9 -> 24.1.11
xserver-xorg/xwayland: Drop X11-swapped from LICENSE
dropbear: Clarify LICENSE and drop PD
python3-pycryptodome: Update LICENSE PD -> Unlicense
ppp: Remove PD license
xorg-minimal-fonts: Note where the binaries are built from
sysstat: Add missing xz-native DEPENDS
base: Allow zstd and xz decompression from the host tools
gettext: Add missing xz-native DEPENDS for reproducibility
oe/utils: Drop all_distro_features
oe/utils: Drop any_distro_features
checklayer: Improve debug output
Robert Yang (1):
nfs-utils: 2.8.7 -> 2.9.1
Ross Burton (12):
linux-yocto: remove CVE exclusion list, sbom-cve-check does this itself
matchbox-panel-2: backport patch to set a constant size for the clock
kea: add comment about soon-redundant options
classes/gtk-icon-cache: fix libdir passed to the postrm intercept
oeqa/core/runner: stub addDuration in OETestResult
avahi: upgrade 0.8 -> 0.9-rc4
python3: use += instead of :append in SKIPPED_TESTS
curl: fix mbedtls detection
libedit: upgrade 20251016 -> 20260512
python3: reference upstream ticket in a test skip
lib/oe/recipeutils: make stable_upgrade argument optional in get_recipe_upstream_version()
libedit: fix build on clang+musl
Rouven Czerwinski (5):
package_manager: sdk: remove install_order
package_manager: rootfs: remove install_order
package_manager: remove [True, False] list eval
documentation.conf: remove do_package_write_tar doc
nopackages: remove do_package_write_tar deltask
Sai Sneha (1):
python3: Fix ThreadingMock call_count race condition
Sunil Dora (4):
glibc: fix CVE-2026-5450
gdb: Upgrade 17.1 -> 17.2
clang/llvm: Upgrade to 22.1.5 release
clang/llvm: Upgrade to 22.1.7 release
Tan Siewert (1):
tune-cortexa9: add tunes without VFP enabled
Tim Orling (14):
python_uv_build: add PEP-517 backend class
python3-uv-build: upgrade 0.11.14 -> 0.11.17
python3-cryptography{-vectors}: upgrade 46.0.7 -> 48.0.0
at-spi2-core: upgrade 2.60.3 -> 2.60.4
python3-certifi: upgrade 2026.4.22 -> 2026.5.20
python3-poetry-core: upgrade 2.3.2 -> 2.4.1
python3-pytz: upgrade 2026.1 -> 2026.2
python3-rpds-py: upgrade 0.30.0 -> 2026.5.1
python3-snowballstemmer: upgrade 3.0.1 -> 3.1.0
python3-wcwidth: upgrade 0.6.0 -> 0.7.0
python3-zipp: upgrade 3.23.1 -> 4.1.0
python3-packaging: upgrade 26.0 -> 26.2
vim: upgrade 9.2.0340 -> 9.2.0569
curl: upgrade 8.19.0 -> 8.20.0
Trevor Gamblin (1):
python3: use SKIPPED_TESTS instead of test skip patches
Tushar Darote (1):
gstreamer1.0-plugins-bad: handle padded buffers in wl_shm buffer creation
Wei Deng (1):
bluez5: set L2CAP IMTU for OBEX profile listeners
Wei Zhang (1):
wpa_supplicant: Handle invalid op_class 255 in BSS Transition candidates
Yash Shinde (6):
python3-maturin: upgrade 1.13.1 -> 1.13.3
python3-numpy: upgrade 2.4.4 -> 2.4.5
python3-pip: upgrade 26.1 -> 26.1.1
python3-pyopenssl: upgrade 26.1.0 -> 26.2.0
python3-requests: upgrade 2.33.1 -> 2.34.2
python3-urllib3: upgrade 2.6.3 -> 2.7.0
xiuzhuo.shang@oss.qualcomm.com (1):
bluez5: Fix sending extra bytes with MGMT_OP_ADD_EXT_ADV_DATA
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I176504d75ab4cb2e872debbd8f7cd64cce91684c
|
|
Abhishek Bachiphale (1):
dnsmasq: upgrade 2.92 -> 2.93
Adam Duskett (1):
tailscale: upgrade 1.94.2 -> 1.98.3
Alex Kiernan (3):
mdns: Add PACKAGECONFIGs for idlesleepcontrol, spc and unicast
mdns: Unpick directory changes during install
mdns: Add additional clients
Alexander Yurkov (2):
syslog-ng: Add backport patches from syslog-ng.
syslog-ng: Add an option to make awk optional.
Ankur Tyagi (3):
freeradius: upgrade 3.2.8 -> 3.2.9
python3-django: upgrade 6.0.5 -> 6.0.6
python3-django: upgrade 5.2.14 -> 5.2.15
Anton Skorup (1):
jq: patch CVE-2026-47770
Antonios Christidis (1):
ktx-software: Version change 4.4.0 -> 5.0.0
AshishKumar Mishra (4):
android-tools: remove android-tools 5.x from meta-oe/recipes-devtools
android-tools: move android-tools v29.x from dynamic-layers/selinux to meta-oe
android-tools: removes selinux dependency from android-tools_29.0.6.r14.bb
android-tools: fix deprecated header warning from clang
Bin Cao (1):
nodejs: fix v8 -Wtemplate-body build error with GCC 15 on ia32
Etienne Cordonnier (1):
uutils-coreutils: upgrade 0.8.0 -> 0.9.0
Filipe Pires (3):
igmpproxy: upgrade 0.3 -> 0.4
vnstat: upgrade 2.6 -> 2.13
miniupnpd: upgrade 2.1.20191006 -> 2.3.10
Guocai He (1):
postgresql: fix CVE-2026-6479
Jason Schonberg (2):
gsoap: upgrade 2.8.137 -> 2.8.142
php: upgrade 8.5.6 -> 8.5.7
Jörg Sommer (2):
ssh-audit: Add 3.3.0 of ssh configuration auditing tool
zsh: Upgrade 5.9 -> 5.9.1
Kamlesh Gurudasani (1):
libwebsockets: fix build against OpenSSL 3.5
Khem Raj (1):
nodejs: Delete clang libatomic patch
Leon Anavi (1):
python3-cbor2: Upgrade 5.9.0 -> 6.1.1
Li Zhou (1):
minicoredumper: upgrade 2.0.7 -> 2.0.8
Mark Jonas (1):
libsdl2-net: Ensure packaging of SDL2_net.pc
Markus Klotzbuecher (1):
libpwquality: make python bindings optional via PACKAGECONFIG
Markus Volk (8):
mpv: add PACKAGECONFIG for mpris
playerctl: add recipe
jsoncpp: add a backport patch to fix build with gcc16
jemalloc: add backport patch to fix build with gcc 16
libcamera: add workaround to fix build with gcc 16
pipewire: update 1.6.5 -> 1.6.6
libsdl2-net: remove backport patch
miniupnpd: fix build
Martin Jansa (1):
cunit: set CLEANBROKEN
Max Krummenacher (1):
fio: fix build with musl
Peter Kjellerstedt (2):
php: Correct the license to PHP-3.01
ttf-dejavu: Use "Bitstream-Vera" instead of "BitstreamVera" as license
Riku Voipio (1):
edit: add recipe for 2.0.0 version
Shilong Jiao (1):
lcms: add ptest support
Tafil Avdyli (1):
fastfetch: upgrade 2.63.1 -> 2.64.0
Telukula Jeevan Kumar Sahu (2):
kernel-selftest: add libcap to build and runtime dependencies
kernel-selftest: add generic architecture-independent self-tests
Wang Mingyu (94):
python3-simplejson: Use pep517-backend Fixes
ctags: upgrade 6.2.20260510.0 -> 6.2.20260524.0
drm-framebuffer: upgrade 0.1 -> 1.0.0
fluentbit: upgrade 5.0.5 -> 5.0.6
glaze: upgrade 7.6.0 -> 7.7.0
graphviz: upgrade 14.1.5 -> 15.0.0
haveged: upgrade 1.9.20 -> 1.9.22
libdevmapper,lvm2: upgrade 2.03.40 -> 2.03.41,2.03.40 -> 2.03.41
libfido2-initial: upgrade 1.16.0 -> 1.17.0
libhtml-parser-perl: upgrade 3.83 -> 3.85
libio-compress-perl: upgrade 2.219 -> 2.220
libjs-jquery-cookie: upgrade 3.0.5 -> 3.0.7
librole-tiny-perl: upgrade 2.002004 -> 2.002005
libsdl2-net: upgrade 2.2.0 -> 2.4.0
libtorrent: upgrade 0.16.11 -> 0.16.12
memcached: upgrade 1.6.41 -> 1.6.42
microsoft-gsl: upgrade 4.2.1 -> 4.2.2
nbdkit: upgrade 1.47.8 -> 1.47.9
nss: upgrade 3.123.1 -> 3.124
poco: upgrade 1.15.2 -> 1.15.3
postfix: upgrade 3.11.2 -> 3.11.3
python3-aiohappyeyeballs: upgrade 2.6.1 -> 2.6.2
python3-black: upgrade 26.3.1 -> 26.5.1
python3-decorator: upgrade 5.2.1 -> 5.3.1
python3-engineio: upgrade 4.13.1 -> 4.13.2
python3-faker: upgrade 40.18.0 -> 40.19.1
python3-fastapi: upgrade 0.136.1 -> 0.136.3
python3-gevent: upgrade 26.4.0 -> 26.5.0
python3-google-auth: upgrade 2.52.0 -> 2.53.0
python3-greenlet: upgrade 3.5.0 -> 3.5.1
python3-libusb1: upgrade 3.3.1 -> 3.4.0
python3-m2crypto: upgrade 0.47.0 -> 0.48.0
python3-pika: upgrade 1.4.0 -> 1.4.1
python3-pyais: upgrade 3.0.0 -> 3.0.1
python3-pyjwt: upgrade 2.12.1 -> 2.13.0
python3-pymysql: upgrade 1.1.3 -> 1.2.0
python3-pytest-codspeed: upgrade 5.0.2 -> 5.0.3
python3-python-multipart: upgrade 0.0.28 -> 0.0.29
python3-responses: upgrade 0.26.0 -> 0.26.1
python3-rich-toolkit: upgrade 0.19.9 -> 0.19.10
python3-setuptools-git-versioning: upgrade 3.0.1 -> 3.1.0
python3-socketio: upgrade 5.16.1 -> 5.16.2
python3-soupsieve: upgrade 2.8.3 -> 2.8.4
python3-sqlalchemy: upgrade 2.0.49 -> 2.0.50
python3-starlette: upgrade 1.0.0 -> 1.1.0
python3-stevedore: upgrade 5.7.0 -> 5.8.0
python3-telnetlib3: upgrade 2.6.0 -> 4.0.4
python3-types-psutil: upgrade 7.2.2.20260508 -> 7.2.2.20260518
python3-vector: upgrade 1.8.0 -> 1.8.1
python3-wrapt: upgrade 2.1.2 -> 2.2.1
python3-yarl: upgrade 1.23.0 -> 1.24.2
python3-zeroconf: upgrade 0.148.0 -> 0.149.16
rtorrent: upgrade 0.16.11 -> 0.16.12
sdbus-c++: upgrade 2.2.1 -> 2.3.1
unbound: upgrade 1.25.0 -> 1.25.1
wireshark: upgrade 4.6.5 -> 4.6.6
xfsprogs: upgrade 7.0.0 -> 7.0.1
ctags: upgrade 6.2.20260524.0 -> 6.2.20260531.0
debootstrap: upgrade 1.0.143 -> 1.0.144
evince: upgrade 48.1 -> 48.4
exiftool: upgrade 13.58 -> 13.59
gdm: upgrade 50.0 -> 50.1
glaze: upgrade 7.7.0 -> 7.7.1
imagemagick: upgrade 7.1.2-23 -> 7.1.2-24
libgphoto2: upgrade 2.5.33 -> 2.5.34
libjs-jquery-cookie: upgrade 3.0.7 -> 3.0.8
libsdl3: upgrade 3.4.8 -> 3.4.10
libwacom: upgrade 2.18.0 -> 2.19.0
libxfce4windowing: upgrade 4.20.5 -> 4.20.6
opencl-clhpp: upgrade 2025.07.22 -> 2026.05.29
opencl-headers: upgrade 2025.07.22 -> 2026.05.29
opencl-icd-loader: upgrade 2025.07.22 -> 2026.05.29
python3-coverage: upgrade 7.14.0 -> 7.14.1
python3-httptools: upgrade 0.7.1 -> 0.8.0
python3-inline-snapshot: upgrade 0.33.0 -> 0.34.0
python3-ipython: upgrade 9.13.0 -> 9.14.0
python3-moteus: upgrade 0.3.101 -> 1.0.0
python3-parse: upgrade 1.22.0 -> 1.22.1
python3-platformdirs: upgrade 4.9.6 -> 4.10.0
python3-pyproject-api: upgrade 1.10.0 -> 1.10.1
python3-pytest-asyncio: upgrade 1.3.0 -> 1.4.0
python3-python-multipart: upgrade 0.0.29 -> 0.0.30
python3-redis: upgrade 7.4.0 -> 8.0.0
python3-sentry-sdk: upgrade 2.60.0 -> 2.61.0
python3-serpent: upgrade 1.42 -> 1.43
python3-service-identity: upgrade 24.2.0 -> 26.1.0
python3-starlette: upgrade 1.1.0 -> 1.2.1
python3-tornado: upgrade 6.5.5 -> 6.5.6
python3-tox: upgrade 4.54.0 -> 4.55.0
python3-typer: upgrade 0.25.1 -> 0.26.4
python3-virtualenv: upgrade 21.3.3 -> 21.4.2
python3-zopeinterface: upgrade 8.4 -> 8.5
sshfs-fuse: upgrade 3.7.5 -> 3.7.6
xlsclients: upgrade 1.1.5 -> 1.1.6
Wei Zhang (1):
hostapd: Fix clearing settings for color switch
Wenlin Kang (1):
xfce4-panel: backport patches to fix build failure
Zeming LIU (1):
hunspell: add ptest support
Change-Id: I335a3e525b2576d3a7781a679997434569ae3d4d
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Jörg Sommer (1):
rpi-base: Use MACHINE_FEATURES_DEFAULTS instead of MACHINE_FEATURES
Max Stepanov (1):
linux-raspberrypi-6.12: Upgrade to 6.12.87
Michael Weiß (1):
linux-raspberrypi: switch protocol of yocto-kernel-cache to https
Paolo Barbolini (1):
linux-raspberrypi: add recipe for 6.18
Samuli Piippo (1):
gstreamer1.0-plugins-bad: enable v4l2codecs
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I534aa769e6959fbc6b6d877f6a34ee74b08efdc8
|
|
Anders Heimer (4):
hashserv/tests: use valid 64-character unihashes
hashserv: validate unihash values
fetch2/wget: limit auth on checkstatus redirects
tests/fetch: cover checkstatus redirect auth handling
Antonin Godard (1):
doc/bitbake-user-manual-ref-variables: extend the MIRRORS documentation
David Reyna (1):
toaster: use https for clones, remove cgit in links in defaults
Ernest Van Hoecke (1):
bitbake-setup: write notes for generated build configs
Jörg Sommer (1):
utils.contains,_any: Fix description of return value
Nathaniel White (1):
fetch/s3: Fix number of format string arguments
Peter Kjellerstedt (1):
tinfoil: Only allow one process progress bar at once (continued)
Richard Purdie (5):
fetch2: Reorder unpack code to facilitate changes
fetch: Abstract command execution in unpack()
fetch2: Improve environment handling in unpack()
fetch2: Convert parts of unpack() to use parameter lists
fetch: Improve tar pipeline unpack commands
Change-Id: Iacdd9f85d649b5df047e863ab379d37e9c828962
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Jon Mason (2):
arm/tf-a-tests: Workaround GCC errors for 'unused-but-set-variable'
arm/ts-sp-common: Workaround unused-but-set-variable errors
Michael Safwat (2):
runfvp: add --dry-run option
arm-bsp/docs: corstone1000-a320: Add standalone A320 documentation
Change-Id: I9edd2a3e2f7871a054fc7820299244e7a700fef7
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Anders Heimer (2):
fetch2/git: quote shallow extra ref arguments
fetch2: Unpack RPMs with --no-absolute-filenames
Ernest Van Hoecke (1):
bitbake-setup: clarify configuration merging
Richard Purdie (14):
bitbake-setup: Convert string commands to lists where possible
tests/{fetch,setup}: Convert string commands to lists
lib/bb: Convert string commands to bb.process.run to lists where possible
tests/setup: Convert string commands to lists for runbbsetup
lib/layerindex/cooker: Convert string commands to lists where possible
bb/fetch2: Improve runfetchcmd environment handling
fetch2: Allow runfetchcmd to handle lists of command arguments
fetch/{git,gitannex,gitsm}: Convert to use lists of command arguments
fetch/wget: Convert to use lists of command arguments
fetch/{sftp,ssh}: Convert to use lists of command arguments
fetch/svn: Convert to use lists of command arguments
fetch/{npm,npmsw}: Convert to use lists of command arguments
fetch/{clearcase,gomod,hg,perforce,repo,s3}: Convert to use lists of command arguments
fetch2: Drop shell=True from runfetchcmd
Change-Id: I57f77b4fb21ef8fac726a74a40cf405071231b0f
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Abhishek Bachiphale (6):
dnsmasq: fix CVE-2026-2291
dnsmasq: fix CVE-2026-4890
dnsmasq: fix CVE-2026-4891
dnsmasq: fix CVE-2026-4892
dnsmasq: fix CVE-2026-4893
dnsmasq: fix CVE-2026-5172
Adam Duskett (2):
plymouth: upgrade 24.004.60 -> 26.124.222
kmscon: fix zlib cross-compiling errors
Ankur Tyagi (7):
python3-django: upgrade 5.2.13 -> 5.2.14
python3-django: upgrade 6.0.4 -> 6.0.5
nginx: upgrade 1.30.0 -> 1.30.1
freerdp3: upgrade 3.25.0 -> 3.26.0
libjcat: upgrade 0.2.3 -> 0.2.6
imagemagick: upgrade 7.1.2-22 -> 7.1.2-23
nginx: upgrade 1.30.1 -> 1.30.2
Felix Piedallu (1):
lvm2: Do not install sbin/dmvdostats to sysroot
Guocai He (1):
postgresql: upgrade 17.8 -> 17.10
Jiaying Song (1):
layer.conf: remove dead BBFILES_DYNAMIC entry for clang-layer
Khem Raj (1):
python3-orjson: Upgrade to 3.11.9
Markus Volk (1):
xdg-desktop-portal-gnome: remove gnome-shell runtime dependency
Tim Orling (2):
nodejs-oe-cache-native: upgrade to version 24.16
nodejs: upgrade 22.22.3 -> 24.16.0 (LTS)
Wang Mingyu (41):
python3-pycurl: Use pep517-backend Fixes
bit7z: upgrade 4.0.11 -> 4.0.12
catch2: upgrade 3.14.0 -> 3.15.0
ctags: upgrade 6.2.20260426.0 -> 6.2.20260510.0
dovecot: upgrade 2.4.3 -> 2.4.4
fastfetch: upgrade 2.62.1 -> 2.63.1
gnome-text-editor: upgrade 50.0 -> 50.1
imagemagick: upgrade 7.1.2-21 -> 7.1.2-22
lcms: upgrade 2.19 -> 2.19.1
libei: upgrade 1.5.0 -> 1.6.0
libsdl2-mixer: upgrade 2.8.1 -> 2.8.2
libsdl3-mixer: upgrade 3.2.0 -> 3.2.2
lldpd: upgrade 1.0.21 -> 1.0.22
python3-coverage: upgrade 7.13.5 -> 7.14.0
python3-faker: upgrade 40.15.0 -> 40.18.0
python3-flask-jwt-extended: upgrade 4.7.3 -> 4.7.4
python3-huey: upgrade 3.0.0 -> 3.0.1
python3-inline-snapshot: upgrade 0.32.7 -> 0.33.0
python3-mdit-py-plugins: upgrade 0.6.0 -> 0.6.1
python3-meh: upgrade 0.52 -> 0.53
python3-myst-parser: upgrade 5.0.0 -> 5.1.0
python3-pandas: upgrade 3.0.2 -> 3.0.3
python3-paramiko: upgrade 4.0.0 -> 5.0.0
python3-pytest-codspeed: upgrade 4.5.0 -> 5.0.2
python3-python-multipart: upgrade 0.0.27 -> 0.0.28
python3-regex: upgrade 2026.4.4 -> 2026.5.9
python3-reportlab: upgrade 4.5.0 -> 4.5.1
python3-rich-toolkit: upgrade 0.19.7 -> 0.19.9
python3-sentry-sdk: upgrade 2.59.0 -> 2.60.0
python3-thrift: upgrade 0.22.0 -> 0.23.0
python3-tomlkit: upgrade 0.14.0 -> 0.15.0
python3-tox: upgrade 4.53.1 -> 4.54.0
python3-twisted: upgrade 25.5.0 -> 26.4.0
python3-typeguard: upgrade 4.5.1 -> 4.5.2
python3-virtualenv: upgrade 21.3.1 -> 21.3.3
swagger-ui: upgrade 5.32.5 -> 5.32.6
uriparser: upgrade 1.0.1 -> 1.0.2
xfsdump: upgrade 3.2.0 -> 3.3.0
tigervnc: Fix do_configure Error
procmail: Add -std=gnu17 to fix error of do_compile
python3-ldap: upgrade 3.4.5 -> 3.4.7
Yi Zhao (1):
jemalloc: fix version string
sjiao (1):
openjpeg: add ptest support
Change-Id: Icc9657de835ca0861110107c796b3a0911cbc581
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Anton Antonov (2):
parsec-service: Update Parsec service version.
meta-parsec: Do not run Parsec CI jobs on 32bit platforms.
Bin Cao (1):
samhain: upgrade 4.5.2 -> 4.5.3
Li Zhou (3):
firejail: fix COMPATIBLE_MACHINE setting
layer.conf: correct WARN_QA
aide-base.bbclass: correct STAGING_AIDE_DIR
Peter Marko (2):
tpm2-tools: make efivar optional
tpm2-pkcs11: upgrade 1.9.1 -> 1.9.2
Ross Burton (3):
parsec-service: assign PACKAGECONFIG in one line
parsec-service: do group membership modifications in useradd
parsec-service: update TS group name
Yi Zhao (1):
arpwatch: fix typos
jason.lau (2):
google-authenticator-libpam: update 1.0.9 -> 1.11
aide: fix pkg_postinst_ontarget shell script
Change-Id: I2c00effb57ada7a42cf64893a40de7de4c021e7e
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alex Chapman (4):
arm-bsp/tf-a: corstone1000: Fix Cortex-A320 errata override
arm-bsp/docs,kas:corstone1000: Add SSH image build support
arm-bsp:corstone1000: Create a standalone corstone1000-a320-fvp machine
arm/edk2-basetools-native: Add missing libuuid dependency
Gyorgy Sarvari (1):
arm/trusted-firmware-a: don't set LD if LTO is enabled
Hugues KAMBA MPIANA (1):
ci: Add Corstone-1000 with Cortex-A320 builds
Marek Bykowski (1):
arm-bsp: use IMAGE_LINK_NAME for FVP disk image path
Michael Safwat (1):
arm-bsp/docs: corstone1000: Drop A320 content from base documentation
Ross Burton (1):
CI: use kas 5.2
Change-Id: I14610d8e2e05292299a5474c5ec8c75cd7eaf76e
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Anders Heimer (2):
fetch2: validate deb/ipk data member names
fetch2: validate striplevel parameter
Chen Qi (5):
fetch2/git.py: add filter_regex parameter to latest_versionstring
fetch2/wget.py: add filter_regex parameter to latest_versionstring
fetch2/crate.py: add filter_regex parameter to latest_versionstring
fetch2/__init__.py: add filter_regex to default latest_versionstring
bb/tests/fetch.py: add case for filter_regex parameter in latest_versionstring
Jamin Lin (1):
fetch2/git: Fix trailing slash in clone command causing double slash in alternates
Change-Id: Ie77e433ebc43a3c7c085655dbb47df1ebd00f7d3
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Lee Chee Yang (4):
release-note-6.0: update downloads section
release-note-6.0: update several section
migration-guide: add release notes for 4.0.35
migration-guide: add release notes for 5.3.4
Minwoo Choi (1):
ref-manual/variables: document the 'dynamic layer' concept
Quentin Schulz (11):
migration-guides: fix https:// prefix missing in anonymous reference
ref-manual: classes: fix https:// prefix missing in anonymous reference
migration-guides: migration-6.0: reword meta-poky templates removal
migration-guides: migration-6.0: fix grammar and missing word
migration-guide: migration-6.0: fix typos in cve-check removal
migration-guides: release-notes-6.0: fix typo in documentation changes
ref-manual: classes: add missing "task" after create_recipe_sbom
ref-manual: fix "include to" grammar for UKI_DEVICETREE
ref-manual: fragments: fix style inconsistencies
ref-manual: variables: add hyphen to "space separated"
ref-manual: variables: add hyphen to "space separated" and "auto generated"
Robert P. J. Day (12):
index.rst: update "Software Overview" to "Technical Overview"
yp-intro.rst: delete really old references
yp-intro.rst: add link to "buildbot"
YP Quick Build: delete extraneous periods in list
YP Quick Build: use "set up" as a verb
Quick Build guide: Various pedantic cleanups
"Transitioning ..." doc: Various pedantic cleanups
What I Wish I'd KNown: Various pedantic cleanups
ref-manual: replace "naive" with "simple"
overview-manual: fix "checkout" versus "check out"
overview-manual: add a few more basic Git commands
contributor-guide: fix type "maintainance" to "maintenance"
Change-Id: I542b7c096a38906edd9ce49bed34e7989b5a1f15
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alexander Kanavin (1):
python3targetconfig: pull in nativesdk python when building nativesdk recipes
Andrej Valek (1):
busybox: 1.37.0 -> 1.38.0
Deepesh Varatharajan (1):
rust: Upgrade 1.94.1 -> 1.95.0
George Refseth (1):
cargo_common.bbclass: add subdir argument to git dependency to let cargo find crate
Hemanth Kumar M D (6):
piglit:backport a fix for building with gcc-16
rxvt-unicode: backport a fix for building with gcc-16
gn: fix build with GCC 16 on musl
elfutils: add libatomic-dev to ptest RDEPENDS
libc-test: add libatomic-staticdev to ptest RDEPENDS
gcc/libgfortran: package libcaf libraries
Jamin Lin (1):
kernel-fit-image: Validate key files expected by mkimage for the selected algorithm
Jinwang Li (1):
bluez5: add patches to fix 8.56 gatt issue
Joshua Watt (2):
spdx: Use checksum list from bitbake
spdx: Add SHA 512 support
João Marcos Costa (6):
vim: simplify PACKAGECONFIG's default value
ovmf: simplify PACKAGECONFIG's default value
ovmf: drop upstreamed BUILD_CFLAGS setting
ovmf: add support for Clang toolchain
nativesdk.bbclass: remove obsolete comment
default-distrovars.inc: add missing spaces in append overrides
Khem Raj (1):
python3-uv-build: Update python3-uv-build from 0.11.8 to 0.11.14
Li Zhou (1):
xrandr: upgrade 1.5.3 -> 1.5.4
Marcus Flyckt (1):
initramfs-framework: overlayroot: switch_root instead of chroot
Peter Marko (1):
gnutls: upgrade 3.8.12 -> 3.8.13
Quentin Schulz (1):
squashfs-tools: add another CPE
Richard Purdie (3):
layer.conf: Update to use blacksail release series name
licenses: Update with the pull-sdpx-licenses.py script to 3.28.0
scripts: Fix typo in pull-spdx-licenses script name
Ross Burton (11):
libportal: add explicit PACKAGECONFIG for gtk4 support
libportal: split out GTK libraries into sub-packages
gcr: remove obsolete DEPENDS
gcr: remove obsolete packaging
gcr: package the ssh-agent into a separate package
librsvg: remove dependency on liberation-fonts
librsvg: add PACKAGECONFIGs for avif and gdkpixbuf
librsvg: upgrade 2.61.3 -> 2.62.2
python3-installer: upgrade 0.7.0 -> 1.0.1
nasm: remove groff-native dependency
groff: build less in groff-native
Thomas Perrot (1):
cve-check-map.conf: fix typo in comment
Vivek Puar (1):
linux-firmware: upgrade 20260410 -> 20260519
Yash Shinde (1):
cargo-c: update 0.10.21 -> 0.10.22
Change-Id: I6da319466965a5697c881d72d6dc70506cef9e10
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Changqing Li (1):
postfix: upgrade 3.10.9 -> 3.11.2
Ernest Van Hoecke (1):
jsoncpp: Fix C++11 ABI breakage when compiled with C++17
Fabian Pflug (1):
pkcs11-provider: fix build error on 32 bit systems
He Zhe (1):
bpftool-native: Fix -Wdiscarded-qualifiers errors for glibc 2.42+
Hongxu Jia (2):
thin-provisioning-tools: fix compile failure on 32bit BSPs
7zip: do not provide p7zip
Jason Schonberg (4):
orage: upgrade 4.20.2 -> 4.20.3
webmin: upgrade 2.630 -> 2.641
nodejs: upgrade 22.22.2 -> 22.22.3
xfce4-appfinder: upgrade 4.21.0 -> 4.21.1
Khem Raj (4):
python3-croniter: Fix build with newer trove and pathspec modules
python3-cucumber-tag-expressions: Fix build with newer uv build
python3-pychromecast: Fix build with wheel 0.47
procmail: Upgrade to 3.24
Markus Volk (1):
pipewire: update 1.6.3 -> 1.6.5
Piotr Wejman (1):
nftables: add systemd PACKAGECONFIG
Ross Burton (7):
iwd: depend on the regulatory database
libdazzle: add recipe (from oe-core)
libhandy: add recipe (from oe-core)
gnome-calendar: remove obsolete dependencies, clean up recipe
file-roller: drop libhandy dependency
gnome-system-monitor: remove obsolete dependencies
nautilus: update dependencies
Wang Mingyu (57):
botan: upgrade 3.11.1 -> 3.12.0
btop: upgrade 1.4.6 -> 1.4.7
doxygen: upgrade 1.16.1 -> 1.17.0
exiftool: upgrade 13.57 -> 13.58
feh: upgrade 3.12.1 -> 3.12.2
fluentbit: upgrade 5.0.3 -> 5.0.5
hiawatha: upgrade 12.1 -> 12.2
htop: upgrade 3.5.0 -> 3.5.1
hunspell: upgrade 1.7.2 -> 1.7.3
libauthen-sasl-perl: upgrade 2.1800 -> 2.2000
libcgi-perl: upgrade 4.71 -> 4.72
libdevmapper,lvm2: upgrade 2.03.39 -> 2.03.40,2.03.39 -> 2.03.40
libgsf: upgrade 1.14.56 -> 1.14.58
libio-socket-ssl-perl: upgrade 2.096 -> 2.098
libnet-dns-perl: upgrade 1.53 -> 1.54
libnet-dns-sec-perl: upgrade 1.26 -> 1.27
libsdl3: upgrade 3.4.4 -> 3.4.8
libtest-harness-perl: upgrade 3.50 -> 3.52
libtorrent: upgrade 0.16.10 -> 0.16.11
pure-ftpd: upgrade 1.0.53 -> 1.0.54
python3-drgn: upgrade 0.1.0 -> 0.2.0
python3-flask-jwt-extended: upgrade 4.7.1 -> 4.7.3
python3-fsspec: upgrade 2026.3.0 -> 2026.4.0
python3-git-pw: upgrade 2.8.0 -> 2.8.1
python3-google-auth-oauthlib: upgrade 1.3.1 -> 1.4.0
python3-google-auth: upgrade 2.49.2 -> 2.52.0
python3-gunicorn: upgrade 25.3.0 -> 26.0.0
python3-jedi: upgrade 0.19.2 -> 0.20.0
python3-matplotlib-inline: upgrade 0.2.1 -> 0.2.2
python3-mdit-py-plugins: upgrade 0.5.0 -> 0.6.0
python3-parse: upgrade 1.21.1 -> 1.22.0
python3-parso: upgrade 0.8.6 -> 0.8.7
python3-pika: upgrade 1.3.2 -> 1.4.0
python3-pycurl: upgrade 7.45.7 -> 7.46.0
python3-pymisp: upgrade 2.5.33.2 -> 2.5.34.1
python3-pymysql: upgrade 1.1.2 -> 1.1.3
python3-pytest-codspeed: upgrade 4.4.0 -> 4.5.0
python3-reportlab: upgrade 4.4.10 -> 4.5.0
python3-rich-argparse: upgrade 1.7.2 -> 1.8.0
python3-sentry-sdk: upgrade 2.58.0 -> 2.59.0
python3-tox: upgrade 4.53.0 -> 4.53.1
python3-traitlets: upgrade 5.14.3 -> 5.15.0
python3-typer: upgrade 0.25.0 -> 0.25.1
python3-types-psutil: upgrade 7.2.2.20260408 -> 7.2.2.20260508
python3-ujson: upgrade 5.12.0 -> 5.12.1
python3-virtualenv: upgrade 21.3.0 -> 21.3.1
python3-web3: upgrade 7.12.1 -> 7.16.0
python3-wtforms: upgrade 3.2.1 -> 3.2.2
rtorrent: upgrade 0.16.10 -> 0.16.11
unbound: upgrade 1.24.2 -> 1.25.0
valkey: upgrade 9.0.3 -> 9.0.4
wireshark: upgrade 4.6.4 -> 4.6.5
xfsprogs: upgrade 6.18.0 -> 7.0.0
xterm: upgrade 409 -> 410
znc: upgrade 1.10.1 -> 1.10.2
magic-enum: upgrade 0.9.7 -> 0.9.8
pgpool2: 4.6.4 -> 4.6.6
Change-Id: I867bc0905fc4ec1d9a6bfb0c90ce246f52da51b8
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Paul Barker (1):
prserv/Dockerfile: Update to Alpine 3.23
Change-Id: Ie6a77d932a8fab0319bbf5fb47587dbba57069f2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Antonin Godard (18):
conf.py: add a :yocto_bug: role
migration-guides/release-notes-6.0.rst: add known KVM issue
migration-guides/migration-6.0.rst: document the CVE_PRODUCT behavior change
tools/build-docs-container: add missing leap 16.0 in help message
tools/build-docs-container: add CentOS 10 support
ref-manual/system-requirements.rst: add CentOS 10 as a supported distro
docs-wide: drop documentation for cve-check and variables
ref-manual/variables.rst: document the SBOM_CVE_CHECK_SHOW_WARNINGS variable
security-manual/vulnerabilities.rst: require Upstream-Status, not recommend
security-manual/vulnerabilities.rst: refresh the document after cve-check removal
migration-guides/migration-6.0.rst: add migration notes on cve-check removal
migration-guides/release-notes-6.0.rst: cover recent changes
migration-guides/release-notes-6.0.rst: add license changes
migration-guides/release-notes-6.0.rst: update CVE fixes
migration-guides/release-notes-6.0.rst: add recipe version changes
migration-guides/migration-6.0.rst: mention python3-roman-numerals-py rename
migration-guides/release-notes-6.0.rst: add contributors
ref-manual/variables: IMAGE_TYPES: add new wicenv type
Dawid Bijak (1):
overview-manual/concepts.rst: fix do_prepare_recipe_sysroot task description
Robert P. J. Day (1):
dev-manual: "--runonly" should be "--runall"
Change-Id: I20f472930d483debeeaec1d7a5f57cdfc00ff7b6
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Adam Blank (2):
lib/packagedata.py: slight improvement to code readability
sstate: remove dead code and unify path operations
Alexander Kanavin (1):
sbom-cve-check: set PV from upstream tags and ensure version checks are correct
Andrew Geissler (1):
efivar: Backport patch to fix -march issue for ppc64le
Ankur Tyagi (2):
tzdata/tzcode-native: upgrade 2026a -> 2026b
wireless-regdb: upgrade 2026.02.04 -> 2026.03.18
Antonin Godard (1):
mirrors: remove inactive sources.openembedded.org URLs
Benjamin Robin (Schneider Electric) (3):
python3-sbom-cve-check: Update to version 1.3.1
sbom-cve-check-update-cvelist-native: Update source revision
sbom-cve-check-update-nvd-native: Update source revision
Bin Cao (1):
scripts/cve-json-to-text.py: simplify getopt argument parsing
Bruce Ashfield (6):
linux-yocto/6.18: update to v6.18.25
linux-yocto/6.18: update CVE exclusions (6.18.25)
linux-yocto/6.18: update to v6.18.26
linux-yocto/6.18: update CVE exclusions (6.18.26)
linux-yocto/6.18: update to v6.18.28
linux-yocto/6.18: update CVE exclusions (6.18.28)
Changqing Li (1):
gstreamer1.0-plugins-bad: disble vulkan when x11/wayland not enabled
Corentin Guillevic (1):
sanity: add check for own-mirrors/SOURCE_MIRROR_URL
Daniel McGregor (1):
python3-requests: update to 2.33.1
Denys Dmytriyenko (2):
wayland: upgrade 1.24.0 -> 1.25.0
weston: upgrade 15.0.0 -> 15.0.1
Dmitry Sakhonchik (1):
shadow-native: Change upstream status of disable_syslog.patch
Himanshu Jadon (2):
apr: Add CVE_PRODUCT to support product name
apr-util: Add CVE_PRODUCT to support product name
Ivan Nestlerode (1):
glibc: Fix recipe bug that disabled stack protector
Joao Marcos Costa (2):
u-boot-tools: drop yaml in DT validation
u-boot-tools: drop the hardlink workaround in do_compile
João Marcos Costa (3):
soc-family.inc: improve clarity at MACHINEOVERRIDES's prepend
meta: simplify conditional operations with bb.utils.filter
insane: simplify conditional operations with bb.utils.filter
Khem Raj (8):
gn: upgrade to latest revision
dos2unix: upgrade 7.5.4 -> 7.5.5
python3-pdm-backend: upgrade 2.4.7 -> 2.4.8
python3-pdm: upgrade 2.26.6 -> 2.26.7
python3-lxml: upgrade 6.0.2 -> 6.0.4
re2c: upgrade 4.4 -> 4.5.1
libmpc: Upgrade to 1.4.0
u-boot-tools: Add dependency on libyaml for dtschema validation
Leonardo Costa (1):
bluez5: add patches to fix 8.56 cli issues
Li Wang (1):
perf: add PACKAGECONFIG for llvm
Marcus Flyckt (1):
initramfs-framework: overlayroot: Don't assume rootfs location
Mingli Yu (1):
valgrind: Upgrade 3.26.0 -> 3.27.0
Moritz Haase (2):
cmake: upgrade 4.3.1 -> 4.3.2
devtool: Disable gpg signing when setting up source tree repos
Paul Barker (1):
oe/lsb: Only read /etc/os-release
Peter Marko (49):
shadow: set CVE_PRODUCT
ruby: set status for CVE-2025-0306
python3-setuptools: set status for CVE-2024-6345
p11-kit: set status for CVE-2026-2100
libva: set status for CVE-2023-39929
harfbuzz: set status for CVE-2024-56732
gnutls: set status for CVE-2026-1584
cve-extra-exclusions: ignore CVE-2019-2708
bind: set status for CVE-2017-3139
base-files: set status for CVE-2018-6557
rsync: set status for CVE-2024-12084
python3-requests: set status for CVE-2024-35195
python3-requests: set status for CVE-2024-47081
git: set status of 5 CVEs
cargo: set status of CVE-2023-40030
cargo: set CVE_PRODUCT
ovmf: set status for 7 CVEs
sed: upgrade 4.9 -> 4.10
expat: upgrade 2.7.5 -> 2.8.0
ffmpeg: set status for 4 CVEs
coreutils: set CVE_PRODUCT
cups: upgrade 2.4.16 -> 2.4.19
libsoup: set status for CVE-2026-2436
libsoup: patch CVE-2026-5119
sudo: set CVE_PRODUCT
libsoup: set status for CVE-2026-2369
libmicrohttpd: set status for CVE-2025-59777 and CVE-2025-62689
libsdl2: set status for CVE-2026-35444
libcap: set status for CVE-2026-4878
libarchive: set status for CVE-2026-4426
libgcrypt: upgrade 1.12.1 -> 1.12.2
libpng: upgrade 1.6.56 -> 1.6.58
python3-lxml: upgrade 6.0.4 -> 6.1.0
tiff: patch CVE-2026-4775
sudo: patch CVE-2026-35535
libssh2: patch CVE-2026-7598
inetutils: patch CVE-2026-32772
libarchive: set status of CVE-2026-5745
perf: make libraries for install_headers configurable
rpm-sequoia: set status for CVE-2026-2625
libxml2: set status for CVE-2026-6732
gdk-pixbuf: set status for 2.44.6
xserver-xorg: set status for CVE-2026-34000 and CVE-2026-34002
libsoup: patch CVE-2026-2708
busybox: patch CVE-2024-58251
go: upgrade 1.26.2 -> 1.26.3
glibc: stable 2.43 branch updates
ffmpeg: upgrade 8.0.1 -> 8.1.1
python3: upgrade 3.14.4 -> 3.14.5
Peter Tatrai (1):
rust: fix codegen test failure on big-endian targets
Pratik Farkase (3):
go: add ptest support
go: ptest: improvements and multiple fixes in golang ptest
go: ptest: fix GOROOT detection and improve cleanup/exit handling
Quan Sun (1):
qemu: fix iotlb_to_section() for different AddressSpace
Richard Purdie (65):
useradd: Switch from --root to --prefix option
pseudo: Update 1.9.5 -> 1.9.6
at-spi2-core: upgrade 2.60.0 -> 2.60.3
boost-build-native: upgrade 1.90.0 -> 1.91.0
ccache: upgrade 4.13.3 -> 4.13.5
coreutils: upgrade 9.10 -> 9.11
dhcpcd: upgrade 10.3.1 -> 10.3.2
epiphany: upgrade 50.3 -> 50.4
ethtool: upgrade 6.19 -> 7.0
font-util: upgrade 1.4.1 -> 1.4.2
gdk-pixbuf: upgrade 2.44.5 -> 2.44.6
git: upgrade 2.53.0 -> 2.54.0
gn: upgrade to latest revision
gtk4: upgrade 4.22.2 -> 4.22.4
iproute2: upgrade 6.19.0 -> 7.0.0
libdrm: upgrade 2.4.131 -> 2.4.133
libgpg-error: upgrade 1.59 -> 1.60
libjpeg-turbo: upgrade 3.1.3 -> 3.1.4.1
libmpc: upgrade 1.4.0 -> 1.4.1
libsolv: upgrade 0.7.36 -> 0.7.37
libxml2: upgrade 2.15.2 -> 2.15.3
libxmlb: upgrade 0.3.25 -> 0.3.26
libxpm: upgrade 3.5.18 -> 3.5.19
makedumpfile: upgrade 1.7.8 -> 1.7.9
mesa, mesa-tools-native: Upgrade 26.0.5 -> 26.0.6
meson: upgrade 1.11.0 -> 1.11.1
mpg123: upgrade 1.33.4 -> 1.33.5
nghttp2: upgrade 1.68.1 -> 1.69.0
puzzles: upgrade to latest revision
python3-attrs: upgrade 25.4.0 -> 26.1.0
python3-build: upgrade 1.4.3 -> 1.5.0
python3-certifi: upgrade 2026.2.25 -> 2026.4.22
python3-click: upgrade 8.3.1 -> 8.3.3
python3-hypothesis: upgrade 6.151.9 -> 6.152.4
python3-idna: upgrade 3.11 -> 3.13
python3-jsonpointer: upgrade 3.0.0 -> 3.1.1
python3-mako: upgrade 1.3.10 -> 1.3.12
python3-numpy: upgrade 2.4.3 -> 2.4.4
python3-pathspec: upgrade 1.0.4 -> 1.1.1
python3-pdm: upgrade 2.26.7 -> 2.26.8
python3-pip: upgrade 26.0.1 -> 26.1
python3-pygobject: upgrade 3.56.1 -> 3.56.2
python3-pyopenssl: upgrade 26.0.0 -> 26.1.0
python3-testtools: upgrade 2.9.0 -> 2.9.1
python3-trove-classifiers: upgrade 2026.1.14.14 -> 2026.4.28.13
python3-uritools: upgrade 6.0.1 -> 6.1.0
python3-uv-build: upgrade 0.10.10 -> 0.11.8
python3-wheel: upgrade 0.46.3 -> 0.47.0
repo: upgrade 2.62 -> 2.63
rpm-sequoia-crypto-policy: upgrade to latest revision
rpm-sequoia: upgrade 1.10.1 -> 1.10.2
rsync: upgrade 3.4.1 -> 3.4.2
ruby: upgrade 4.0.2 -> 4.0.3
shaderc: upgrade 2026.1 -> 2026.2
spirv-llvm-translator: upgrade 22.1.1 -> 22.1.2
ttyrun: upgrade 2.41.0 -> 2.42.0
vulkan-samples: upgrade to latest revision
xz: upgrade 5.8.2 -> 5.8.3
kernel: Disable module deploy tarball by default
utils: Handle unexpanded variables in DISTRO_FEATURES
expat: Upgrade 2.8.0 -> 2.8.1
pseudo: Upgrade 1.9.6 -> 1.9.7
glib-2.0-native: Remove problematic path reference
sstate: Improve confusing debug message
sstate: Detect broken sstate paths containing tmpdir
Robert P. J. Day (1):
features-check.bbclass: add reference to required TUNE_FEATURES
Robert Yang (1):
time: 1.9 -> 1.10
Ross Burton (31):
classes/base: add explicit bzip2-native dependency for unpacking .bz2
p11-kit: remove obsolete compile error workaround
p11-kit: add PACKAGECONFIG for trust and systemd
p11-kit: explicitly disable tests and zsh-completions
p11-kit: packaging rewrite
wpa-supplicant: remove obsolete explicit debug packaging
python3-cryptography: remove obsolete explicit debug packaging
gobject-introspection: remove obsolete explicit debug packaging
kernel-devsrc: remove obsolete explicit debug packaging
dhcpcd: remove obsolete explicit debug packaging
bitbake.conf: add firmwaredir
classes/kernel: use ${firmwaredir} instead of ${nonarch_base_libdir}/firmware
bluez5: use ${firmwaredir} instead of ${nonarch_base_libdir}/firmware
linux-firmware: use ${firmwaredir} instead of ${nonarch_base_libdir}/firmware
wpa_supplicant: recommend the wireless regulatory database
linux-firmware: delink some tegra firmware to avoid pulling in full nvidia firmware
linux-firmware: split out MediaTek mt7996 firmare
classes/kernel-module-split: skip .debug files early
classes/kernel-module-split: return list of values in extract_modinfo
wireless-regdb: use ${firmwaredir} instead of ${nonarch_base_libdir}/firmware
harfbuzz: improve packaging
harfbuzz: upgrade 12.3.2 -> 14.2.0
weston: remove obsolete .la deletion
librsvg: remove obsolete .la deletion
librsvg: consolidate DEPENDS
librsvg: consolidate PACKAGECONFIG
librsvg: rewrite cross gdk-pixbuf-query-loaders handling
epiphany: use GTK3DISTROFEATURES in features check
epiphany: remove obsolete build dependencies
libdazzle: remove
libhandy: remove
Sam Kent (2):
package.py: fix kernel module file pre-filter and document strip asymmetry
oe-pkgdata-util: fix empty runtime-rprovides directory handling
Tejas Kanfade (1):
pulseaudio: split pactl into a dedicated client subpackage
Thomas Perrot (2):
scripts/makefile-getvar: quote MAKEFILE variable
oe-pkgdata-util: fix runtime-rprovides handling in lookup_pkg error path
Trevor Gamblin (5):
python3-urllib3: enable setuptools-scm 10.x
python3-vcs-versioning: add recipe
python3-setuptools-scm: upgrade 9.2.2 -> 10.0.5
maintainers.inc: add self for python3-uv-build
python3-vcs-versioning: add ptest
Vijay Anusuri (1):
avahi: Fix CVE-2026-34933
Viswanath Kraleti (1):
mirrors: switch Yocto Project mirrors to HTTPS
Wang Mingyu (40):
acpica: upgrade 20251212 -> 20260408
adwaita-icon-theme: upgrade 49.0 -> 50.0
ccache: upgrade 4.13.2 -> 4.13.3
dhcpcd: upgrade 10.3.0 -> 10.3.1
diffoscope: upgrade 314 -> 317
epiphany: upgrade 49.7 -> 50.3
fastfloat: upgrade 8.2.4 -> 8.2.5
ghostscript: upgrade 10.06.0 -> 10.07.0
groff: upgrade 1.24.0 -> 1.24.1
gsettings-desktop-schemas: upgrade 50.0 -> 50.1
gtk+3: upgrade 3.24.51 -> 3.24.52
gtk4: upgrade 4.22.1 -> 4.22.2
hwdata: upgrade 0.405 -> 0.406
libadwaita: upgrade 1.8.4 -> 1.9.0
libcap: upgrade 2.77 -> 2.78
lzip: upgrade 1.25 -> 1.26
meson: upgrade 1.10.2 -> 1.11.0
pango: upgrade 1.57.0 -> 1.57.1
pciutils: upgrade 3.14.0 -> 3.15.0
python3-build: upgrade 1.4.0 -> 1.4.3
python3-dtschema: upgrade 2025.12 -> 2026.4
python3-editables: upgrade 0.5 -> 0.6
python3-maturin: upgrade 1.12.4 -> 1.13.1
python3-poetry-core: upgrade 2.3.1 -> 2.3.2
python3-pyasn1: upgrade 0.6.2 -> 0.6.3
python3-pygments: upgrade 2.19.2 -> 2.20.0
python3-pytest: upgrade 9.0.2 -> 9.0.3
python3-setuptools-rust: upgrade 1.12.0 -> 1.12.1
python3-testtools: upgrade 2.8.7 -> 2.9.0
python3-zipp: upgrade 3.23.0 -> 3.23.1
repo: upgrade 2.61.1 -> 2.62
resolvconf: upgrade 1.94 -> 1.95
sqlite3: upgrade 3.51.3 -> 3.53.0
stress-ng: upgrade 0.20.01 -> 0.21.00
vala: upgrade 0.56.18 -> 0.56.19
wayland-protocols: upgrade 1.47 -> 1.48
xserver-xorg: upgrade 21.1.21 -> 21.1.22
libmicrohttpd: upgrade 1.0.2 -> 1.0.5
python3-cryptography(-vectors): upgrade 46.0.5 -> 46.0.7
u-boot: upgrade 2026.01 -> 2026.04
Zk47T (2):
meta-selftest: add usegroup-deponly recipe to test USERADD_DEPENDS only
oe-selftest: add test for useradd with only USERADD_DEPENDS
Change-Id: Icbbd748f12680ef280568abd6fe02a84a697c69a
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Adam Duskett (2):
kmscon: upgrade 9.3.3 -> 9.3.5
dracut: upgrade 110 -> 111
Alex Kiernan (2):
mdns: Upgrade 2881.80.4.0.1 -> 2881.100.56.0.1
mdns: Update for mbedtls4, set daemon version
Ankur Tyagi (3):
thrift: upgrade 0.22.0 -> 0.23.0
freerdp3: upgrade 3.24.2 -> 3.25.0
nginx: upgrade 1.29.7 -> 1.30.0
Ayoub Zaki (2):
cloudflared: add initial recipe for 2026.3.0 version
open62541: upgrade 1.4.16 -> 1.5.4
Bartosz Golaszewski (2):
python3-pyfuse3: Move to meta-python
libgpiod: clean-up sub-packages
Changqing Li (1):
postfix: make it can compile with linux 7.x
Frede Hoey Braendstrup (2):
glaze: 7.3.3 -> 7.6.0
dbus-cxx: 2.6.1 -> 2.6.2
Gianfranco Costamagna (1):
vboxguestdrivers: Upgrade to 7.2.8
Gyorgy Sarvari (1):
libcoap: mark CVE-2026-29013 patched
Jason Schonberg (3):
xfdesktop: upgrade 4.20.1 -> 4.20.2
php: upgrade 8.5.5 -> 8.5.6
xarchiver: upgrade 0.5.4.21 -> 0.5.4.26
Jiaying Song (1):
python3-blivet: switch from setuptools3_legacy to python_setuptools_build_meta
Joao Marcos Costa (1):
memcached: drop libhugetlbfs
Jose Quaresma (7):
networkmanager: re-implement the vala detection
libyuv: add recipe
libcamera: add configs pipelines for testing
libcamera: add new package for lc-compliance
libcamera: change python config
libcamera: 0.6.0 -> 0.7.0
libcamera: 0.7.0 -> 0.7.1
Jörg Sommer (1):
framebuffer-vncserver: New recipe for VNC server for framebuffer
Khem Raj (1):
ebtables: Fix update-alternatives by setting ALTERNATIVE_TARGET
Li Zhou (1):
haveged: upgrade 1.9.19 -> 1.9.20
Liu Yiding (4):
eog: Add HOMEPAGE
editorconfig-core-c: upgrade 0.12.9 -> 0.12.11
exiftool: upgrade 13.52 -> 13.57
gnome-shell: upgrade 48.7 -> 48.8
Liyin Zhang (1):
apache2: upgrade 2.4.66 -> 2.4.67
Louis Rannou (2):
openvpn: create an extra package for the dns-updown script
lvm2: move scripts to lvm2-scripts package
Markus Volk (3):
svt-av1: add recipe
librav1e: add recipe
libavif: add PACKAGECONFIG for rav1e codec
Michael Fitzmayer (1):
canopenterm: update to version 2.02+git
Peter Marko (1):
cryptsetup: update udev package config
Philip Balister (1):
fftw_3.3.11.bb: Update version.
Samuli Piippo (3):
python3-packageurl-python: add recipe
python3-py-serializable: add recipe
python3-cyclonedx-python-lib: add recipe
Wang Mingyu (63):
7zip: upgrade 26.00 -> 26.01
appstream-glib: upgrade 0.8.2 -> 0.8.3
bubblewrap: upgrade 0.11.1 -> 0.11.2
ctags: upgrade 6.2.20260329.0 -> 6.2.20260426.0
dash: upgrade 0.5.13.2 -> 0.5.13.3
fastfetch: upgrade 2.61.0 -> 2.62.1
fluentbit: upgrade 5.0.2 -> 5.0.3
highway: upgrade 1.3.0 -> 1.4.0
iceauth: upgrade 1.0.10 -> 1.0.11
imagemagick: upgrade 7.1.2-19 -> 7.1.2-21
isocline: upgrade 1.0.9 -> 1.1.0
jemalloc: upgrade 5.3.0 -> 5.3.1
jsoncons: upgrade 1.6.0 -> 1.7.0
lcms: upgrade 2.18 -> 2.19
libblockdev: upgrade 3.4.0 -> 3.5.0
libfido2: upgrade 1.16.0 -> 1.17.0
libtorrent: upgrade 0.16.9 -> 0.16.10
libtsm: upgrade 4.4.3 -> 4.5.0
localsearch: upgrade 3.11.0 -> 3.11.1
md4c: upgrade 0.5.2 -> 0.5.3
mdio-tools,mdio-netlink: upgrade 1.3.1 -> 1.3.2,1.3.1 -> 1.3.2
nbdkit: upgrade 1.47.7 -> 1.47.8
neatvnc: upgrade 0.9.5 -> 0.9.6
nss: upgrade 3.122 -> 3.123.1
ntfs-3g-ntfsprogs: upgrade 2022.10.3 -> 2026.2.25
parallel: upgrade 20260322 -> 20260422
python3-asyncinotify: upgrade 4.4.2 -> 4.4.4
python3-bumble: upgrade 0.0.226 -> 0.0.228
python3-cmake: upgrade 4.3.1 -> 4.3.2
python3-cmd2: upgrade 3.4.0 -> 3.5.1
python3-faker: upgrade 40.13.0 -> 40.15.0
python3-fastapi: upgrade 0.135.3 -> 0.136.1
python3-filelock: upgrade 3.25.2 -> 3.29.0
python3-flask-marshmallow: upgrade 1.4.0 -> 1.5.0
python3-flask-wtf: upgrade 1.2.2 -> 1.3.0
python3-greenlet: upgrade 3.4.0 -> 3.5.0
python3-identify: upgrade 2.6.18 -> 2.6.19
python3-inline-snapshot: upgrade 0.32.6 -> 0.32.7
python3-ipython: upgrade 9.12.0 -> 9.13.0
python3-moteus: upgrade 0.3.100 -> 0.3.101
python3-pre-commit: upgrade 4.5.1 -> 4.6.0
python3-pymisp: upgrade 2.5.33.1 -> 2.5.33.2
python3-pymongo: upgrade 4.16.0 -> 4.17.0
python3-pyroute2: upgrade 0.9.5 -> 0.9.6
python3-pytest-codspeed: upgrade 4.3.0 -> 4.4.0
python3-python-multipart: upgrade 0.0.26 -> 0.0.27
python3-sentry-sdk: upgrade 2.57.0 -> 2.58.0
python3-simplejson: upgrade 3.20.2 -> 4.1.1
python3-tox: upgrade 4.52.1 -> 4.53.0
python3-typer: upgrade 0.24.1 -> 0.25.0
python3-tzdata: upgrade 2026.1 -> 2026.2
python3-virtualenv: upgrade 21.2.1 -> 21.3.0
python3-xxhash: upgrade 3.6.0 -> 3.7.0
python3-zopeinterface: upgrade 8.3 -> 8.4
rtorrent: upgrade 0.16.9 -> 0.16.10
spectre-meltdown-checker: upgrade 26.26.0404682 -> 26.33.0420460
strongswan: upgrade 6.0.5 -> 6.0.6
swagger-ui: upgrade 5.32.2 -> 5.32.5
tinysparql: upgrade 3.11.0 -> 3.11.1
ubi-utils-klibc: upgrade 2.3.0 -> 2.3.1
uriparser: upgrade 1.0.0 -> 1.0.1
xbitmaps: upgrade 1.1.3 -> 1.1.4
xterm: upgrade 408 -> 409
Wenlin Kang (1):
xfce4-screensaver: Make libpam and systemd dependencies conditional
Xiaozhan Li (1):
jemalloc: fix always_inline build failure
Yi Zhao (6):
frr: upgrade 10.5.3 -> 10.6.1
frr: fix mgmtd crash on ARM32
webkitgtk3: fix build on riscv64
proftpd: upgrade 1.3.9 -> 1.3.9a
postfix: upgrade 3.10.8 -> 3.10.9
nftables: improve reproducibility
Zeming LIU (1):
tbb: add ptest support
Zhang Xiao (1):
python3-aspectlib: Fix pytest compatibility
Change-Id: I4c5f867a53d259e187737d862e5c6cd07c6c58a3
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Clayton Casciato (1):
suricata: update 7.0.13 -> 8.0.4
Marta Rybczynska (1):
README: update CI links
Scott Murray (10):
crowdsec: Upgrade to v1.7.7
aircrack-ng: Upgrade to 1.7
opendnssec: Upgrade to 2.1.14
libmspack: Remove
clamav: Upgrade to 1.4.4
aide: Upgrade to 0.19.3
libmhash: Remove
ncrack: Update
packagegroup-core-security: Add missing packages
packagegroup-core-security: remove python3-privacyidea
Wenlin Kang (1):
krill: fix missing dollar sign in FILES
Change-Id: Ia19d119cd33177588b6948d9557d716eebca367b
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Max Stepanov (1):
linux-raspberrypi-6.12: Upgrade to 6.12.85
Change-Id: Ibbe4a5dcd49744251385e1244caf21d54ef412f6
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alex Chapman (2):
arm-bsp/docs:corstone1000: Fix secure boot script path
arm-bsp/docs:corstone1000: Reduce sudo dependency in OOB tests
David Hu (1):
arm/trusted-firmware-m: Enable regression test build
Frazer Carsley (4):
arm-bsp/packagegroup-core-boot:cs1k: Remove GRUB from initramfs
arm-bsp/trusted-firmware-m:cs1k: Add fixes for GPT library
arm-bsp/trusted-firmware-m:cs1k: Add extra GPT library operations
arm-bsp/trusted-firmware-m:cs1k: Use new GPT duplicate functionality
Gyorgy Szing (3):
scripts/runfvp: check available terminal types
scripts/runfvp: add Screen support
scripts/runfvp: fix exception handling
Harsimran Singh Tungal (1):
arm-bsp: corstone1000: Enable FF-A-backed EFI runtime variables and selftests
Jon Mason (2):
arm-bsp/u-boot: Update fvp-base, juno, corstone1000 patches
arm-bsp/edk2-firmware: workaround apcica changes
Michael Safwat (2):
arm-bsp/u-boot: fix Corstone1000 FVP detection in patch set
arm-bsp/u-boot: corstone1000: disable EFI debug support
Change-Id: Ic05b39ba381d846e13feb50f5f231fe3feba751f
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Alexander Kanavin (1):
fetch/wget: in upstream version checks, match versioned directories exactly
Anthony Squires (1):
fetch2: reraise IOError during download
Antonin Godard (4):
doc/sphinx-static/theme_overrides.css: switch to a fixed width documentation
doc/setversions.py: add --get-latest-branch argument
doc/setversions.py: move arg parsing to main function
doc/setversions.py: use older lts series to check tag existence
Dawid Bijak (3):
doc: bitbake-user-manual-metadata: remove incorrect claim
doc: bitbake-user-manual-metadata: remove invalid anonymous Python example
doc: bitbake-user-manual-metadata: explain inherit_defer example
El Mehdi YOUNES (1):
bitbake-user-manual: Fix bitbake-setup settings command
Frieder Schrempf (2):
contrib: hashserv: Dockerfile: Remove non-existent lib/codegen.py
contrib: hashserv: Dockerfile: Update base image
Johan Anderholm (1):
fetch2/crate: use CDN for fetching crates
João Marcos Costa (1):
layerindexlib: restapi.py: fix unbound variable
Marcio Henriques (1):
bitbake: fix issue with varflag exclusion
Paul Barker (2):
doc: Fix description of git shallow mirror tarball creation
Drop git-make-shallow
Richard Purdie (5):
toaster: Increase pytest version requirement for toaster tests
lib: Replace codegen with ast.unparse()
fetch/git: Fix leaking of temporary directory
fetch/git: Improve temporary directory handling
toaster/fixtures: Drop kirkstone/whinlatter
Ross Burton (1):
fetch2/crate: use CDN endpoint for version checking if possible
Thomas Perrot (4):
fetch2/crate: skip yanked versions when reading cargo index
fetch2/crate: guard against empty version list
fetch2/crate: move cmp_to_key import to module level
fetch2/crate: replace instance method monkey-patching with URL dispatch
Trevor Woerner (1):
contrib/vim: remove
hongxu (1):
fetch2: allow empty value for params while formatting URI string.
Change-Id: I3bbc93b0ef91aa48ad0c63b5a54f2e13263d6a76
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Backport upstream commit 9711b8aa5acc to fix compilation errors on ppc64le
architecture. The issue occurs because GCC on ppc64le does not recognize the
'-march=native' option and suggests using '-mcpu=native' instead.
Upstream commit:
https://github.com/rhboot/efivar/commit/9711b8aa5acc63c54a12ba5505fe68b4475c8a13
Change-Id: Ia8b24240091a95b87eec8ec1e2221766dcc180f6
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 683e2531be8ca28ace0ed1ef06b6211056338a35)
|
|
Adam Blank (6):
ref-manual/variables.rst: update STAGING_DIR's description
ref-manual/variables.rst: update COMPONENTS_DIR's description
ref-manual/variables.rst: update PKGDATA_DIR's description
ref-manual/variables.rst: update RECIPE_SYSROOT* descriptions
ref-manual/variables.rst: update STAGING_DIR* descriptions
ref-manual/variables.rst: correct a reference to STAGING_DIR*
Antonin Godard (34):
ref-manual/system-requirements: add buildtools note for Alma/CentOS/Rocky 9
ref-manual/system-requirements.rst: update supported releases
tools/build-docs-container: add ubuntu 26.04 support
tools/build-docs-container: update fedora distros
tools/build-docs-container: drop support for OpenSUSE Leap 15.5
ref-manual/system-requirements.rst: add section for openSUSE Leap 16.0
set_versions.py: fix seriesversion for milestone tags
set_versions.py: use bitbake "dev" version when our series is devbranch
set_versions.py: change strategy for the default page
set_versions.py: make active releases unique
sphinx-static/switchers.js.in: add an "Outdated release manuals" entry
ref-manual/variables.rst: fix wording in COMPATIBLE_MACHINE note
sphinx-static/theme_overrides.css: switch to a fixed width documentation
conf.py: define new *_path roles
ref-manual/classes.rst: document the kernel-yocto-rust class
ref-manual/classes.rst: document the module-rust class
ref-manual/classes.rst: document the KCONFIG_CONFIG_ROOTDIR variable
ref-manual/variables.rst: document the UKI_DEVICETREE variable
docs-wide: refresh SBOM documentation after SPDX2.2 removal
dev-manual/sbom.rst: add bullet point on recipe SBOM
ref-manual/variables.rst: document the SPDX_PACKAGE_URLS variable
ref-manual/variables.rst: document the SPDX_GIT_PURL_MAPPINGS variable
ref-manual/variables.rst: document the SPDX_INCLUDE_VEX variable
migration-guides/migration-6.0.rst: add note on WIC_SECTOR_SIZE
ref-manual: document the sbom-cve-check class, fragment, and variables
docs-wide: adapt to the new {DISTRO,MACHINE}_FEATURES mechanism
ref-manual/features.rst: drop pcmcia from DISTRO_FEATURES
ref-manual/features.rst: drop usbhost/usbgadget from DISTRO_FEATURES
docs-wide: replace meta-poky/conf/templates/default by oecore's templates
migration-guides: update 6.0 (Wrynose) release notes
migration-guides/migration-6.0.rst: tidy up the file
dev-manual/new-recipe.rst: rework Unpacking Code section
ref-manual/system-requirements.rst: make python3-websockets a default host requirement
ref-manual/system-requirements.rst: instruct to install a buildtools tarball for leap 15.6
Benjamin Robin (1):
variables: add precision about special characters in CVE_PRODUCT
El Mehdi YOUNES (2):
brief-yoctoprojectqs: fix the allow root login command
brief-yoctoprojectqs: fix runqemu command
Lee Chee Yang (1):
migration-guide: add release notes for 5.0.17
Martin Jansa (1):
docs: ubuntu_essential.sh: explicitly add libcrypt-dev
Robert P. J. Day (1):
variables.rst: expand explanation of RSUGGESTS
Change-Id: I1de0c63582a80e532e049d470636df280bd80f53
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|
|
Ahmad Fatoum (1):
barebox: upgrade 2026.03.1 -> 2026.04.0
Alexander Kanavin (1):
libjpeg-turbo: exclude x.y.9z versions from upstream check
Antonin Godard (1):
sbom-cve-check-common: print warnings on unpatched CVEs
BELHADJ SALEM Talel (1):
image_types: catch exception if no CONVERSION_CMD is defined
Benjamin Robin (1):
python3-sbom-cve-check: Update to version 1.3.0
Benjamin Robin (Schneider Electric) (11):
oe/sbom30: Remove unneeded oe.sbom30. to reference local symbol
oe/sbom30: Simplify sorting of license_text_map
oe/sbom30: Fix undeclared variable in import_bitbake_build()
oe/spdx30_tasks: Remove unused license_ref_idx variable
oe/spdx30_tasks: Fix return value of get_package_sources_from_debug
oe/spdx30_tasks: Remove unused local variables
oe/spdx_common: Remove redundant '\d' in RegExp
oe/spdx_common: Remove unused local variables
oe/spdx30_task: Add status notes to VEX relationship
oe/spdx30_task: Prevent duplication of sources in hasInput rel
devtool-source: set S variable to a sub dir of UNPACKDIR
Bruce Ashfield (10):
linux-yocto/6.18: update to v6.18.20
linux-yocto/6.18: update CVE exclusions (6.18.20)
linux-yocto/6.18: update to v6.18.21
linux-yocto/6.18: update CVE exclusions (6.18.21)
linux-yocto/6.18: update to v6.18.22
linux-yocto/6.18: update CVE exclusions (6.18.22)
linux-yocto/6.18: update to v6.18.23
linux-yocto/6.18: update CVE exclusions (6.18.23)
linux-yocto/6.18: update to v6.18.24
linux-yocto/6.18: update CVE exclusions (6.18.24)
Chen Qi (2):
systemd: drop unneeded sysv compat patch
systemd: add osc-context PACKAGECONFIG
Ernst Persson (1):
busybox: fix for CVE-2026-26157, CVE-2026-26158
Franz Schnyder (1):
gnutls: Add p11-kit for native builds
Haiqing Bai (1):
libxml-parser-perl: patch CVE-2006-10003
Himanshu Jadon (1):
apt: Add CVE_PRODUCT to support product name
Jason Schonberg (1):
ruby: upgrade 4.0.1 -> 4.0.2
Jörg Sommer (1):
run-postinsts: Replace which by command -v
Mathieu Dubois-Briand (2):
python3: exclude test_timerfd_TFD_TIMER_ABSTIME from ptest
python3: Simplify ptest exclusion list
Michael Arndt (1):
sstate: Fail on file systems without hard link support
Paul Barker (1):
image_types_wic: Introduce wicenv image type
Peter Kjellerstedt (1):
combo-layer: Remove the script and its associated files
Peter Marko (6):
binutils: mark CVE-2025-69652 as fixed
binutils: patch CVE-2026-4647
create-spdx-3.0: rerun do_create_recipe_spdx on patch changes
go: skip recipe instead of throwing fatal error on unknown architectures
cve-exclusions: set status for 5 CVEs
cve-exclusions: set status for CVE-2025-71145
Quentin Schulz (1):
mesa: upgrade 26.0.3 -> 26.0.5
Richard Purdie (10):
groff: Fix occasional build race failure
pseudo: Upgrade to 1.9.4
pseudo: Upgrade to 1.9.5
shadow: Disable tallylog execution
shadow: Drop 'pointless' patch
python3-python-spdx-model: Upgrade 0.0.4 -> 0.0.5
selftest/runtime_test: Avoid virgl test on opensuse 16.0 for now
sanity.conf: Depend on bitbake 2.18
base/bitbake.conf: Rework DISTRO_FEATURES and MACHINE_FEATURES default handling
build-appliance-image: Update to master head revisions
Ross Burton (12):
libsoup: actually apply patches for CVE-2025-32049 and CVE-2026-1539
libsoup: mark CVEs which have been resolved upstream
glib-networking: backport fix for CVE-2026-2574
python3-requests: backport fix for CVE-2026-25645
python3: prefer valid dists when searching for entry points
bluez5: mark two CVEs as being in the wrong product
systemd: mark several CVEs as fixed
xz: mark several CVEs as fixed
xz: fix CVE-2026-34743
util-linux: fix CVE-2026-27456
quilt: remove bzip2 RDEPENDS
vim: disable GTK+3 UI by default
Sunil Dora (1):
libcxx: fix libunwind collision with musl builds
Wang Mingyu (1):
python3-shacl2code: upgrade 0.0.24 -> 1.0.1
Yoann Congal (8):
virglrenderer: update a merged patch Upstream-Status
oeqa/selftest/incompatible_lic: add wayland feature check for test needing it
build-appliance-image: switch SRC_URI to https protocol
scripts: Default to https git protocol for YP/OE repos
oeqa/selftest/git-submodule-test: Default to https git protocol for YP/OE repos
oeqa/selftest/devtool-test-git-gitsm: Default to https git protocol for YP/OE repos
meta/files/layers.example.json: switch to https clone URIs
oeqa/sdk: Default to https git protocol for YP/OE repos
Change-Id: Ie3f769ddd5ccd4d3b99bfc85e7f4673f7a162651
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
|