NetBSD/pkgsrc aVXgnqmdoc CHANGES-2026

   Updated misc/py-icecream, sysutils/fabric, security/py-paramiko; Removed devel/py-pathlib[2]
VersionDeltaFile
1.3216+6-1doc/CHANGES-2026
+6-11 files

NetBSD/pkgsrc yl7Bilzdevel Makefile, devel/py-pathlib Makefile PLIST

   py-pathlib: removed; included in Python 3.4 onwards; no longer needed in pkgsrc
VersionDeltaFile
1.4631+1-3devel/Makefile
1.3+1-1devel/py-pathlib/Makefile
1.4+1-1devel/py-pathlib/PLIST
1.5+1-1devel/py-pathlib/distinfo
1.2+0-0devel/py-pathlib/DESCR
+4-65 files

NetBSD/pkgsrc oa1lDnAdevel/py-pathlib2 PLIST Makefile

   py-pathlib2: removed; used to provide Python 2.7 compatibility which is outdated
VersionDeltaFile
1.4+1-1devel/py-pathlib2/PLIST
1.15+1-1devel/py-pathlib2/Makefile
1.12+1-1devel/py-pathlib2/distinfo
1.2+0-0devel/py-pathlib2/DESCR
+3-34 files

NetBSD/pkgsrc ixKO6Thdevel/py-setuptools44 Makefile

   py-setuptools44: removed commented-out TEST_DEPENDS
VersionDeltaFile
1.9+1-7devel/py-setuptools44/Makefile
+1-71 files

NetBSD/pkgsrc XZpL45Ssecurity/py-paramiko Makefile PLIST

   py-paramiko: updated to 5.0.0

   5.0.0

   [Feature]: Added a new, optional file_format keyword argument to PKey.write_private_key and PKey.write_private_key_file to allow writing out OpenSSH-style private key files in addition to the legacy PEM format.

   Warning
   While the default format remains PEM in Paramiko 5, future major releases are likely to change that default to the OpenSSH format. We recommend updating any key-writing code you have to be explicit now, to insulate yourself from such an update.
   [Bug]: Added a password kwarg to PKey.from_type_string so it can handle encrypted keys like most other PKey constructors already could.

   [Bug]: Fix Ed25519Key’s internals such that it no longer throws AttributeError during calls to __repr__ when only partly initialized. This isn’t a normal runtime problem (it only happens inside error handling for fatal errors like “not a valid private key”) but was perennially complicating test failure diagnosis and similar scenarios.

   [Support]: Removed the demos/ folder; they’ve become too big a support burden and we’ve wanted to remove them for years.

   Users who enjoyed the client-side demos should look at our wrapper library, Fabric.

   We suspect the most-used demo was demos/demo-server.py and may consider adding a variant of it to the actual Python package in future.

   [Support]: Renamed PKey.from_path’s passphrase argument to password so it’s consistent with all the other methods of instantiating PKey objects.

    [24 lines not shown]
VersionDeltaFile
1.63+5-7security/py-paramiko/Makefile
1.23+1-10security/py-paramiko/PLIST
1.39+4-4security/py-paramiko/distinfo
+10-213 files

NetBSD/pkgsrc 366ODVssysutils/fabric Makefile PLIST

   fabric: updated to 3.2.3

   3.2.2

   [Bug]: fabric.runners.Remote failed to properly deregister its SIGWINCH signal handler on shutdown; in rare situations this could cause tracebacks when the Python process receives SIGWINCH while no remote session is active. This has been fixed.
   [Bug] 2204: The signal handling functionality added in Fabric 2.6 caused unrecoverable tracebacks when invoked from inside a thread (such as the use of fabric.group.ThreadingGroup) under certain interpreter versions. This has been fixed by simply refusing to register signal handlers when not in the main thread. Thanks to Francesco Giordano and others for the reports.
VersionDeltaFile
1.60+10-10sysutils/fabric/Makefile
1.20+10-7sysutils/fabric/PLIST
1.35+4-4sysutils/fabric/distinfo
+24-213 files

NetBSD/pkgsrc IiLlDuXmisc/py-icecream distinfo Makefile

   py-icecream: updated to 2.2.0

   2.2.0

   Added: noColor option for configureOutput, which disables colored output. It is set to False by default.
VersionDeltaFile
1.8+4-4misc/py-icecream/distinfo
1.9+2-2misc/py-icecream/Makefile
+6-62 files

NetBSD/pkgsrc NundZXQdatabases/py-pickleshare PLIST Makefile

   py-pickleshare: converted to wheel.mk
VersionDeltaFile
1.2+6-6databases/py-pickleshare/PLIST
1.5+4-8databases/py-pickleshare/Makefile
+10-142 files

NetBSD/pkgsrc KykLnd7doc CHANGES-2026

   Updated security/adguardhome, devel/py-cython, devel/py-test-codspeed, devel/py-bumpver
VersionDeltaFile
1.3215+5-1doc/CHANGES-2026
+5-11 files

NetBSD/pkgsrc KlD5r06devel/py-bumpver Makefile distinfo

   py-bumpver: updated to 2026.1132

   2026.1132

   - Add `allowed_branches` config option to restrict which branches can be released from. Accepts a comma-separated list of glob patterns (e.g. `master,main,release-*`). Empty (the default) allows any branch.
VersionDeltaFile
1.12+3-6devel/py-bumpver/Makefile
1.7+4-4devel/py-bumpver/distinfo
+7-102 files

NetBSD/pkgsrc V61MT0rdevel/py-test-codspeed distinfo Makefile

   py-test-codspeed: updated to 5.0.3

   5.0.3
   chore: move callgrind skip obj API to instrument-hooks
VersionDeltaFile
1.11+4-4devel/py-test-codspeed/distinfo
1.13+2-2devel/py-test-codspeed/Makefile
+6-62 files

NetBSD/pkgsrc d9506nfdevel/py-cython Makefile distinfo

   py-cython: updated to 3.2.5

   3.2.5 (2026-05-23)

   Bugs fixed

   * A compile failure was fixed when using the walrus operator inside of try-except.
   * Expressions with side-effects as object argument to ``isinstance()`` could get
     evaluated multiple times, e.g. when they use the walrus operator.
   * Several problems generating the shared utility module were resolved, including
     a performance regression with memory views.
   * Some GC and refcounting issues were resolved for Cython functions in the Limited API.
   * Refcounting errors and error handling issues were resolved in some rare error handling cases.
   * Using ``cython.pymutex`` in an extension type with ``cdef`` methods generated
     invalid C code missing the required ``PyMutex`` declarations.
   * Calling ``.get_frame()`` on Cython coroutines could crash in freethreading Python.
   * The vectorcall protocol was not used correctly in ``.throw()`` of Cython coroutines
     when raising the exception only by type (without value or traceback).
   * A problem with cpdef enums in the Limited API of Python 3.11+ was resolved.

    [20 lines not shown]
VersionDeltaFile
1.116+4-8devel/py-cython/Makefile
1.97+4-4devel/py-cython/distinfo
+8-122 files

NetBSD/pkgsrc nKPTyDdsecurity/adguardhome distinfo go-modules.mk

   adguardhome: updated to 0.107.76

   0.107.76

   Changed

   Duration values in YAML configuration file now support d (days) units and has been updated.
   NOTE: Any rollback to version below the v0.107.76 should convert the values back to hours.

   Fixed

   DNS caching with disabled DNSSEC
VersionDeltaFile
1.9+19-19security/adguardhome/distinfo
1.7+4-4security/adguardhome/go-modules.mk
1.17+2-2security/adguardhome/Makefile
+25-253 files

NetBSD/pkgsrc jG5W79Kdoc CHANGES-2026

   doc: Updated devel/objfw to 1.5.4
VersionDeltaFile
1.3214+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc Ek04Umidevel/objfw distinfo Makefile

   Update devel/objfw to 1.5.4

   ObjFW 1.5.3 -> ObjFW 1.5.4, 2026-05-23
    * Fixes a buffer overflow caused by integer promotion rules in
      OFBMPImageFormatHandler and OFQOIImageFormatHandler.
VersionDeltaFile
1.46+4-4devel/objfw/distinfo
1.68+2-2devel/objfw/Makefile
1.36+2-2devel/objfw/PLIST
+8-83 files

NetBSD/pkgsrc zT2kSnuconverters/libcdr Makefile

   libcdr: fix build on macOS

   For some reason, a required library doesn't get linked. Works fine on NetBSD.
VersionDeltaFile
1.75+2-1converters/libcdr/Makefile
+2-11 files

NetBSD/pkgsrc bf5pSIYgeography/proj Makefile

   geography/proj: Force use of pkgsrc nlohmann-json

   Upstream has a very outdated vendored copy.  Add a build define to ask
   for it to be used as a dependency ("external" in upstream parlance).

   Add a command to remove the vendored copy, to guard against accidental
   use.  Leave it commented out because of upstream problems (with
   links).

   Rototill the comments surrounding build and test depends.

   Despite the diff size, this change should have effect on the resulting
   binary.
VersionDeltaFile
1.69+34-15geography/proj/Makefile
+34-151 files

NetBSD/pkgsrc w4XN4LLdoc TODO CHANGES-2026

   doc: Updated devel/ast-grep to 0.42.3nb1
VersionDeltaFile
1.27293+2-2doc/TODO
1.3213+2-1doc/CHANGES-2026
+4-32 files

NetBSD/pkgsrc 6bxCbMCdevel/ast-grep Makefile PLIST

   ast-grep: install shell completions.

   Bump PKGREVISION.
VersionDeltaFile
1.83+16-1devel/ast-grep/Makefile
1.2+3-0devel/ast-grep/PLIST
+19-12 files

NetBSD/pkgsrc BAb7arodevel/kf6-purpose Makefile

   kf6-purpose: add missing dependencies to fix build
VersionDeltaFile
1.21+4-1devel/kf6-purpose/Makefile
+4-11 files

NetBSD/pkgsrc X8tWY1rdevel/kf6-kcmutils Makefile

   kf6-kcmutils: add missing dependency to fix build
VersionDeltaFile
1.22+2-1devel/kf6-kcmutils/Makefile
+2-11 files

NetBSD/pkgsrc e0GBbQ0net/tailscale DESCR

   tailscale: updated description
VersionDeltaFile
1.2+3-4net/tailscale/DESCR
+3-41 files

NetBSD/pkgsrc gttPR8adoc TODO

   doc/TODO: + gnome-commander-2.0, wordpress-7.0.
VersionDeltaFile
1.27292+3-2doc/TODO
+3-21 files

NetBSD/pkgsrc l3WK0Ondatabases Makefile

   databases: Add py-influxdb
VersionDeltaFile
1.750+2-1databases/Makefile
+2-11 files

NetBSD/pkgsrc LzUP98jdoc CHANGES-2026

   doc: Added databases/py-influxdb version 5.3.2
VersionDeltaFile
1.3212+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc DDCByMFdatabases/py-influxdb PLIST Makefile

   databases/py-influxdb: import py314-influxdb-5.3.2

   Library for use with InfluxDB 1.x
VersionDeltaFile
1.1+96-0databases/py-influxdb/PLIST
1.1+22-0databases/py-influxdb/Makefile
1.1+5-0databases/py-influxdb/distinfo
1.1+1-0databases/py-influxdb/DESCR
+124-04 files

NetBSD/pkgsrc hxap5e1doc CHANGES-2026

   doc: Updated www/anubis to 1.25.0
VersionDeltaFile
1.3211+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc XSTiS2Pwww/anubis go-modules.mk distinfo

   www/anubis: Update to 1.25.0

   Changelog:
   1.25.0:
       Add iplist2rule tool that lets admins turn an IP address blocklist into an Anubis ruleset.
       Add Polish locale (#1292)
       Fix honeypot and imprint links missing BASE_PREFIX when deployed behind a path prefix (#1402)
       Add ANEXIA Sponsor logo to docs (#1409)
       Improve idle performance in memory storage
       Add HAProxy Configurations to Docs (#1424)

   What's Changed

       build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1355
       feat(localization): add Polish language translation by @btomaev in #1363
       docs(known-instances): Alphabetical order + Add Valve Corporation by @p0008874 in #1352
       test: basic nginx smoke test by @Xe in #1365
       build(deps): bump the github-actions group with 3 updates by @dependabot[bot] in #1369
       build(deps-dev): bump esbuild from 0.27.1 to 0.27.2 in the npm group by @dependabot[bot] in #1368

    [31 lines not shown]
VersionDeltaFile
1.7+68-68www/anubis/go-modules.mk
1.8+4-4www/anubis/distinfo
1.22+2-3www/anubis/Makefile
+74-753 files

NetBSD/pkgsrc odkrM8sdoc CHANGES-2026

   Updated devel/libgit2, devel/py-wrapt, textproc/py-pdf
VersionDeltaFile
1.3210+4-1doc/CHANGES-2026
+4-11 files

NetBSD/pkgsrc s9JrP4Ktextproc/py-pdf distinfo Makefile

   py-pdf: updated to 6.12.1

   6.12.1

   Security (SEC)
   - Limit input size and element count for XMP metadata

   Robustness (ROB)
   - Prevent cyclic parent hierarchies for inherited dictionaries
   - Deal with invalid first code in LZW decoder
VersionDeltaFile
1.59+4-4textproc/py-pdf/distinfo
1.65+2-2textproc/py-pdf/Makefile
+6-62 files