Skip to content

Commit

Permalink
Use json schema validator 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
christofmuc committed Nov 10, 2024
1 parent 0201ee3 commit 0519f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/json-schema-validator
Submodule json-schema-validator updated 43 files
+5 −8 .clang-format
+0 −83 .github/workflows/github-actions.yml
+31 −0 .github/workflows/release.yaml
+94 −0 .github/workflows/test.yaml
+5 −1 .gitignore
+32 −0 .pre-commit-config.yaml
+0 −78 .travis.yml
+208 −148 CMakeLists.txt
+7 −0 CMakePresets.json
+14 −10 README.md
+281 −0 cmake/CMakePresets-CI.json
+50 −0 cmake/CMakePresets-defaults.json
+0 −539 cmake/HunterGate.cmake
+0 −0 cmake/nlohmann_json_schema_validatorConfig.cmake.in
+14 −0 example/CMakeLists.txt
+0 −0 example/format.cpp
+0 −0 example/json-schema-validate.cpp
+0 −0 example/readme.cpp
+74 −0 src/CMakeLists.txt
+4 −1 src/json-patch.hpp
+19 −1 src/json-validator.cpp
+694 −732 src/smtp-address-validator.cpp
+1 −1 src/smtp-address-validator.hpp
+32 −22 src/string-format-check.cpp
+12 −0 test/CMakeLists.txt
+1 −1 test/JSON-Schema-Test-Suite/tests/draft7/not.json
+1 −1 test/JSON-Schema-Test-Suite/tests/draft7/optional/format/uuid.json
+2 −2 test/JSON-Schema-Test-Suite/tests/draft7/ref.json
+1 −1 test/binary-validation.cpp
+0 −15 test/cmake-install/CMakeLists.txt
+0 −34 test/cmake-install/project/CMakeLists.txt
+0 −55 test/cmake-install/test.sh.in
+1 −1 test/errors.cpp
+1 −1 test/id-ref.cpp
+69 −0 test/issue-229-oneof-default-values.cpp
+48 −0 test/issue-243-root-default-values.cpp
+3 −3 test/issue-25-default-values.cpp
+0 −2 test/issue-27/CMakeLists.txt
+32 −0 test/issue-293.cpp
+1 −1 test/issue-70-root-schema-constructor.cpp
+1 −1 test/issue-9/bar.json
+1 −1 test/issue-9/foo/baz/qux/qux.json
+9 −9 test/json-patch.cpp

0 comments on commit 0519f37

Please sign in to comment.