Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because japanese/zinnia's build infrastructure does not explicitly set
its C++ standard, this leads to an error:
svm.cpp:50:10: error: no member named 'random_shuffle' in namespace 'std'
std::random_shuffle(index.begin(), index.begin() + active_size);
~~~~~^
This is because std::random_shuffle has been removed from C++17. An
suitable replacement is std::shuffle, using a std::random_device in
combination with std::mt19937 as the random number engine.
PR: 271953
Approved by: fernape
MFH: 2023Q2
Changelog:
Enhancements:
* Improve support for matching tags in conditional rules
* Add device type & role filters for device components
* Collapse context data by default when viewing a rendered
device configuration
* Record client IP address when logging authentication failures
* Add an option to hide custom fields only if unset
* Apply filter parameters to links in object count dashboard widgets
Bug Fixes:
* Improve rack space validation when creating multiple devices
via REST API
* Fix exception when applying "empty" filter lookup with invalid value
* Prevent reassignment of an IP address designated as primary for
its parent object
* Redirect user to originating view after editing/deleting
an image attachment
* Restore hover preview for embedded image attachment tables
* Strip leading & trailing whitespace from custom link URL & text
* Fix sizing of rear port selection widget on front port
template creation form
* Use contact assignments table to display the contacts assigned
to an object
* Fix extraneous contacts listed in object contact assignments view
* Object counts dashboard widget should support URL-compatible
query filters
* Fix GraphiQL UI by reverting graphene-django to earlier version
* Escape display text in API-backed selection widgets
* Correct arithmetic for converting inches to meters
https://github.com/netbox-community/netbox/releases/tag/v3.5.3
32-bit in-kernel support and lib32 libs are not necessary for VirtualBox 6.x,
so just remove this requirement.
Also the port support amd64 only - remove I386 from PLIST_SUB.
PR: 266382
Tested by: Olivier Certner <olivier.freebsd@free.fr>
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D40487
An updated version of the XMLTooling library that is part of the
OpenSAML and Shibboleth Service Provider software is now available
which corrects a server-side request forgery (SSRF) vulnerability.
Security: f7e9a1cc-0931-11ee-94b4-6cc21735f730
* Since NetBox 3.5, there has been a regression with newer versions of
py-graphene-django that produces a blank screen at the GraphQL API.
Hence, upstream has pinned the version of py-graphene-django to 3.0.0
with the release of NetBox 3.5.3 because an alternative implementation
is planned for the GraphQL feature.
* Add PORTSCOUT because upstream is very likely to switch to Django 4.2
with the NetBox 3.6 release series (ETA: Mid of 2023Q3) and
Django 4.1 will reach its EoL (= End-of-Life) at the end of 2023.
* Adjust the version requirements of net-mgmt/netbox and
www/py-dj41-graphiql-debug-toolbar accordingly.
PR: 271887
Reviewed by: sunpoet (maintainer)
Approved by: sunpoet (maintainer)
From issue #660:
Globs are not expanded with the following:
% echo "/"{bin,sbin}"/*"
/bin/* /sbin/*
% v=/; echo "$v"bin"/*"
/bin/*
But globbing is unexpectedly performed if both parameter substitution
and brace expansion are present:
% v=/; echo "$v"{bin,sbin}"/*"
[output omitted for the sake of brevity]
Obtained from: https://github.com/ksh93/ksh/issues/660
From issue #660:
Globs are not expanded with the following:
% echo "/"{bin,sbin}"/*"
/bin/* /sbin/*
% v=/; echo "$v"bin"/*"
/bin/*
But globbing is unexpectedly performed if both parameter substitution
and brace expansion are present:
% v=/; echo "$v"{bin,sbin}"/*"
[output omitted for the sake of brevity]
Obtained from: https://github.com/ksh93/ksh/issues/660
MFH: 2023Q3
catimg is a little program written in C with no dependencies that prints
images in terminal. It supports JPEG, PNG and GIF formats. This program
was originally a script that did the same by using ImageMagick convert.