| 100 most recent commits (all timestamps are UTC) |
|
FreshPorts has everything you want to know about FreeBSD software, ports, packages,
applications, whatever term you want to use.
Yesterday's Commits | Quarterly Branch
|
|
Wednesday, 2 Sep 2026
|
05:40 Dima Panov (fluffy)
security/botan3: bump comsumers after botan update
5894670 |
05:40 Dima Panov (fluffy) 
- security/botan3 3.13.0
Portable, easy to use and efficient C++ crypto library
security/botan3: update to 3.13.0 release (+)
Release notes: https://botan.randombit.net/news.html#version-3-13-0-2026-08-13
25933cf |
05:39 Emanuel Haupt (ehaupt) 
- devel/mimalloc 3.5.1
General-purpose allocator with excellent performance characteristics
devel/mimalloc: Update to 3.5.1
096e77f |
05:12 Jose Alonso Cardenas Marquez (acm)
security/veracrypt: Fix build on aarch64
3ea9475 |
04:24 Hiroki Tagato (tagattie)
misc/py-litellm-proxy-extras: Update to 0.4.92
Reported by: Repology
742e58f |
04:24 Hiroki Tagato (tagattie)
misc/py-litellm: Update to 1.99.0
Changelog: https://github.com/BerriAI/litellm/releases/tag/v1.99.0
Reported by: portscout
445cca7 |
04:21 Jose Alonso Cardenas Marquez (acm)
games/naev: Updte to 0.13.5
cb1a16a |
04:11 Jose Alonso Cardenas Marquez (acm)
editors/lazarus-devel: Update to 4.99.20260901
dc55f04 |
04:11 Jose Alonso Cardenas Marquez (acm) 
- lang/fpc-devel 3.3.1.20260901
Free Pascal compiler with Turbo and Delphi (devel)
- lang/fpc-devel-source 3.3.1.20260901
Free Pascal compiler with Turbo and Delphi compatibility (source)
lang/fpc-devel*: Update to 3.3.1.20260901
a91e988 |
02:42 Santhosh Raju (fox)
lang/babashka: Update to 1.13.220
Changes since 1.13.219:
1.13.220 (2026-08-31)
Read the release blog post:
https://blog.michielborkent.nl/babashka-ffi.html
FFI:
* Add experimental babashka.ffi
(https://github.com/babashka/ffi): call C functions in shared
libraries straight from babashka and JVM Clojure! See the guide:
https://github.com/babashka/ffi/blob/main/doc/guide.md
* Linux: dynamic binaries require glibc 2.28. The install script
selects the static binary on older systems
* On Linux, the install script installs the dynamic binary by
default. It installs the static binary on musl systems and on
systems with glibc older than 2.17. The --static and --dynamic
options override the automatic selection
* The dynamic binary for Linux amd64 links every library statically
except glibc. It no longer needs libz.so.1 at run time
* On FreeBSD, the install script installs the dynamic binary when the
Linuxulator has a linux_base with glibc 2.17 or newer, such as
linux_base-rl9
* The Linux binaries include zlib 1.2.13. The static binary uses musl
1.2.6. The build pins both versions and compiles them from source
Tasks:
* :exec-args can sit directly on a task, not only under :cli, the way
(exec ...) already reads it. The bare key wins over the one under
:cli. Before, it was ignored on an :exec-fn or :cmd task
* A task's :cli :exec-args merge over the :tasks top level
:exec-args. Before, the task's map replaced the top level's
* A task's :cli spec adds to the runner-level :tasks {:cli {:spec
...}} instead of replacing it. An option from the runner level
keeps its coercion and default, and --help lists it under Inherited
options
* A task with :exec-fn runs when another task :depends on it. Before,
it did nothing
* Options declared by an :exec-fn task named in :depends also parse
for the CLI task that runs, with their coercion and default. --help
lists them under Inherited options
* A :depends task's :exec-fn receives only the options that task
declared, with its defaults, not everything the command line parsed
* A CLI task cannot name a :cmd task in :depends, unless that task
also has a :task body: nothing says which of its subcommands to run
* :cmd can be a symbol naming a var that holds the command tree, like
:cli. Its namespace loads on demand
* Shell completion offers inherited options (via :depends) too
* bb tasks and --help still describe a task when a dependency's
namespace does not load. Running the task reports the error
Misc:
* SCI: call site caching for instance and static methods,
constructors and fields. Interop calls are up to 5x faster
* #1321: support implementing the clojure.core/Inst protocol on
records, types and reify, and with extend-protocol and extend-type
* Fix output of custom clojure.pprint dispatch functions
* #2054: a proxy of java.io.Writer supports the one-argument write
and append, so binding *out* to it works. Interop on a proxied
Writer or Reader finds their own methods instead of only the ones
on Closeable
* #1728: Add java.util.TreeMap
* Fix: the % parameters of a function literal inside a syntax quote
are no longer namespace-resolved, through edamame 1.6.43
* Building babashka from source no longer fails when one upstream
host is unreachable. The build fetches the musl and zlib tarballs
with retries, from mirrors, and caches them per machine
* Building from source: the BABASHKA_DYNAMIC build flag is
BABASHKA_FULLY_DYNAMIC, because it named a different axis than the
install script's --dynamic
Upgrades:
* Bump jline to 4.4.0: security hardening, a rewritten signal path
for the FFM terminal, Kitty keyboard protocol. The ambiguous key
binding timeout in the REPL drops from 1000 ms to 100 ms
* Bump GraalVM to 25.0.4. The macOS amd64 binary stays on 25.0.1, the
last version Oracle ships for that platform
* #2021: bump http-kit to 2.9.0-beta4, which fixes four security
advisories
* Bump babashka.cli to 0.12.88: help shows the dispatch-level spec
under Inherited options, format-command-help accepts :spec,
completion no longer offers :positional keys as options, the
command named on the command line wins over the :exec-args of its
ancestors, and the fish completion snippet keeps the emitted option
order
* babashka.cli 0.12.88 also adds :cmd-aliases, alternative names for
a command that dispatch like the command itself, and attached short
option values: -J-Dfoo=bar binds "-Dfoo=bar" when :J declares a
non-boolean :coerce. An interior hyphen in a cluster of flags is an
error instead of silently ending option parsing
* Bump edamame to 1.6.43, which carries the syntax-quote fix listed
above
* Bump jsoup to 1.23.2: W3C namespace fixes, URL validation per RFC
9110, CR and LF escaping in multipart form names
* Bump hiccup to 2.0.0 final, from 2.0.0-RC1
* Bump rewrite-clj to 1.2.57
* Bump selmer to 1.13.5: Twig-style {% embed %}, multiline tags. The
shipped deps.edn said 1.12.70 while the binary carried 1.13.1; both
now agree
afdcf81 |
|
Tuesday, 1 Sep 2026
|
22:44 Vladimir Druzenko (vvd) Author: Daniel Engberg
- graphics/openxr 1.1.62_1
OpenXR provides access to Augmented and Virtual Reality (XR-platforms)
graphics/openxr: Fix build after update jsoncpp, improve port
After add devel/jsoncpp/patch-jsoncpp-namespaced-targets.cmake in
9d1b7732976723160adfd2c6c4240e34555ac30c graphics/openxr fails to build
with error:
ninja: error: 'jsoncpp_lib-NOTFOUND', needed by
'src/loader/libopenxr_loader.so', missing and no known rule to make it
- Switch to use shared library jsoncpp instead of static.
- Update compiler requirements in USES.
- Ensure that tests aren't picked up in some weird way (not included in
repo).
PR: 298099
Sponsored by: UNIS Labs
Co-authored-by: Vladimir Druzenko <vvd@FreeBSD.org>
7463879 |
22:41 Vladimir Druzenko (vvd) 2026Q3
net/rabbitmq: Update 4.3.2 => 4.3.5
Changelog:
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.3
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.4
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.5
Sponsored by: UNIS Labs
MFH: 2026Q3
(cherry picked from commit 4a0d8265b8505638e8c684bc716f6da74fe0fba7)
5f3d062 |
22:34 Vladimir Druzenko (vvd)
net/rabbitmq: Update 4.3.2 => 4.3.5
Changelog:
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.3
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.4
https://github.com/rabbitmq/rabbitmq-server/releases/tag/v4.3.5
Sponsored by: UNIS Labs
MFH: 2026Q3
4a0d826 |
22:13 Daniel Engberg (diizzy) 
- lang/julia 1.10.5_1
Implementation of Julia, a language for technical computing
lang/julia: Mark BROKEN
Build crashes
Reported by: pkg-fallout
926b5d3 |
21:57 Yusuf Yaman (nxjoseph) Author: Alexander Vereeken
x11-themes/win98se-icon-theme: Update 0.2.15 => 0.2.16.1
Changelogs:
- https://github.com/nestoris/Win98SE/releases/tag/v0.2.16
- https://github.com/nestoris/Win98SE/releases/tag/v0.2.16.1
PR: 298100
Reported by: Alexander Vereeken <avereeken@fastmail.de> (maintainer)
Approved by: osa, vvd (Mentors, implicit)
6d7f0c7 |
21:56 Daniel Engberg (diizzy)
security/vuxml: Add entry for giflib CVE-2026-26740
5ffc40c |
21:51 Kousuke Kannagi (mce) Author: Eric Camachat
www/dooble: Update to 2026.08.21
Link with gpgme for use with the application lock function.
Replace /usr/local with ${LOCALBASE}.
Install dictionaries into ${DATADIR} to avoid pageedit conflict.
Remove the unnecessary desktop-file-edit.
Changelog:
https://github.com/textbrowser/dooble/releases#release-2026.08.21
PR: 297900
Approved by: Eric Camachat <eric@camachat.org> (maintainer)
Approved by: osa (mentor)
Co-authored-by: mce
a3c5311 |
21:44 Daniel Engberg (diizzy)
security/vuxml: Add entries for expat2 CVE-2026-66046 and CVE-2026-76641
3dc4c03 |
21:42 Daniel Engberg (diizzy)
security/openconnect-gui: Remove deprecation notice and expiration date
As per new policies you need to track multiple branches.
I don't have time, hardware or interest trying to additionally keep up
with quarterly so I'll revert deprecation and expiration date
Reported by: joneum
a6df369 |
21:42 Daniel Engberg (diizzy) 
- www/dtse 1.3_4
Indexing search engine for use on small websites
www/dtse: Remove deprecation notice and expiration date
As per new policies you need to track multiple branches.
I don't have time, hardware or interest trying to additionally keep up
with quarterly so I'll revert deprecation and expiration date
Reported by: joneum
a303bb1 |
21:42 Daniel Engberg (diizzy) 
- devel/etcd 2.3.8_51
Highly-available key value store and service discovery
devel/etcd: Remove deprecation notice and expiration date
As per new policies you need to track multiple branches.
I don't have time, hardware or interest trying to additionally keep up
with quarterly so I'll revert deprecation and expiration date
Reported by: joneum
55ec3e5 |
21:36 Jason W. Bacon (jwb) 
- biology/freebayes 1.3.10
Bayesian haplotype-based polymorphism discovery and genotyping
biology/freebayes: Update to 1.3.10
A few fixes and enhancements
Changes: https://github.com/freebayes/freebayes/releases
Reported by: portscout
92b409e |
20:46 Jimmy Olgeni (olgeni)
sysutils/zpool-set: Update to 1.1.0
cb0b903 |
20:44 Cy Schubert (cy)
sysutils/xdu: Update to 3.1
9f3a0ae |
20:44 Cy Schubert (cy)
security/aide: Update to 0.19.4
7ac03cc |
20:28 Muhammad Moinur Rahman (bofh) 2026Q3
devel/py-importlib-metadata7: Mark DEPRECATED
- No consumers left
- Use devel/py-importlib-metadata8
- Set EXPIRATION_DATE 2026-10-01
(cherry picked from commit e3a63a09a99f51ec5b3da775acaf9541899d6c76)
0d6b099 |
20:28 Muhammad Moinur Rahman (bofh) 2026Q3
devel/py-importlib-metadata6: Mark DEPRECATED
- No consumers left
- Use devel/py-importlib-metadata7
- Set EXPIRATION_DATE 2026-10-01
(cherry picked from commit 30b5640b94497d47d0c0d50a24a5837a2fb63917)
ed34f84 |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-hgtools: Update version 9.0.0=>9.1.0
Changelog: https://github.com/jaraco/jaraco.vcs/releases/tag/hgtools-v9.1.0
f92616e |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-jira: Update version 3.5.2=>3.6.0
Changelog: https://github.com/pycontribs/jira/releases/tag/3.6.0
d180c5fa |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-pytest-randomly: Update version 4.0.1=>4.1.0
Changelog: https://github.com/pytest-dev/pytest-randomly/releases/tag/4.1.0
56e8bb9 |
20:27 Muhammad Moinur Rahman (bofh) 
- devel/py-tox 4.42.0
Virtualenv-based automation of test activities
devel/py-tox: Update version 4.41.0=>4.42.0
Changelog: https://github.com/tox-dev/tox/releases/tag/4.42.0
05a78ef |
20:27 Muhammad Moinur Rahman (bofh)
net-mgmt/py-arouteserver: Update version 1.18.0=>1.19.0
Changelog: https://github.com/pierky/arouteserver/releases/tag/v1.19.0
494658f |
20:27 Muhammad Moinur Rahman (bofh)
multimedia/py-av: Update version 17.0.1=>17.1.0
Changelog: https://pyav.basswood-io.com/docs/stable/development/changelog.html
5b2c2e1 |
20:27 Muhammad Moinur Rahman (bofh)
databases/py-alembic: Update version 1.16.4=>1.16.5
Changelog: https://github.com/sqlalchemy/alembic/releases/tag/rel_1_16_5
1dd9e69 |
20:27 Muhammad Moinur Rahman (bofh)
finance/py-stripe: Update version 7.2.0=>7.3.0
Changelog: https://github.com/stripe/stripe-python/releases/tag/v7.3.0
6b7076d |
20:27 Muhammad Moinur Rahman (bofh) 
- www/py-autobahn 26.6.2
WebSocket client & server library, WAMP real-time framework
www/py-autobahn: Update version 26.6.1=>26.6.2
Changelog: https://github.com/crossbario/autobahn-python/releases/tag/v26.6.2
92f5b04 |
20:27 Muhammad Moinur Rahman (bofh)
net-mgmt/centreon-clib: Update version 21.10.0=>21.10.1
Changelog: https://github.com/centreon/centreon-collect/releases/tag/21.10.1
0fc58c7 |
20:27 Muhammad Moinur Rahman (bofh) 
- net/nng 1.12.3
Lightweight, broker-less messaging
net/nng: Update version 1.12.2=>1.12.3
Changelog: https://github.com/nanomsg/nng/releases/tag/v1.12.3
6a03403 |
20:27 Muhammad Moinur Rahman (bofh)
net-im/py-slack-sdk: Update version 3.43.0=>3.44.0
Changelog: https://github.com/slackapi/python-slack-sdk/releases/tag/v3.44.0
2d968b9 |
20:27 Muhammad Moinur Rahman (bofh)
www/py-django-staticinline: Update version 1.5=>1.6
Changelog: https://github.com/bartTC/django-staticinline/releases/tag/v1.6
e57e177 |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 9.0.0=>9.0.1
Changelog: https://github.com/python/importlib_metadata/releases/tag/v9.0.1
6b1866b |
20:27 Muhammad Moinur Rahman (bofh) 
- textproc/vale 3.19.0
Command-line tool that brings editorial style guide to life
textproc/vale: Update version 3.18.0=>3.19.0
Changelog: https://github.com/errata-ai/vale/releases/tag/v3.19.0
15731d0 |
20:27 Muhammad Moinur Rahman (bofh) 
- archivers/py-arpy 2.4.0
arpy is a library for accessing the archive files and reading the contents
archivers/py-arpy: Update version 2.3.0=>2.4.0
Changelog: https://github.com/onekey-sec/arpy/releases/tag/2.4.0
2696bd21 |
20:27 Muhammad Moinur Rahman (bofh) 
- databases/valkey8 8.1.10
High-performance data structure server that primarily serves key/value workloads (8.X.X series)
databases/valkey8: Update version 8.1.9=>8.1.10
Changelog: https://github.com/valkey-io/valkey/releases/tag/8.1.10
886a156 |
20:27 Muhammad Moinur Rahman (bofh) 
- databases/valkey 9.1.2
High-performance data structure server that primarily serves key/value workloads
databases/valkey: Update version 9.1.1=>9.1.2
Changelog: https://github.com/valkey-io/valkey/releases/tag/9.1.2
95ee82a |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata7: Mark DEPRECATED
- No consumers left
- Use devel/py-importlib-metadata8
- Set EXPIRATION_DATE 2026-10-01
e3a63a0 |
20:27 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata6: Mark DEPRECATED
- No consumers left
- Use devel/py-importlib-metadata7
- Set EXPIRATION_DATE 2026-10-01
30b5640 |
20:19 Jung-uk Kim (jkim)
korean/ibus-hangul: Remove a redundant entry from plist
GLIB_SCHEMAS automatically adds the entry.
PR: 297588
Submitted by: fluffy
569f0f9 |
20:02 Jimmy Olgeni (olgeni)
security/vuxml: Document remaining Erlang/OTP vulnerabilities
Upstream published 16 advisories alongside OTP 29.0.6, 28.5.0.6 and
27.3.4.17. CVE-2026-75538 already had an entry; add a combined one for
the other 15, which share the same affected packages and fixed versions.
Most are in the inets httpd and httpc implementations: HTTP request
smuggling, two mod_auth authentication bypasses and several denial of
service issues, plus unbounded integer conversion in stdlib, snmp and
eldap.
Also add the now-published GHSA reference to the CVE-2026-75538 entry.
8d731c8 |
19:57 Jimmy Olgeni (olgeni) 2026Q3
- databases/couchdb3 3.5.2_4
JSON document database with HTTP API and scalable cluster mesh sync
databases/couchdb3: Bump PORTREVISION after erlang-runtime28 update
(cherry picked from commit ee1a7d634d3872a322d40e1981c73fac6ed25f07)
67de2b9 |
19:55 Jimmy Olgeni (olgeni) 
- databases/couchdb3 3.5.2_4
JSON document database with HTTP API and scalable cluster mesh sync
databases/couchdb3: Bump PORTREVISION after erlang-runtime28 update
ee1a7d6 |
19:54 Jimmy Olgeni (olgeni) 2026Q3
- databases/couchdb3 3.5.2_3
JSON document database with HTTP API and scalable cluster mesh sync
databases/couchdb3: Resolve bundled OTP versions dynamically in PLIST_SUB
The release bundles erts and 13 OTP applications from
lang/erlang-runtime28, and pkg-plist pinned each of their versioned
directory names. Six of the last eight plist commits were pure OTP
rename churn, the largest touching 610 lines, while the 3.5.2 update
itself touched 23.
Derive the versions from the installed runtime at plist-generation time
instead. The package file list is unchanged: resolving the tokenized
plist with the versions this build staged reproduces the previous
pkg-plist byte for byte, so no PORTREVISION bump is needed.
An erlang-runtime28 update now needs only a PORTREVISION bump. Note
this reads ${LOCALBASE}/lib/erlang28 rather than the staged release,
because generate-plist runs before do-install; it holds as long as the
release copies erts and the OTP applications unmodified.
CouchDB's own rebar dependencies stay pinned deliberately - they move
only on a CouchDB update, where the change is worth seeing in review.
Approved by: dch (maintainer)
Differential Revision: https://reviews.freebsd.org/D59185
(cherry picked from commit aaa28e3db45298305baf558867d6d4ea43e2ac63)
b8ecea7 |
19:41 Thierry Thomas (thierry) 
- cad/cura 5.7.0_3,2
Slicing application for 3D printers
cad/cura: chase py-numpy_stl
Approved by: blanket (fix)
6d0d5af |
19:35 Juraj Lutter (otis)
textproc/py-jinjanator: Chase hatchling update
Reported by: pkg-fallout
648e90a |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-runtime29: Update to 29.0.6
(cherry picked from commit e4ebe0f4ae3484608c0066f7138b3c4899aa4398)
775c904 |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-runtime28: Update to 28.5.0.6
(cherry picked from commit 5bb61e54c7d1405443767cb988385dda73c336f6)
97af03e |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-runtime27: Update to 27.3.4.17
(cherry picked from commit b4373b83e3d88660fff96c2b8190f69e27754b70)
4c1da4f |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-man: Update to 28.5.0.6
(cherry picked from commit b1969d7c8189fbc8149146d1807500ac6d52ab17)
6221814 |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-doc: Update to 28.5.0.6
(cherry picked from commit e50d8aab4c27e1208e88176c94bce91048fe7e35)
91d48dc |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-java: Update to 28.5.0.6
(cherry picked from commit 60d21dcf39a6b770e09dd7043189c57dc3f01b47)
f56e784 |
19:30 Jimmy Olgeni (olgeni) 2026Q3
lang/erlang-wx: Update to 28.5.0.6
(cherry picked from commit c860bcad8e6f08a911d7470ec20291340391d3f6)
0e62b71 |
19:30 Jimmy Olgeni (olgeni) 2026Q3
- lang/erlang 28.5.0.6,4
Functional programming language from Ericsson
lang/erlang: Update to 28.5.0.6
(cherry picked from commit ceab5f12b5c54bce7e3b294f7ad1b97e620eefa7)
ada85eeb |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-runtime29: Update to 29.0.6
e4ebe0f |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-runtime28: Update to 28.5.0.6
5bb61e5 |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-runtime27: Update to 27.3.4.17
b4373b8 |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-man: Update to 28.5.0.6
b1969d7 |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-doc: Update to 28.5.0.6
e50d8aa |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-java: Update to 28.5.0.6
60d21dc |
19:25 Jimmy Olgeni (olgeni)
lang/erlang-wx: Update to 28.5.0.6
c860bca |
19:25 Jimmy Olgeni (olgeni) 
- lang/erlang 28.5.0.6,4
Functional programming language from Ericsson
lang/erlang: Update to 28.5.0.6
ceab5f1 |
19:25 Jimmy Olgeni (olgeni)
security/vuxml: Document CVE-2026-75538 in Erlang/OTP
5ff179d |
19:23 Jimmy Olgeni (olgeni)
net/redpanda-connect: Update to 4.107.2
ac1195b |
19:23 Jimmy Olgeni (olgeni) 
- databases/pgbot 0.6.0
Read-only observability and health reports for PostgreSQL
databases/pgbot: Update to 0.6.0
525a828 |
18:44 Rene Ladan (rene)
Tools/scripts/rmport: remind user when removing an electron port to update its
USES
28a3750 |
18:42 Nuno Teixeira (eduardo)
emulators/dosbox-x: Update to 2026-08-31
- Remove upstreamed ffmpeg9 patch
- Remove unneeded #include <stdio.h> in include/setup.h patch.
ChangeLog:
https://github.com/joncampbell123/dosbox-x/releases/tag/dosbox-x-v2026.08.31
868cb3e |
18:29 Matthew Seaman (matthew) 
- mail/libtlsrpt 0.5.1
Low-level C Library to implement TLSRPT into a MTA
mail/libtlsrpt: update to 0.5.1
Changes: https://github.com/sys4/libtlsrpt/blob/v0.5.1/CHANGELOG.md
Reported by: portscout, repology
4665514 |
17:58 Jose Alonso Cardenas Marquez (acm) 
- audio/cheesecutter 2.10_2
Tracker for composing music for the C64 SID chip
- devel/containers 0.9.0_6
Containers backed on dlang by std.experimental.allocator
- devel/d-scanner 0.15.2_1
Swiss-army knife for D source code
- devel/derelict-sdl2 2.1.4_10
Dynamic bindings to SDL2 and its libraries for the D lang
- devel/derelict-util 2.1.0_10
The base library for all Derelict packages
- devel/dlib 1.6.0_1
Math, XML, I/O streams, image and audio processing for D
- devel/dsymbol 0.14.1_5
Symbol lookup support for libdparse
- devel/glibd 2.4.4.g_2
D language bindings for the GLib Utility Library
- devel/icontheme 1.2.3_6
Icon Theme Specification implementation in D programming language
- devel/inifiled 2.0.0_6
Compile-time .ini file parser and writer generator for D
(Only the first 10 of 27 items in this commit are shown above. )
*/*: Bump PORTREVISION. lang/ldc was updated to 1.43.0
c85de6d |
17:41 Jose Alonso Cardenas Marquez (acm) 
- devel/dcd-server 0.16.4
Auto-complete program for the D programming language (server)
devel/dcd-server: Update to 0.16.4
2670192 |
17:39 Jose Alonso Cardenas Marquez (acm) 
- devel/dub 1.40.0_3
Package and build manager for D applications and libraries
devel/dub: Bump PORTREVISION. lang/ldc was updated to 1.43.0
1f1898be |
17:30 Jose Alonso Cardenas Marquez (acm)
lang/ldc: Update to 1.43.0
ChangeLog at: https://github.com/ldc-developers/ldc/releases/tag/v1.43.0
PR: 297126
c7e111c |
17:06 Sergey A. Osokin (osa)
www/freenginx-devel: update: 1.31.3 -> 1.31.4
Sponsored by: tipi.work
<ChangeLog>
*) Bugfix: the "index" directive used old values of non-cacheable
variables.
*) Bugfix: variables with side effects might cause incorrect results
during variable substitution and "no buffer space in script copy"
alerts.
*) Bugfix: a segmentation fault might occur in a worker process when
using regular expression captures with the
"proxy_cache_background_update" directive or the
ngx_http_slice_module.
*) Bugfix: in the ngx_http_perl_module; the bug had appeared in 1.31.3.
*) Bugfix: "header already sent" alerts might appear in logs when using
SSI with proxying.
*) Bugfix: some data received from a backend with unbuffered proxying
might not be sent to the client immediately when using SSI and the
"gunzip" directive.
*) Change: now, if a connection to a backend is closed due to a timeout
during buffered proxying, all data previously received from the
backend are sent to the client.
</ChangeLog>
8ab5fc7 |
16:42 Kirill Ponomarev (krion) 
- devel/pcre2 10.48
Perl Compatible Regular Expressions library, version 2
devel/pcre2: Update to 10.48
PR: 298089
Reported by: dizzy
f2beed2 |
16:39 Joel Bodenmann (jbo)
devel/nextpnr-devel: Update to 2026-09-01
467e9d0 |
16:30 Ashish SHUKLA (ashish)
www/element-web: Update to 1.12.27
Approved by: maintainer (implicit, version bump, as per PR 258262)
1b0f375 |
16:27 Nicola Vitale (nivit)
devel/py-virtualenv: Update to 21.7.8
ChangeLog:
1. https://github.com/pypa/virtualenv/releases/tag/21.7.8
Reported by: "github-actions[bot]" <notifications@github.com>
4b5409d |
16:23 Norikatsu Shigemura (nork)
devel/py-cfn-lint: Update to 1.56.0
ChangeLog: https://github.com/aws-cloudformation/cfn-lint/releases/tag/v1.56.0
Approved by: hrs (mentor, blanket)
6f5fbe8 |
16:16 Nicola Vitale (nivit)
sysutils/yazi: Update to 26.9.1
ChangeLog:
1. https://github.com/sxyazi/yazi/blob/main/CHANGELOG.md#v2691
Reported by: "github-actions[bot]" <notifications@github.com>
58c98a3 |
15:50 Norikatsu Shigemura (nork)
www/p5-HTTP-Tiny-Paranoid: Update to 0.08
ChangeLog: https://metacpan.org/dist/HTTP-Tiny-Paranoid/changes
Approved by: hrs (mentor, blanket)
c9a9bd9 |
15:29 Stephen Montgomery-Smith (stephen)
math/octave-forge-pkg-octave-doc: Update to 0.8.0.
1d99139 |
15:17 Juraj Lutter (otis)
net-mgmt/zabbix74-proxy: Fix rc.d script
After chasing MariaDB-related changes, proxy rc.d script was missed out.
Fixes: 6ca0412c95f17
8157897 |
15:16 Juraj Lutter (otis)
net-mgmt/zabbix7-proxy: Fix rc.d script
After chasing MariaDB-related changes, proxy rc.d script was missed out.
Fixes: b50298087b6d
4e20a0c |
15:15 Gleb Popov (arrowd) Author: Matthias Andree
- net/chrony 4.9
System clock synchronization client and server
net/chrony: Add TEST_DEPENDS...shells/bash
...to spell out "make test" requirements.
Fixes: d5885a88b9c69036873ebc68cd01e507ac774d8e
Reported by: arrowd@
Pull request: https://github.com/freebsd/freebsd-ports/pull/606
9114544 |
14:59 Doug Rabson (dfr) 
- sysutils/ocijail 0.6.1
Experimental, proof-of-concept OCI-compatible runtime for jails
sysutils/ocijail: Update to 0.6.1
5b79e85 |
14:19 Emanuel Haupt (ehaupt)
net-mgmt/gping: Update to 1.21.0
dd6749e |
13:30 Dima Panov (fluffy) 
- irc/quassel 0.14.50
Qt 6 based distributed IRC client (client and monolithic binary)
- irc/quassel-core 0.14.50
Qt 6 based distributed IRC client (core/server only)
irc/quassel[-core]: update to 0.14.50, WIP build of Qt6 porting stage
PR: 296230
55f2a5e |
13:27 Stefan Eßer (se) 
- net/cloudquery 6.41.2
Transform cloud infrastructure into queryable SQL tables
net/cloudquery: update to version 6.41.2
Go modules used in the build have been updated.
3ae825c |
13:21 Dag-Erling Smørgrav (des)
security/vuxml: Unbreak
Fixes: 820ac6c24c44 ("security/vuxml: add www/*chromium < 152.0.7977.64")
16ddd30 |
13:09 Max Brazhnikov (makc)
deskutils/kodaskanna: Update to 0.2.3
8c21745 |
13:09 Max Brazhnikov (makc)
net-p2p/libktorrent: Mark IGNORE on i386
Hopefully, it will be fixed with the next release.
6b6943d |
13:07 Matthew Seaman (matthew)
mail/py-tlsrpt-reporter: update to 0.6.0
Changes: https://github.com/sys4/tlsrpt-reporter/blob/v0.6.0/CHANGELOG.md
Reported by: portscout, repology
e254054 |