Thread overview
[Issue 5904] std.json parseString doesn't handle chars outside the BMP
Jun 25, 2017
Vladimir Panteleev
Jun 26, 2017
Vladimir Panteleev
Jun 26, 2017
Vladimir Panteleev
June 25, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

Vladimir Panteleev <dlang-bugzilla@thecybershadow.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dlang-bugzilla@thecybershad
                   |                            |ow.net

--- Comment #1 from Vladimir Panteleev <dlang-bugzilla@thecybershadow.net> ---
Test case:

///////////// test.d /////////////
import std.json;

void main()
{
    string s = `"\uD834\uDD1E"`;
    auto j = parseJSON(s);
    assert(j.str == "\U0001D11E");
}
//////////////////////////////////

--
June 26, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

Vladimir Panteleev <dlang-bugzilla@thecybershadow.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |https://issues.dlang.org/sh
                   |                            |ow_bug.cgi?id=17556

--
June 26, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

Vladimir Panteleev <dlang-bugzilla@thecybershadow.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #2 from Vladimir Panteleev <dlang-bugzilla@thecybershadow.net> ---
https://github.com/dlang/phobos/pull/5511

--
July 03, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

--- Comment #3 from github-bugzilla@puremagic.com ---
Commit pushed to stable at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/b23e7a4107cc2eb3275e022cb46f7270e586ca29 Fix Issue 5904 - std.json parseString doesn't handle chars outside the BMP

--
July 03, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
July 08, 2017
https://issues.dlang.org/show_bug.cgi?id=5904

--- Comment #4 from github-bugzilla@puremagic.com ---
Commit pushed to master at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/b23e7a4107cc2eb3275e022cb46f7270e586ca29 Fix Issue 5904 - std.json parseString doesn't handle chars outside the BMP

--
January 05, 2018
https://issues.dlang.org/show_bug.cgi?id=5904

--- Comment #5 from github-bugzilla@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/b23e7a4107cc2eb3275e022cb46f7270e586ca29 Fix Issue 5904 - std.json parseString doesn't handle chars outside the BMP

--