FreeBSD/src cb81314. CONTRIBUTING.md

CONTRIBUTING.md: Correct typo

Reported by:    vladlen
DeltaFile
+1-1CONTRIBUTING.md
+1-11 files

LLVM/project 792fce7libcxx/test/std/ranges/range.adaptors/range.filter ctor.view_pred.pass.cpp, libcxx/test/std/ranges/range.adaptors/range.lazy.split ctor.view.pass.cpp

[libc++][ranges][NFC] Format a couple of tests as a prerequisite (#190514)

to https://llvm.org/PR190513 to avoid friction.
DeltaFile
+6-9libcxx/test/std/ranges/range.adaptors/range.lazy.split/ctor.view.pass.cpp
+2-2libcxx/test/std/ranges/range.adaptors/range.filter/ctor.view_pred.pass.cpp
+8-112 files

NetBSD/pkgsrc cTngPnfdoc CHANGES-2026 TODO

   doc: Updated devel/alex to 3.5.4.2
VersionDeltaFile
1.2126+2-1doc/CHANGES-2026
1.27067+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc 38Ki5nBdevel/alex distinfo Makefile

   alex: update to 3.5.4.2.

   ## Changes in 3.5.4.2

   * Fix botched distribution tarball of 3.5.4.1.
   * Tested with GHC 8.0 - 9.14.1.

   _Andreas Abel, 2026-03-22_

   ## Changes in 3.5.4.1

   * New examples and fixes to the documentation (#284, #285, #286).
   * Tested with GHC 8.0 - 9.14.1.

   _Andreas Abel, 2026-03-21_
VersionDeltaFile
1.15+4-4devel/alex/distinfo
1.27+2-2devel/alex/Makefile
+6-62 files

NetBSD/pkgsrc PFByrt1doc CHANGES-2026 TODO

   doc: Updated devel/ast-grep to 0.42.1
VersionDeltaFile
1.2125+2-1doc/CHANGES-2026
1.27066+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc 53scad9devel/ast-grep distinfo cargo-depends.mk

   ast-grep: update to 0.42.1.

   feat: Support Dart again #2534
   chore(deps): update dependency oxlint to v1.58.0 #2569
   chore(deps): update rust crate toml_edit to v0.25.10 #2571
   fix(deps): update rust crate similar to v3 #2574
   chore(deps): update rust crate tokio to v1.51.0 #2578
   chore(deps): update dependency web-tree-sitter to v0.26.8 #2570
   chore(deps): update rust crate tree-sitter to v0.26.8 #2572
   chore(deps): update dependency dprint to v0.53.2 #2573
   chore(deps): update rust crate bit-set to 0.10.0 #2566
   fix(deps): update rust-wasm-bindgen monorepo #2561
   chore(deps): update dependency smol-toml to v1.6.1 #2556
   chore(deps): update rust crate napi to v3.8.4 #2562
   chore(deps): update rust crate toml_edit to v0.25.8 #2552
   chore(deps): update rust crate napi-derive to v3.5.3 #2563
   chore(deps): update codecov/codecov-action action to v6 #2560
   chore(deps): update rust crate tree-sitter-rust to v0.24.2 #2554
   chore(deps): update dependency @napi-rs/cli to v3.6.0 #2564

    [11 lines not shown]
VersionDeltaFile
1.80+79-79devel/ast-grep/distinfo
1.75+25-25devel/ast-grep/cargo-depends.mk
1.80+2-2devel/ast-grep/Makefile
+106-1063 files

NetBSD/pkgsrc KEIpmG6doc CHANGES-2026 TODO

   doc: Updated textproc/jsongrep to 0.8.1
VersionDeltaFile
1.2124+2-1doc/CHANGES-2026
1.27065+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc B7Lbqt9textproc/jsongrep distinfo Makefile

   jsongrep: update to 0.8.1.

   Fix range upper bound being silently ignored by @micahkepe in #28
VersionDeltaFile
1.2+4-4textproc/jsongrep/distinfo
1.2+2-2textproc/jsongrep/Makefile
+6-62 files

NetBSD/pkgsrc FlDLpC8doc CHANGES-2026 TODO

   doc: Updated textproc/jnv to 0.7.1
VersionDeltaFile
1.2123+2-1doc/CHANGES-2026
1.27064+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc aRbMw9rtextproc/jnv distinfo cargo-depends.mk

   jnv: update to 0.7.1.

   Changes not found.
VersionDeltaFile
1.6+25-58textproc/jnv/distinfo
1.6+7-18textproc/jnv/cargo-depends.mk
1.6+2-2textproc/jnv/Makefile
+34-783 files

FreeBSD/ports d97c3e4devel/jujutsu Makefile pkg-plist

devel/jujutsu: fix installation of shell autocompletion files

The shells/fish port does already install the completion file for jj,
leading to an install conflict with the previous revision of this
port.
DeltaFile
+3-4devel/jujutsu/Makefile
+2-3devel/jujutsu/pkg-plist
+5-72 files

LLVM/project e14ccabclang/include/clang/CIR/Dialect/Builder CIRBaseBuilder.h, clang/include/clang/CIR/Dialect/IR CIROps.td

[CIR] Use data size in emitAggregateCopy for overlapping copies

Add skip_tail_padding property to cir.copy to handle potentially-overlapping
subobject copies directly, instead of falling back to cir.libc.memcpy. When
set, the lowering uses the record's data size (excluding tail padding) for
the memcpy length. This keeps typed semantics and promotability of cir.copy.

Also fix CXXABILowering to preserve op properties when recreating operations,
and expose RecordType::computeStructDataSize() for computing data size of
padded record types.
DeltaFile
+73-0clang/test/CIR/CodeGen/aggregate-copy-overlap.cpp
+21-5clang/include/clang/CIR/Dialect/IR/CIROps.td
+23-0clang/lib/CIR/Dialect/IR/CIRTypes.cpp
+11-6clang/lib/CIR/CodeGen/CIRGenExprAggregate.cpp
+11-0clang/test/CIR/IR/invalid-copy.cir
+4-2clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
+143-137 files not shown
+164-2013 files

NetBSD/pkgsrc FSupYGudoc CHANGES-2026 TODO

   doc: Updated sysutils/fzf to 0.71.0
VersionDeltaFile
1.2122+2-1doc/CHANGES-2026
1.27063+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc BzqtZcpsysutils/fzf distinfo Makefile

   fzf: update to 0.71.0.

   0.71.0
   ------
   _Release highlights: https://junegunn.github.io/fzf/releases/0.71.0/_

   - Added `--popup` as a new name for `--tmux` with Zellij support
       - `--popup` starts fzf in a tmux popup or a Zellij floating pane
       - `--tmux` is now an alias for `--popup`
       - Requires tmux 3.3+ or Zellij 0.44+
   - Cross-reload item identity with `--id-nth`
       - Added `--id-nth=NTH` to define item identity fields for cross-reload operations
       - When a `reload` is triggered with tracking enabled, fzf searches for the tracked item by its identity fields in the new list.
           - `--track --id-nth ..` tracks by the entire line
           - `--track --id-nth 1` tracks by the first field
           - `--track` without `--id-nth` retains the existing index-based tracking behavior
           - The UI is temporarily blocked (prompt dimmed, input disabled) until the item is found or loading completes.
               - Press `Escape` or `Ctrl-C` to cancel the blocked state without quitting
               - Info line shows `+T*` / `+t*` while searching

    [33 lines not shown]
VersionDeltaFile
1.49+4-4sysutils/fzf/distinfo
1.129+2-2sysutils/fzf/Makefile
+6-62 files

NetBSD/pkgsrc 7HMUDgPdoc CHANGES-2026

   doc: Updated www/py-werkzeug-docs to 3.1.8
VersionDeltaFile
1.2121+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc Pxndt65doc CHANGES-2026 TODO

   doc: Updated www/py-werkzeug to 3.1.8
VersionDeltaFile
1.2120+2-1doc/CHANGES-2026
1.27062+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc 0649nO7www/py-werkzeug distinfo Makefile

   py-werkzeug: update to 3.1.8.

   Version 3.1.8
   -------------

   Released 2026-04-02

   -   ``Request.host`` and ``get_host`` return the empty string if the header is
       missing or has invalid characters. :issue:`3142`
VersionDeltaFile
1.49+4-4www/py-werkzeug/distinfo
1.36+3-3www/py-werkzeug/Makefile
1.49+2-2www/py-werkzeug/Makefile.common
+9-93 files

NetBSD/pkgsrc edik73tdoc CHANGES-2026 TODO

   doc: Updated devel/py-urwid to 4.0.0
VersionDeltaFile
1.2119+2-1doc/CHANGES-2026
1.27061+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc qYUhWeVdevel/py-urwid PLIST Makefile

   py-urwid: update to 4.0.0.

   Breaking Changes ⚠

       Deprecation: Remove deprecated protected methods for version 4 by @penguinolog in #1078
       Deprecation: Remove deprecated public methods announced to be removed in v4 by @penguinolog in #1085
       Deprecation: Remove deprecated Filler.get_body and Filler.set_body by @penguinolog in #1117

   Deprecations ⚡

       Deprecation: announce deadline for deprecated APIs by @penguinolog in #1118

   Bug fixes 🕷

       stdin handling for closed state by @wilkpio in #1112
VersionDeltaFile
1.21+1-10devel/py-urwid/PLIST
1.61+6-4devel/py-urwid/Makefile
1.49+4-4devel/py-urwid/distinfo
+11-183 files

NetBSD/pkgsrc 9KEKUtodoc CHANGES-2026 TODO

   doc: Updated time/py-tzdata to 2026.1
VersionDeltaFile
1.2118+2-1doc/CHANGES-2026
1.27060+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc Se0Xbxutime/py-tzdata distinfo Makefile

   py-tzdata: update to 2026.1.

   timezone updates.
VersionDeltaFile
1.22+4-4time/py-tzdata/distinfo
1.25+2-2time/py-tzdata/Makefile
+6-62 files

LLVM/project c5a9049llvm/lib/Transforms/Vectorize LoopVectorizationLegality.cpp

[LV][NFC] remove dead code in canFoldTailByMasking() (#190263)

Remove unused ReductionLiveOuts variable in `canFoldTailByMasking()`.
The set was being populated with reduction loop exit instructions but
was never actually used anywhere in the function.
DeltaFile
+0-5llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
+0-51 files

NetBSD/pkgsrc Wog12dqdoc TODO CHANGES-2026

   doc: Updated comms/py-textual to 8.2.3
VersionDeltaFile
1.27059+1-2doc/TODO
1.2117+2-1doc/CHANGES-2026
+3-32 files

NetBSD/pkgsrc FMXbHe6comms/py-textual Makefile distinfo

   py-textual: update to 8.2.3.

   8.2.3

   Changed

       Reduce lag when resizing window, by moving resize from idle to a timer #6471

   8.2.2

   Fixed an issue where styles were being unneccesarily updated when
   resizing. Textual apps will now adapt to changes in the terminal
   size much more quickly.
VersionDeltaFile
1.48+4-4comms/py-textual/Makefile
1.43+4-4comms/py-textual/distinfo
+8-82 files

LLVM/project 6bf8279llvm/lib/Transforms/Vectorize LoopVectorize.cpp

[LV][NFC] correct comment for isScalarEpilogueAllowed() (#190254)

The comment had the opposite meaning of what the function actually does.
DeltaFile
+2-2llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+2-21 files

FreeBSD/ports f2b8dccsecurity/vuxml/vuln 2026.xml

security/vuxml: Add {lib}nghttp2 vulneability

CVE-2026-27135

Base Score:     7.5 HIGH
Vector:         CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
DeltaFile
+45-0security/vuxml/vuln/2026.xml
+45-01 files

HardenedBSD/ports f2b8dccsecurity/vuxml/vuln 2026.xml

security/vuxml: Add {lib}nghttp2 vulneability

CVE-2026-27135

Base Score:     7.5 HIGH
Vector:         CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
DeltaFile
+45-0security/vuxml/vuln/2026.xml
+45-01 files

NetBSD/pkgsrc UB7Ryj0doc CHANGES-2026 TODO

   doc: Updated devel/py-ruff to 0.15.9
VersionDeltaFile
1.2116+2-1doc/CHANGES-2026
1.27058+1-2doc/TODO
+3-32 files

NetBSD/pkgsrc 5hqGlsxdevel/py-ruff distinfo cargo-depends.mk

   py-ruff: update to 0.15.9.

   Preview features

       [pyflakes] Flag annotated variable redeclarations as F811 in preview mode (#24244)
       [ruff] Allow dunder-named assignments in non-strict mode for RUF067 (#24089)

   Bug fixes

       [flake8-errmsg] Avoid shadowing existing msg in fix for EM101 (#24363)
       [flake8-simplify] Ignore pre-initialization references in SIM113 (#24235)
       [pycodestyle] Fix W391 fixes for consecutive empty notebook cells (#24236)
       [pyupgrade] Fix UP008 nested class matching (#24273)
       [pyupgrade] Ignore strings with string-only escapes (UP012) (#16058)
       [ruff] RUF072: skip formfeeds on dedent (#24308)
       [ruff] Avoid re-using symbol in RUF024 fix (#24316)
       [ruff] Parenthesize expression in RUF050 fix (#24234)
       Disallow starred expressions as values of starred expressions (#24280)


    [20 lines not shown]
VersionDeltaFile
1.99+88-118devel/py-ruff/distinfo
1.95+28-38devel/py-ruff/cargo-depends.mk
1.101+2-2devel/py-ruff/Makefile
+118-1583 files

HardenedBSD/ports 398bb7dwww/libnghttp2 distinfo pkg-plist, www/nghttp2 distinfo Makefile

www/libnghttp2: Update to 1.68.1

This fixes CVE-2026-27135

Reported by:    Fabian Wenk <fabian at wenks.ch>
Approved by:    ports-secteam@ (maintainer timeout > 1 week)
DeltaFile
+3-3www/libnghttp2/distinfo
+3-3www/nghttp2/distinfo
+1-1www/libnghttp2/pkg-plist
+1-1www/libnghttp2/Makefile
+1-1www/nghttp2/Makefile
+9-95 files