Update to dhcpcd-10.3.1 with the following changes:
* BSD: don't send uninitialised memory using ps_root_indirectioctl
* Fix fallback_time option by @ColinMcInnes
* IPv4: Ignore DHCP state when building routes
* options: Ensure ldop is not NULL dereferenced
* route: Routes may not have an interface assinged
* options: Ensure that an overly long bitflag string does not crash
* options: Don't assume vsio options have an argument
* common: Cast via uintptr_t rather than unsigned long in UNCONST
* privsep: Ensure we recv for real after a successful recv MSG_PEEK
* DHCP: Add parentheses to macro definitions
* ipv6nd: empty IPV6RA_EXPIRE eloop queue when dropping
Update to dhcpcd-10.3.1 with the following changes:
* BSD: don't send uninitialised memory using ps_root_indirectioctl
* Fix fallback_time option by @ColinMcInnes
* IPv4: Ignore DHCP state when building routes
* options: Ensure ldop is not NULL dereferenced
* route: Routes may not have an interface assinged
* options: Ensure that an overly long bitflag string does not crash
* options: Don't assume vsio options have an argument
* common: Cast via uintptr_t rather than unsigned long in UNCONST
* privsep: Ensure we recv for real after a successful recv MSG_PEEK
* DHCP: Add parentheses to macro definitions
* ipv6nd: empty IPV6RA_EXPIRE eloop queue when dropping
Add support for mercurial (Hg)
This version will use hg if in a src directory hg clone,
or CVS if in a checked out CVS tree.
Normal usage remains:
sh tzdata2netbsd =
gam: update to 7.36.01
Changes since 7.34.02:
7.36.01
Fixed bug in gam info|print|show policies where the policyQuery/query field was not displayed.
Added option noidmapping to gam info|print|show policies to suppress adding the policyQuery/groupEmail and policyQuery/orgUnitPath name fields that are mapped from the policyQuery/group and policyQuery/orgInit id fields.
7.36.00
Added options filtermultiattrtype and filtermultiattrcustom to gam info user and gam print users that support filtering display based on type or customType.
7.35.03
Updated gam <UserTypeEntity> print filelist|filecounts to handle options showsize and showsizeunits as independent options.
showsize - Display a column Size with a byte count
[135 lines not shown]
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]