diff options
author | Christian Ulrich <christian@ulrich.earth> | 2021-09-13 18:47:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 18:47:33 +0200 |
commit | ef390e6a68db74a61137d7690dd2b10ec3dee050 (patch) | |
tree | 80ad4f8c292461dee5cda3c496c34fd0580473b6 | |
parent | 179fad934d52641c5e064efce4bdd98578cc5e9e (diff) | |
download | Nim-ef390e6a68db74a61137d7690dd2b10ec3dee050.tar.gz |
add changelog entry for #18656 (#18839) [backport]
-rw-r--r-- | changelog.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 9e449dcaa..ab037c328 100644 --- a/changelog.md +++ b/changelog.md @@ -111,6 +111,11 @@ - The allocator for Nintendo Switch, which was nonfunctional because of breaking changes in libnx, was removed, in favour of the new `-d:nimAllocPagesViaMalloc` option. +- `net.parseIpAddress` now only allows IPv4 addresses in strict form as defined + in [RFC 6943](https://www.rfc-editor.org/rfc/rfc6943#section-3.1.1). + Specifically, octal numbers in IPv4 addresses are no longer accepted (before + they were parsed as decimal numbers). + ## Standard library additions and changes - `strformat`: |