Skip to content

Commit

Permalink
Bump the generic group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the generic group with 2 updates: [external/Catch2](https://github.com/catchorg/Catch2) and [external/pe-parse](https://github.com/trailofbits/pe-parse).


Updates `external/Catch2` from `8898cc6` to `0321d2f`
- [Release notes](https://github.com/catchorg/Catch2/releases)
- [Commits](catchorg/Catch2@8898cc6...0321d2f)

Updates `external/pe-parse` from `f2f0ee9` to `31ac596`
- [Release notes](https://github.com/trailofbits/pe-parse/releases)
- [Commits](trailofbits/pe-parse@f2f0ee9...31ac596)

---
updated-dependencies:
- dependency-name: external/Catch2
  dependency-type: direct:production
  dependency-group: generic
- dependency-name: external/pe-parse
  dependency-type: direct:production
  dependency-group: generic
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 14, 2024
1 parent 8598353 commit fee21e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/Catch2
Submodule Catch2 updated 94 files
+2 −1 .clang-tidy
+1 −1 .github/workflows/mac-builds-m1.yml
+6 −3 .github/workflows/mac-builds.yml
+2 −0 BUILD.bazel
+1 −0 CMake/CatchConfigOptions.cmake
+7 −2 CMakeLists.txt
+1 −1 docs/assertions.md
+9 −0 docs/configuration.md
+1 −2 docs/contributing.md
+42 −0 docs/release-notes.md
+1 −1 docs/test-cases-and-sections.md
+1 −1 docs/test-fixtures.md
+1 −1 docs/tostring.md
+9 −3 extras/Catch.cmake
+9 −4 extras/CatchAddTests.cmake
+386 −213 extras/catch_amalgamated.cpp
+247 −198 extras/catch_amalgamated.hpp
+1 −1 meson.build
+2 −2 src/CMakeLists.txt
+1 −1 src/catch2/benchmark/catch_outlier_classification.hpp
+4 −4 src/catch2/benchmark/detail/catch_stats.cpp
+1 −1 src/catch2/catch_all.hpp
+1 −1 src/catch2/catch_assertion_result.cpp
+0 −0 src/catch2/catch_case_sensitive.hpp
+1 −1 src/catch2/catch_message.hpp
+20 −16 src/catch2/catch_session.cpp
+6 −10 src/catch2/catch_test_case_info.cpp
+7 −5 src/catch2/catch_test_case_info.hpp
+2 −2 src/catch2/catch_timer.cpp
+4 −1 src/catch2/catch_tostring.cpp
+1 −1 src/catch2/catch_translate_exception.hpp
+9 −0 src/catch2/catch_user_config.hpp.in
+1 −1 src/catch2/catch_version.cpp
+2 −2 src/catch2/catch_version_macros.hpp
+1 −1 src/catch2/generators/catch_generators_range.hpp
+1 −2 src/catch2/interfaces/catch_interfaces_capture.hpp
+2 −2 src/catch2/internal/catch_assertion_handler.cpp
+2 −2 src/catch2/internal/catch_assertion_handler.hpp
+1 −1 src/catch2/internal/catch_clara.cpp
+39 −31 src/catch2/internal/catch_compiler_capabilities.hpp
+1 −1 src/catch2/internal/catch_console_colour.cpp
+0 −6 src/catch2/internal/catch_context.cpp
+9 −4 src/catch2/internal/catch_context.hpp
+5 −6 src/catch2/internal/catch_decomposer.hpp
+15 −12 src/catch2/internal/catch_is_permutation.hpp
+3 −3 src/catch2/internal/catch_lazy_expr.hpp
+291 −98 src/catch2/internal/catch_output_redirect.cpp
+48 −89 src/catch2/internal/catch_output_redirect.hpp
+3 −1 src/catch2/internal/catch_random_integer_helpers.hpp
+1 −1 src/catch2/internal/catch_random_number_generator.cpp
+0 −26 src/catch2/internal/catch_result_type.cpp
+16 −7 src/catch2/internal/catch_result_type.hpp
+47 −29 src/catch2/internal/catch_run_context.cpp
+4 −2 src/catch2/internal/catch_run_context.hpp
+5 −7 src/catch2/internal/catch_test_macro_impl.hpp
+1 −1 src/catch2/internal/catch_test_registry.cpp
+4 −2 src/catch2/internal/catch_test_registry.hpp
+8 −8 src/catch2/internal/catch_uniform_integer_distribution.hpp
+1 −1 src/catch2/internal/catch_wildcard_pattern.hpp
+2 −22 src/catch2/internal/catch_xmlwriter.cpp
+15 −4 src/catch2/internal/catch_xmlwriter.hpp
+43 −26 src/catch2/matchers/catch_matchers_range_equals.hpp
+2 −2 src/catch2/matchers/catch_matchers_string.hpp
+8 −4 src/catch2/matchers/internal/catch_matchers_impl.hpp
+2 −2 src/catch2/meson.build
+5 −2 src/catch2/reporters/catch_reporter_console.cpp
+2 −2 src/catch2/reporters/catch_reporter_junit.cpp
+2 −2 src/catch2/reporters/catch_reporter_sonarqube.cpp
+1 −1 src/catch2/reporters/catch_reporter_sonarqube.hpp
+0 −1 tests/ExtraTests/CMakeLists.txt
+3 −2 tests/SelfTest/Baselines/automake.sw.approved.txt
+3 −2 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+12 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+12 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+2 −2 tests/SelfTest/Baselines/console.std.approved.txt
+74 −4 tests/SelfTest/Baselines/console.sw.approved.txt
+74 −4 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+168 −3 tests/SelfTest/Baselines/junit.sw.approved.txt
+168 −3 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+159 −2 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+159 −2 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+28 −8 tests/SelfTest/Baselines/tap.sw.approved.txt
+28 −8 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+6 −4 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+6 −4 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+93 −4 tests/SelfTest/Baselines/xml.sw.approved.txt
+93 −4 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+15 −0 tests/SelfTest/IntrospectiveTests/Clara.tests.cpp
+56 −0 tests/SelfTest/UsageTests/Compilation.tests.cpp
+2 −2 tests/SelfTest/UsageTests/EnumToString.tests.cpp
+19 −0 tests/SelfTest/UsageTests/MatchersRanges.tests.cpp
+1 −1 tests/TestScripts/testBazelReporter.py
+1 −2 tools/scripts/buildAndTest.cmd
+1 −2 tools/scripts/buildAndTest.sh
2 changes: 1 addition & 1 deletion external/pe-parse
Submodule pe-parse updated 2 files
+6 −2 README.md
+2 −2 pepy/README.md

0 comments on commit fee21e1

Please sign in to comment.