FreeBSD/ports 62a603dsecurity/boringssl Makefile distinfo

security/boringssl: update to the recent snapshot release

ChangeLog:      https://github.com/google/boringssl/compare/0.20260728.0...0.20260730.0

Sponsored by:   tipi.work
DeltaFile
+3-3security/boringssl/distinfo
+1-1security/boringssl/Makefile
+4-42 files

FreeBSD/ports eeb443adevel/py-cfn-lint distinfo Makefile, devel/py-cfn-lint/files patch-src_cfnlint_data_schemas_version.json

devel/py-cfn-lint: Update to 1.53.3

ChangeLog:      https://github.com/aws-cloudformation/cfn-lint/compare/v1.52.1...v1.53.3
Approved by:    hrs (mentor, blanket)
DeltaFile
+8-2devel/py-cfn-lint/Makefile
+7-0devel/py-cfn-lint/files/patch-src_cfnlint_data_schemas_version.json
+3-3devel/py-cfn-lint/distinfo
+18-53 files

FreeBSD/src 833bdaesys/kern kern_exit.c

proc_realparent(): do not mark the child as orphan when reparenting to p_opptr pid

Reported and reviewed by:       markj
Fixes:  8cef3c9b768a ("proc_realparent(): assert that an orphaned child has real parent != parent")
Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Differential revision:  https://reviews.freebsd.org/D58566
DeltaFile
+1-2sys/kern/kern_exit.c
+1-21 files

FreeBSD/ports ba4a7d3net/tsctp Makefile distinfo

net/tsctp: Update 0.8.6 => 0.8.7

Changelog:
http://github.com/dreibh/tsctp/blob/tsctp-0.8.7/ChangeLog

Commit log:
https://github.com/dreibh/tsctp/compare/tsctp-0.8.6...tsctp-0.8.7

PR:             297178
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3net/tsctp/distinfo
+1-1net/tsctp/Makefile
+4-42 files

FreeBSD/src ff97443sys/kern kern_event.c

kqueue: do not buffer the whole knote report when sizing it

kern_proc_kqueues_out() reported into an intermediate sbuf and copied the
result into the caller's.

A process that had leaked 468k kqueue descriptors wired 757 MB of M_SBUF
while dumping core, over roughly 9M reallocations, then copied the whole
thing again.

Reviewed by:    adrian, markj
Differential Revision:  https://reviews.freebsd.org/D58536
PR: 296835
MFC after: 1 week
DeltaFile
+7-7sys/kern/kern_event.c
+7-71 files

FreeBSD/ports 17e4a5csysutils/u-boot-master Makefile

sysutils/u-boot-master: fix build with SOURCE_DATE_EPOCH set

PR:             291905
Reviewed by:    siva
Approved by:    manu (maintainer timeout)
Differential Revision:  https://reviews.freebsd.org/D57077
DeltaFile
+7-1sysutils/u-boot-master/Makefile
+7-11 files

FreeBSD/ports 82210ceaudio/xmp Makefile distinfo

audio/xmp: Update to 4.3.1
DeltaFile
+3-3audio/xmp/distinfo
+1-1audio/xmp/Makefile
+4-42 files

FreeBSD/ports 3da10acsecurity/py-trezor Makefile

security/py-trezor: Release maintainership
DeltaFile
+1-1security/py-trezor/Makefile
+1-11 files

FreeBSD/ports 8e0877faudio/ft2-clone Makefile distinfo

audio/ft2-clone: Update to 2.22
DeltaFile
+3-3audio/ft2-clone/distinfo
+1-1audio/ft2-clone/Makefile
+4-42 files

FreeBSD/ports a0795f9audio/pt2-clone Makefile distinfo

audio/pt2-clone: Update to 1.92
DeltaFile
+3-3audio/pt2-clone/distinfo
+1-1audio/pt2-clone/Makefile
+4-42 files

FreeBSD/ports 7d1070edevel/mimalloc Makefile distinfo

devel/mimalloc: Update to 3.4.3
DeltaFile
+3-3devel/mimalloc/distinfo
+1-1devel/mimalloc/Makefile
+4-42 files

FreeBSD/ports 9d1ee12converters/bibtexconv Makefile distinfo

converters/bibtexconv: Update 2.2.2 => 2.2.4

Changelog:
https://github.com/dreibh/bibtexconv/blob/bibtexconv-2.2.4/ChangeLog

Commit log:
https://github.com/dreibh/bibtexconv/compare/bibtexconv-2.2.2...bibtexconv-2.2.4

PR:             297193
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3converters/bibtexconv/distinfo
+1-1converters/bibtexconv/Makefile
+4-42 files

FreeBSD/src 1c1a364usr.sbin/bhyve tpm_intf_crb.c

bhyve: tpm: Avoid printing a message when clearing the cancel bit

Some drivers do this routinely, e.g., FreeBSD's tpm20 does this every
time it sends a command in tpmcrb_transmit().  This causes the console
to fill up with messages.  Instead, only print a warning if the cancel
bit is set to one.

Reviewed by:    corvink
MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D52425
DeltaFile
+11-4usr.sbin/bhyve/tpm_intf_crb.c
+11-41 files

FreeBSD/src 1719b75lib/libc/tests/secure generate-fortify-tests.lua fortify_uio_test.c

tests/libc: Fix fortify_source uio tests

Some of the preadv() and readv() tests were not initializing the iovecs
they pass to the system call.  When the system call is expected to fail,
that's fine since the FORTIFY_SOURCE checks cause the process to be
aborted.  However, in the rest of the test cases, the (p)readv() call
could cause spurious test failures, e.g., when an uninitialized iov
entry points to the current stack frame and the canary gets overwritten.

Modify the tests to explicitly initialize iov entries to avoid this.
The "iov" variants don't have this problem, so leave them alone.

Reviewed by:    kevans
MFC after:      2 weeks
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58289
DeltaFile
+80-20lib/libc/tests/secure/fortify_uio_test.c
+18-9lib/libc/tests/secure/generate-fortify-tests.lua
+98-292 files

FreeBSD/ports e4a0060net-mgmt/netbox distinfo pkg-plist

net-mgmt/netbox: Update to 4.6.6

Changelog:

Enhancements:
* Enable the selection of VLANs scoped to a device's cluster or cluster
  group when assigning VLANs to interfaces
* Render colored badges for custom field choices in tables
* Change the default color of the DHCP IP address status from green to
  purple to distinguish it from "available"
* Introduce an "any" lookup for the tag and tag_id filters to match
  objects assigned any of the specified tags
* Add a header_safe Jinja2 filter for sanitizing HTTP header values

Performance Improvements:
* Improve the speed of bulk object deletion by avoiding per-object
  cascade handling and N+1 counter updates
* Avoid an unnecessary queryset evaluation when rendering export
  templates

    [53 lines not shown]
DeltaFile
+6-7net-mgmt/netbox/Makefile
+10-0net-mgmt/netbox/pkg-plist
+3-3net-mgmt/netbox/distinfo
+19-103 files

FreeBSD/ports b86eee3www/py-strawberry-graphql-django Makefile distinfo

www/py-strawberry-graphql-django: Update to 0.86.5

Changelog:

https://github.com/strawberry-graphql/strawberry-django/releases/tag/0.86.5
DeltaFile
+3-3www/py-strawberry-graphql-django/distinfo
+1-1www/py-strawberry-graphql-django/Makefile
+4-42 files

FreeBSD/ports 19ab1b0devel/py-strawberry-graphql Makefile distinfo

devel/py-strawberry-graphql: Update to 0.323.2

Changelog since 0.321.0:

https://github.com/strawberry-graphql/strawberry/blob/0.323.2/CHANGELOG.md
DeltaFile
+3-3devel/py-strawberry-graphql/distinfo
+2-2devel/py-strawberry-graphql/Makefile
+5-52 files

FreeBSD/ports 4bd0c15textproc/py-zensical Makefile Makefile.crates

textproc/py-zensical: Update to 0.0.52

Changelogs:

https://github.com/zensical/zensical/releases/tag/v0.0.52
https://github.com/zensical/zensical/releases/tag/v0.0.51

MFH:            2026Q3
DeltaFile
+15-15textproc/py-zensical/distinfo
+6-6textproc/py-zensical/Makefile.crates
+1-2textproc/py-zensical/Makefile
+22-233 files

FreeBSD/ports 41c8387security/vuxml/vuln 2026.xml

security/vuxml: Document py-mkdocs-material vulnerability
DeltaFile
+31-0security/vuxml/vuln/2026.xml
+31-01 files

FreeBSD/ports c043951textproc/py-mkdocs-material Makefile distinfo

textproc/py-mkdocs-material: Update to 9.7.7

* Also add a DEPRECATED note, but don't set an EXPIRATION_DATE yet,
  because the port is currently still being used by some consumers.

Changelog:

https://github.com/squidfunk/mkdocs-material/releases/tag/9.7.7

MFH:            2026Q3
Security:       1976b049-8ccc-11f1-b333-901b0edee044
DeltaFile
+3-3textproc/py-mkdocs-material/distinfo
+3-1textproc/py-mkdocs-material/Makefile
+6-42 files

FreeBSD/ports 77c728bwww/py-dj60-strawberry-graphql-django Makefile distinfo

www/py-dj60-strawberry-graphql-django: Update to 0.86.5

Changelog:

https://github.com/strawberry-graphql/strawberry-django/releases/tag/0.86.5

MFH:            2026Q3
DeltaFile
+3-3www/py-dj60-strawberry-graphql-django/distinfo
+1-1www/py-dj60-strawberry-graphql-django/Makefile
+4-42 files

FreeBSD/ports d082403security/py-social-auth-core4 Makefile distinfo, security/py-social-auth-core4/files patch-pyproject.toml

security/py-social-auth-core4: Update to 4.8.7

* For now, stick with this release, because newer versions starting with
  4.9.0+ are not compatible with NetBox 4.6.

* Clean up stale entries from distinfo while I'm here.

Changelogs since 4.8.5:

https://github.com/python-social-auth/social-core/releases/tag/4.8.7
https://github.com/python-social-auth/social-core/releases/tag/4.8.6

MFH:            2026Q3
DeltaFile
+3-17security/py-social-auth-core4/distinfo
+3-3security/py-social-auth-core4/files/patch-pyproject.toml
+2-2security/py-social-auth-core4/Makefile
+8-223 files

FreeBSD/ports 4bcdad7devel/py-dj60-strawberry-graphql Makefile distinfo

devel/py-dj60-strawberry-graphql: Update to 0.323.2

Changelog since 0.321.0:

https://github.com/strawberry-graphql/strawberry/blob/0.323.2/CHANGELOG.md

MFH:            2026Q3
DeltaFile
+3-3devel/py-dj60-strawberry-graphql/distinfo
+2-2devel/py-dj60-strawberry-graphql/Makefile
+5-52 files

FreeBSD/ports 74b6902net/subnetcalc Makefile distinfo

net/subnetcalc: Update 2.7.1 => 2.7.5

Changelog:
https://github.com/dreibh/subnetcalc/blob/subnetcalc-2.7.5/ChangeLog

Commit log:
https://github.com/dreibh/subnetcalc/compare/subnetcalc-2.7.1...subnetcalc-2.7.5

PR:             297195
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+3-3net/subnetcalc/distinfo
+1-1net/subnetcalc/Makefile
+4-42 files

FreeBSD/ports 2ebcd0ewww/pocketbase Makefile distinfo

www/pocketbase: Update 0.39.9 => 0.39.10

Changelog:
https://github.com/pocketbase/pocketbase/blob/v0.39.10/CHANGELOG.md

PR:             297202
Reported by:    Christos Longros <chris.longros at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
DeltaFile
+5-5www/pocketbase/distinfo
+1-1www/pocketbase/Makefile
+6-62 files

FreeBSD/ports b77659caudio/libxmp Makefile distinfo

audio/libxmp: Update to 4.7.2
DeltaFile
+3-3audio/libxmp/distinfo
+1-1audio/libxmp/Makefile
+4-42 files

FreeBSD/ports 129b0c9net/td-system-tools Makefile distinfo

net/td-system-tools: Update 2.7.10 => 2.7.11

Changelog:
https://github.com/dreibh/system-tools/blob/td-system-tools-2.7.11/ChangeLog

Commit log:
https://github.com/dreibh/system-tools/compare/td-system-tools-2.7.10...td-system-tools-2.7.11

PR:             297191
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3

(cherry picked from commit 19954d648264014aac103795dbc4d92ac557bce9)
DeltaFile
+3-3net/td-system-tools/distinfo
+1-1net/td-system-tools/Makefile
+4-42 files

FreeBSD/ports 0413df6net/td-system-tools pkg-plist Makefile

net/td-system-tools: Update 2.7.7 => 2.7.10

Changelog:
https://github.com/dreibh/system-tools/blob/td-system-tools-2.7.10/ChangeLog

Commit log:
https://github.com/dreibh/system-tools/compare/td-system-tools-2.7.7...td-system-tools-2.7.10

PR:             296842
Sponsored by:   UNIS Labs

(cherry picked from commit 3f01ff20d805f20731ca22488fb70954348697ba)
DeltaFile
+3-3net/td-system-tools/distinfo
+3-2net/td-system-tools/Makefile
+2-2net/td-system-tools/pkg-plist
+8-73 files

FreeBSD/ports 19954d6net/td-system-tools Makefile distinfo

net/td-system-tools: Update 2.7.10 => 2.7.11

Changelog:
https://github.com/dreibh/system-tools/blob/td-system-tools-2.7.11/ChangeLog

Commit log:
https://github.com/dreibh/system-tools/compare/td-system-tools-2.7.10...td-system-tools-2.7.11

PR:             297191
Reported by:    Thomas Dreibholz <thomas.dreibholz at gmail.com> (maintainer)
Approved by:    osa, vvd (Mentors, implicit)
MFH:            2026Q3
DeltaFile
+3-3net/td-system-tools/distinfo
+1-1net/td-system-tools/Makefile
+4-42 files

FreeBSD/src b9d07a4usr.sbin/ppp lcp.c

ppp: Reject invalid endpoint discriminator options

Per RFC1717 section 5.1.3, the option length must be at least three.
Processing an undersized option would trigger a large out-of-bounds
write.

PR:             271910
Reported by:    Robert Morris
Reported by:    Décio Brandão (0xDBJ)
Reviewed by:    emaste
MFC after:      1 week
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D58554
DeltaFile
+6-0usr.sbin/ppp/lcp.c
+6-01 files