lua_cjson: add json-esc-slash option to compat
For unknown reason in upstream lua_cjson '/' was escaped while according to the standard [rfc4627] it is unnecessary and is questionably compatible with other implementations. It was decided that the change will be introduced using tarantool.compat (gh-7000). The patch adds json_escape_forward_slash option to compat and its logic in lua_cjson and msgpuck. Requires #7060 Requires #8007 Fixes #6200 See also #7000 @TarantoolBot document Title: new compat option json_escape_forward_slash In the new behavior forward slash is not escaped in `json.encode()` and msgpack: ``` tarantool> compat.json_escape_forward_slash = 'new' --- ... tarantool> json.encode('/') --- - '"/"' ... tarantool> compat.json_escape_forward_slash = 'old' --- ... tarantool> json.encode('/') --- - '"\/"' ... ```
Showing
- changelogs/unreleased/gh-6200-lua_cjson-encode-escapes-slash.md 4 additions, 0 deletions...logs/unreleased/gh-6200-lua_cjson-encode-escapes-slash.md
- src/lua/compat.c 35 additions, 0 deletionssrc/lua/compat.c
- src/lua/compat.lua 23 additions, 2 deletionssrc/lua/compat.lua
- src/lua/serializer.c 14 additions, 0 deletionssrc/lua/serializer.c
- src/lua/serializer.h 10 additions, 0 deletionssrc/lua/serializer.h
- test/app-luatest/gh_6200_lua_cjson_escapes_slash_test.lua 119 additions, 0 deletionstest/app-luatest/gh_6200_lua_cjson_escapes_slash_test.lua
- third_party/lua-cjson/lua_cjson.c 45 additions, 1 deletionthird_party/lua-cjson/lua_cjson.c
Please register or sign in to comment