diff options
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 285977488..8bdbc7416 100644 --- a/changelog.md +++ b/changelog.md @@ -96,6 +96,16 @@ with other backends. see #9125. Use `-d:nimLegacyJsRound` for previous behavior. - Added `socketstream` module that wraps sockets in the stream interface +- Changed the behavior of `uri.decodeQuery` when there are unencoded `=` + characters in the decoded values. Prior versions would raise an error. This is + no longer the case to comply with the HTML spec and other languages + implementations. Old behavior can be obtained with + `-d:nimLegacyParseQueryStrict`. `cgi.decodeData` which uses the same + underlying code is also updated the same way. + + + + - Added `math.signbit`. - Removed the optional `longestMatch` parameter of the `critbits._WithPrefix` iterators (it never worked reliably) |