PR/60597: RVP: Instead of assuming that writing to a UDP port is an immediate
success, wait for a bit for the ICMP port unreachable message to reach us.
croc: Update to 11.1.1
What's Changed
fix: coloring by @schollz in #1240
docs(README.md): fix stale Go version requirement in README (Go 1.25+) by @Fawz-Haaroon in #1242
chore: upgrade to v11 by @schollz in #1246
fix: web load phrase faster by @schollz in #1247
fix: tests by @schollz in #1248
pnpm: update to 12.0.0-rc.3
Pkgsrc changes:
* Use pre-release RC tag instead of release tag.
* One more patch for NetBSD support.
pnpm 12.0.0-rc.4 needs to wait for pkgsrc Rust updating to v1.97.1.
p5-Log-Log4perl: update to 1.58.
1.58 2026-08-14
- fix Log::Log4perl::Catalyst losing log messages when two Catalyst apps
share a process - thanks @fleetfootmike
p5-Crypt-DES: update to 2.09.
2.09 2026-08-10
[Significant Changes since 2.08]
- Essentially 2.08-TRIAL with minor documentation and test updates
- Add a Security Considerations section to the pod
- Clarify module recommendations
- Move new Module::Whatever to Module::Whatever->new() in pod and tests
[Detailed Changes]
- 6d8a719 Increment the version for a release
- 8aa5583 Update .gitignore
- e4255e8 Update README
- bfc70b5 Add a Security Considerations section and clarifiy recommendations
- 6f3c622 Modernize module new() in tests
- 061b73a Fix over item back pod with blank lines
- cefb17d Modernize new() calling and fix missing SYNOPSIS
- 40eb31b Add a Changes file
[17 lines not shown]
evbarm/ti_edma: fix comparison sign
The comparison sign was the wrong way around. This got masked
during testing because the driver reverted to PIO mode
when it couldn't acquire a DMA channel.
Fully describe the new dotglob option
Move it to the correct place in the list of options (these things
are sorted!) and flesh out the description of what it (now) does a bit.
While here, fix some minor markup issues in an earlier revision relating
to the new -c option to the read built-in.
devel/jj: add a patch to fix the build on big-endian hosts.
This applies the change from this upstream pull request:
https://github.com/facebook/watchman/pull/1238
Admittedly I'm not able to figure out which version of the
serde_bser crate has the fix and why it's not in devel/jj: the
crate appears to be version 0.4.0 both in devel/jj and at the head
of the github development branch, and this fix is in one but
not the other.
Reported upstream at https://github.com/jj-vcs/jj/issues/9992.
sh: fully implement dotglob
Since dotglob has been created, and is now a sh option, implement
it fully, not only for filename completion (but not at all in SMALL
shells).
When dotglob is enabled '*' (etc) matches filenames beginning with
a dot (period, '.') as well as everything else. When it is disabled
the historic practice of only matching files with names starting with
a '.' when the pattern starts (that component) with a '.' continues.
The default (as with most options) is disabled (traditional behaviour).
Note that the names "." and ".." are unaffected by dotglob, they
are only ever matched by a pattern starting with '.'.
Note all of this applies only to filename expansion (aka, glob) and
libedit's filename completion, and not to any other uses of pattern
matching in sh. In all other contexts a '.' is just a character,
wherever it appears, and is matched just the same as anything else.