diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-07-21 13:46:29 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-07-21 13:48:46 (GMT) |
commit | 3c2ebb7f209035f85a35dbb05e76dd7e80238ecb (patch) | |
tree | 74c1897b04a94ddd8625dd21ecc7fe4963e84477 /dist | |
parent | ff1280178ac8739e5943fd081be5317b70717fa8 (diff) | |
download | Qt-3c2ebb7f209035f85a35dbb05e76dd7e80238ecb.zip Qt-3c2ebb7f209035f85a35dbb05e76dd7e80238ecb.tar.gz Qt-3c2ebb7f209035f85a35dbb05e76dd7e80238ecb.tar.bz2 |
Add the information about QUrl being more strict to the changelog
Diffstat (limited to 'dist')
-rw-r--r-- | dist/changes-4.6.0 | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/dist/changes-4.6.0 b/dist/changes-4.6.0 index bef2923..6c7e450 100644 --- a/dist/changes-4.6.0 +++ b/dist/changes-4.6.0 @@ -72,5 +72,18 @@ information about a particular change. QGraphicsWidget and QGraphicsProxyWidget). - QDesktopWidget on X11 no longer emits the resized(int) signal when screens - are added or removed. This was not done on other platforms. Use the + are added or removed. This was not done on other platforms. Use the screenCountChanged signal instead + +- QUrl's parser is more strict when for hostnames in URLs. QUrl now + enforces STD 3 rules: + + * each individual hostname section (between dots) must be at most + 63 ASCII characters in length; + + * only letters, digits, and the hyphen character are allowed in the + ASCII range; letters outside the ASCII range follow the normal + IDN rules + + That means QUrl no longer accepts some URLs that were invalid + before, but weren't interpreted as such. |