🚀 Features
Section titled “🚀 Features”IP address support in subnet
Section titled “IP address support in subnet”The subnet function now accepts typed IP addresses, plain IP strings, and
existing subnet values with an optional prefix length:
from {source_ip: 10.10.1.124}net = subnet(source_ip, 24)This returns 10.10.1.0/24 without converting the IP address to a string first.
When you omit the prefix, IPv4 addresses become /32 host subnets and IPv6
addresses become /128 host subnets.
🐞 Bug Fixes
Section titled “🐞 Bug Fixes”Unsigned integer indexing in TQL
Section titled “Unsigned integer indexing in TQL”Both list and record indexing in TQL now work with signed and unsigned integer indices.
This also applies to record field-position indexing and to the get function for records and lists.