Changelog:
Enhancements:
* Add selector widget to platform field on device & virtual
machine forms
* Introduce support for assigning IP addresses when bulk
importing services
* Annotate units of measurement on power port table columns
* Add bulk import button to contact assignments list view
* Add inventory items column to interfaces table
* Add site column to power feeds table
* Add primary IPv4 and IPv6 filters for virtual machines and VDCs
* Add device & virtual machine fields to service filter form
* Strip trailing port number from value returned by get_client_ip()
* Add greater/less than mask length filters for IP addresses
* Add tab listing child items under inventory item view
* Add optional parent column to inventory items table
* Order available columns alphabetically in table configuration form
* Add contact group column on contact assignments table
Bug Fixes:
* Avoid exception when attempting to connect both ends of a cable to
the same object
* Check that enough rear port positions have been selected to
accommodate the number of front ports being created
* Permit user login when maintenance mode is enabled
* Ensure the active configuration is restored upon clearing cache
* Correct permissions evaluation for ASN range child ASNs view
* Disable ordering of jobs by assigned object
https://github.com/netbox-community/netbox/releases/tag/v3.6.5
MFH: 2023Q4
tailspin works by reading through a log file line by line, running a
series of regexes against each line. The regexes recognize patterns
like dates, numbers, severity keywords and more.
tailspin does not make any assumptions on the format or position of
the items it wants to highlight. For this reason, it requires no
configuration or setup and will work predictably regardless of the
format the log file is in.
WWW: https://github.com/bensadeh/tailspin
Building www/qt6-webengine with libc++ 17 results in the following
compile errors:
In file included from gen/base/base_jumbo_2.cc:7:
In file included from ./../../../../../qtwebengine-everywhere-src-6.5.3/src/3rdparty/chromium/base/check.cc:17:
In file included from ../../../../../qtwebengine-everywhere-src-6.5.3/src/3rdparty/chromium/base/debug/crash_logging.h:16:
In file included from ../../../../../qtwebengine-everywhere-src-6.5.3/src/3rdparty/chromium/base/strings/string_number_conversions.h:15:
In file included from ../../../../../qtwebengine-everywhere-src-6.5.3/src/3rdparty/chromium/base/containers/span.h:18:
../../../../../qtwebengine-everywhere-src-6.5.3/src/3rdparty/chromium/base/containers/checked_iterators.h:241:8: error: no template named '__is_cpp17_contiguous_iterator'; did you mean '__libcpp_is_contiguous_iterator'?
241 | struct __is_cpp17_contiguous_iterator<::base::CheckedContiguousIterator<T>>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| __libcpp_is_contiguous_iterator
/usr/include/c++/v1/__iterator/iterator_traits.h:476:8: note: '__libcpp_is_contiguous_iterator' declared here
476 | struct __libcpp_is_contiguous_iterator : _Or<
| ^
This is because the copy of chromium in qt6-webengine is missing an
upstream fix for recent libc++ changes, in particular:
9bfbbffdba
and its dependency:
5b5551edd3
Apply these patches to work around the compile error.
PR: 273753
MFH: 2023Q4
Both ports install bin/cmark. Users of textproc/py-CommonMark are
supposely more interested in the python module rather than the command
line tool: nothing in the ports tree seems to use bin/cmark from this
port.
Rename the command to cmark-py to fix conflict
PR: 274848
Reported by: jcfyecrayz@liamekaens.com