fq: update to 0.17.0.
Changes
fromjson now works more like jq and as one would expect for decode value. fromjson used to be implement as normal format decode which returns decode values which in turn when decoding from will decode the backing binary range. This result was expressions like "123" | fromjson | fromjson would return 123 instead of failing the second fromjson. #1268 Thanks @soberich for reporting
iprint now support strings in addition to numbers #1246
$ fq -cn '"fq" | iprint'
{"bin":"0b1100110","dec":"102","hex":"0x66","oct":"0o146","str":"f"}
{"bin":"0b1110001","dec":"113","hex":"0x71","oct":"0o161","str":"q"}
In REPL mode input_filename used to always return the last filename. Now it returns null which is wrong but less confusing. The REPL mode needs quite a bit of refactor to fix this properly. #1251
Update gojq fork. Changes from upstream:
Fix gsub and sub when the replacement emits multiple values
Improve performance of regexp functions by caching compiled regexps
Implement splits/2 using match/2 for better jq compatibility
Fix fmax, fmin, modf functions against NaN and infinity
Fix join/1 to use add/0 implementation and handle null separator
Fix significand function against subnormal numbers
[8 lines not shown]
Clean-up / consolidation of m68k bus error / address error handling
code. This is not a very radical change for most m68k platforms,
since they were using a version of this re-factored code already via
an #include directive in locore.s. Now, however, the bus error handlers
are split into CPU "generation"-specific files, and brought into the
kernel via the CPU options in the kernel config file (the goal being
to reduce boilerplate in each locore.s).
The more notable changes:
- amiga and atari no longer have their own copy of each handler, and
some of their local tweaks have been folded into the shared code.
- sun2's bus error handling code has been re-factored into a shared
buserr_10.s to facilitate support for other 68010-based systems (all
of which have their own custom MMU).
- sun3's bus error handling code has been re-refactored into the
shared buserr_2030.s. The Sun3-specific MMU handling is treated
just like the HP-specific MMU handling that was already there.
This additional #ifdef is a small price to pay for more code sharing.
- sun3x now also uses the shared buserr_2030.s rather than an identical
[12 lines not shown]
shells/oh-my-posh: update to 29.9.0
Bug Fixes
git: reflect staged new files (A.) in Working status (353a182), closes #7386
Features
executiontime: add ISO 8601 duration format (6e19a8f)
segments: add taskwarrior segment (ea0dc66)
Make the _C_LABEL definition match exactly <sys/cdefs_elf.h> because
atomic_cas.S now includes <sys/ras.h> and <sys/ras.h> includes <sys/cdefs.h>
because it wants things like __CONCAT(). I think it is better to do it this
way rather than #undef here or in atomic_cas.S because then if the definition
changes it will break again.
pybind11: work around 3.0.1 to 3.0.2 regression
Add link to upstream PR.
This workaround seems to at least fix the test case from the PR and
makes gnuradio build. Should hopefully avoid having to revert
the upgrade to 3.0.2 while waiting for a proper fix from upstream.
libX11: suppress about 2000 lint warnings
Realistically, nobody is going to look at these since there are so many
of them and they repeat. Instead, allow to focus on the remaining
warnings that don't occur so often.
glib2: copy over gobject-introspection's patch-girepository_gitypelib.c
Needed to make library loading for pkgsrc libraries work correctly
on macOS after py-gobject switched to girepository-2.0.
www/ruby-aws-sdk-s3: update to 1.216.0
1.216.0 (2026-03-12)
* Feature - Adds support for account regional namespaces for general purpose
buckets. The account regional namespace is a reserved subdivision of the
global bucket namespace where only your account can create general purpose
buckets.
www/ruby-aws-partitions: update to 1.226.0
1.1226.0 (2026-03-13)
* Feature - Updated the partitions source data the determines the AWS
service regions and endpoints.
1.1225.0 (2026-03-12)
* Feature - Updated the partitions source data the determines the AWS
service regions and endpoints.
textproc/ruby-kramdown-rfc2629: update to 1.7.33
1.7.32 (2026-03-14)
* small fixes in JSON auto-checking
1.7.33 (2026-03-15)
* handle "literal" in author list in doilit.
textproc/ruby-commonmarker: update to 2.7.0
2.7.0 (2026-03-13)
What's Changed
* Bump comrak from 0.49.0 to 0.50.0 by @dependabot[bot] in #440
* Bump time from 0.3.45 to 0.3.47 by @dependabot[bot] in #441
* Bump comrak from 0.50.0 to 0.51.0 by @dependabot[bot] in #444
* Add fenced?/fenced= for code block nodes by @fukayatsu in #443
* Add insert extension for rendering ++text++ as <ins>text</ins> by
@gjtorikian in #446
* Add compact_html render option to suppress newlines in HTML output by
@gjtorikian in #447
* [skip test] Release v2.7.0 by @github-actions[bot] in #445
New Contributors
* @fukayatsu made their first contribution in #443