Releases: darsyn/ip
Releases · darsyn/ip
5.0.0
What's Changed
- Removed Doctrine functionality, and split it off into its own package:
darsyn/ip-doctrine
. List it as a Composer dependency suggestion. - Change from Psalm to PHPStan for static analysis.
- Add types to all function arguments lists and return values.
- Update the codebase to pass static analysis on
max
level (standard, deprecation, and bleeding edge rules).
- Test against PHP versions
8.2
and8.3
in CI pipeline. - Update README with notes on version compatibility.
- Explicitly state the requirement of the
ctype
PHP extension. - Add PHPUnit attributes alongside annotations to be compatible with the highest version of PHPUnit for any supported PHP version.
New Contributors
- @DarthLegiON made their first contribution in #92
- And everyone who reported an issue
Full Changelog: 4.1.0...5.0.0
4.1.0
- Added
IpInterface::equals()
method for comparing two IP addresses. - Added
getCommonCidr(IpInterface $ip): int
for determining how in range two
IP addresses are according to their common CIDR value. - Added
isBenchmarking()
,isDocumentation()
, andisPublicUse()
type
methods for both IPv4 and IPv6 addresses. - Added
isBroadcast()
,isShared()
, andisFutureReserved()
type methods for
IPv4 addresses. - Added
getMulticastScope()
,isUniqueLocal()
,isUnicast()
, and
isUnicastGlobal()
type methods for IPv6 addresses. - Added
Ipv6::fromEmbedded()
factory method to create an instance of an
IPv4-embedded address as IPv6 instead of Multi. - Made internal helper methods for dealing with binary data into utility
classes:Darsyn\IP\Util\Binary
andDarsyn\IP\Util\MbString
. - Complete documentation overhaul
- Increase test coverage.
- Started using static analysis both locally and via GitHub actions.
- Documentation and tests are excluded from the Git archive to reduce download
size when installing Composer dependency as dist. - Updated Code of Conduct to Contributor Covenant v2.1