Skip to content

Commit

Permalink
Merge pull request #651 from h1-mod/dependabot/submodules/deps/json-5…
Browse files Browse the repository at this point in the history
…d27543

Bump deps/json from `b230614` to `5d27543`
  • Loading branch information
alicealys authored Dec 14, 2023
2 parents e657452 + a51b0f9 commit de4246a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/json
Submodule json updated 68 files
+3 −3 .cirrus.yml
+4 −0 .clang-tidy
+1 −1 .github/CONTRIBUTING.md
+16 −38 .github/workflows/check_amalgamation.yml
+4 −0 .github/workflows/cifuzz.yml
+5 −0 .github/workflows/codeql-analysis.yml
+75 −0 .github/workflows/comment_check_amalgamation.yml
+2 −0 .github/workflows/labeler.yml
+4 −1 .github/workflows/macos.yml
+3 −0 .github/workflows/publish_documentation.yml
+26 −4 .github/workflows/ubuntu.yml
+3 −0 .github/workflows/windows.yml
+20 −18 README.md
+7 −5 cmake/ci.cmake
+1 −1 cmake/test.cmake
+1 −1 docs/examples/from_json__default_constructible.cpp
+1 −1 docs/examples/from_json__non_default_constructible.cpp
+5 −5 docs/examples/get__PointerType.cpp
+8 −8 docs/examples/get__ValueType_const.cpp
+2 −2 docs/examples/nlohmann_define_type_intrusive_explicit.cpp
+2 −2 docs/examples/nlohmann_define_type_intrusive_macro.cpp
+2 −2 docs/examples/nlohmann_define_type_intrusive_with_default_explicit.cpp
+2 −2 docs/examples/nlohmann_define_type_intrusive_with_default_macro.cpp
+2 −2 docs/examples/nlohmann_define_type_non_intrusive_explicit.cpp
+2 −2 docs/examples/nlohmann_define_type_non_intrusive_macro.cpp
+2 −2 docs/examples/nlohmann_define_type_non_intrusive_with_default_explicit.cpp
+2 −2 docs/examples/nlohmann_define_type_non_intrusive_with_default_macro.cpp
+4 −4 docs/examples/nlohmann_json_serialize_enum.cpp
+2 −2 docs/examples/nlohmann_json_serialize_enum_2.cpp
+1 −1 docs/mkdocs/docs/api/adl_serializer/from_json.md
+5 −5 docs/mkdocs/docs/api/macros/json_disable_enum_serialization.md
+1 −1 docs/mkdocs/docs/api/macros/json_use_implicit_conversions.md
+1 −1 docs/mkdocs/docs/api/macros/nlohmann_json_serialize_enum.md
+9 −9 docs/mkdocs/docs/features/arbitrary_types.md
+3 −3 docs/mkdocs/docs/features/enum_conversion.md
+4 −4 docs/mkdocs/docs/features/types/number_handling.md
+1 −1 docs/mkdocs/docs/integration/migration_guide.md
+1 −1 docs/mkdocs/requirements.txt
+1 −1 include/nlohmann/detail/conversions/to_chars.hpp
+57 −57 include/nlohmann/detail/conversions/to_json.hpp
+3 −3 include/nlohmann/detail/exceptions.hpp
+7 −7 include/nlohmann/detail/input/json_sax.hpp
+20 −20 include/nlohmann/detail/iterators/iter_impl.hpp
+2 −2 include/nlohmann/detail/iterators/iteration_proxy.hpp
+10 −10 include/nlohmann/detail/json_pointer.hpp
+160 −160 include/nlohmann/detail/output/binary_writer.hpp
+36 −36 include/nlohmann/detail/output/serializer.hpp
+273 −239 include/nlohmann/json.hpp
+5 −5 include/nlohmann/ordered_map.hpp
+574 −540 single_include/nlohmann/json.hpp
+72 −0 tests/src/unit-algorithms.cpp
+10 −1 tests/src/unit-allocator.cpp
+44 −44 tests/src/unit-class_const_iterator.cpp
+44 −44 tests/src/unit-class_iterator.cpp
+7 −7 tests/src/unit-constructor1.cpp
+3 −3 tests/src/unit-convenience.cpp
+10 −10 tests/src/unit-conversions.cpp
+1 −1 tests/src/unit-iterators2.cpp
+86 −0 tests/src/unit-no-mem-leak-on-adl-serialize.cpp
+2 −2 tests/src/unit-readme.cpp
+9 −0 tests/src/unit-regression2.cpp
+1 −1 tests/src/unit-unicode1.cpp
+1 −1 tests/src/unit-unicode2.cpp
+1 −1 tests/src/unit-unicode3.cpp
+1 −1 tests/src/unit-unicode4.cpp
+1 −1 tests/src/unit-unicode5.cpp
+1,799 −1,273 tests/thirdparty/doctest/doctest.h
+1 −1 tests/thirdparty/fifo_map/fifo_map.hpp

0 comments on commit de4246a

Please sign in to comment.