Skip to content

Commit

Permalink
update submodules which had new releases (valhalla#4231)
Browse files Browse the repository at this point in the history
* update submodules which had new releases (unless it was a major version change)

* revert that patch

---------

Co-authored-by: Kevin Kreiser <[email protected]>
  • Loading branch information
nilsnolde and kevinkreiser authored Aug 29, 2023
1 parent fe67191 commit f14e32a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
* ADDED: `sources_to_targets` action for `/expansion` [#4263](https://github.com/valhalla/valhalla/pull/4263)
* ADDED: update graph tile to allow adding landmarks to edge info, and refactor edgeinfo.cc [#4233](https://github.com/valhalla/valhalla/pull/4233)
* ADDED: Support for `bannerInstructions` attribute in OSRM serializer via `banner_instructions` request parameter [#4093](https://github.com/valhalla/valhalla/pull/4093)
* UPDATED: submodules which had new releases, unless it was a major version change [#4231](https://github.com/valhalla/valhalla/pull/4231)

## Release Date: 2023-05-11 Valhalla 3.4.0
* **Removed**
Expand Down
2 changes: 1 addition & 1 deletion third_party/benchmark
Submodule benchmark updated 148 files
2 changes: 1 addition & 1 deletion third_party/googletest
Submodule googletest updated 237 files
2 changes: 1 addition & 1 deletion third_party/libosmium
Submodule libosmium updated 266 files
2 changes: 1 addition & 1 deletion third_party/lz4
Submodule lz4 updated 116 files
2 changes: 1 addition & 1 deletion third_party/protozero
Submodule protozero updated 76 files
+29 −1 .clang-tidy
+10 −0 .github/actions/build-windows/action.yml
+10 −0 .github/actions/build/action.yml
+12 −0 .github/actions/cmake-windows/action.yml
+16 −0 .github/actions/cmake/action.yml
+10 −0 .github/actions/ctest-windows/action.yml
+10 −0 .github/actions/ctest/action.yml
+14 −0 .github/actions/install-ubuntu/action.yml
+176 −0 .github/workflows/ci.yml
+138 −75 .travis.yml
+41 −4 CHANGELOG.md
+23 −19 CMakeLists.txt
+1 −1 FUZZING.md
+5 −5 README.md
+5 −0 UPGRADING.md
+3 −2 appveyor.yml
+2 −2 bench/data/README.md
+480 −225 doc/Doxyfile.in
+55 −0 doc/advanced.md
+266 −0 include/protozero/basic_pbf_builder.hpp
+1,054 −0 include/protozero/basic_pbf_writer.hpp
+222 −0 include/protozero/buffer_fixed.hpp
+78 −0 include/protozero/buffer_string.hpp
+113 −0 include/protozero/buffer_tmpl.hpp
+78 −0 include/protozero/buffer_vector.hpp
+16 −7 include/protozero/byteswap.hpp
+1 −1 include/protozero/data_view.hpp
+2 −2 include/protozero/iterators.hpp
+5 −238 include/protozero/pbf_builder.hpp
+2 −2 include/protozero/pbf_message.hpp
+8 −8 include/protozero/pbf_reader.hpp
+18 −1,027 include/protozero/pbf_writer.hpp
+1 −1 include/protozero/types.hpp
+48 −8 include/protozero/varint.hpp
+3 −3 include/protozero/version.hpp
+1 −1 test/README.md
+15,329 −9,041 test/catch/catch.hpp
+163 −0 test/include/buffer.hpp
+4 −3 test/include/packed_access.hpp
+1 −1 test/include/scalar_access.hpp
+3 −0 test/include/test.hpp
+3 −1 test/reader_tests.cpp
+4 −4 test/t/alignment/reader_test_cases.cpp
+7 −6 test/t/bool/writer_test_cases.cpp
+1 −1 test/t/bytes/reader_test_cases.cpp
+9 −8 test/t/bytes/writer_test_cases.cpp
+82 −20 test/t/complex/reader_test_cases.cpp
+1 −1 test/t/double/reader_test_cases.cpp
+8 −7 test/t/double/writer_test_cases.cpp
+10 −9 test/t/enum/writer_test_cases.cpp
+8 −7 test/t/fixed32/writer_test_cases.cpp
+1 −1 test/t/float/reader_test_cases.cpp
+10 −9 test/t/int32/writer_test_cases.cpp
+1 −1 test/t/message/reader_test_cases.cpp
+8 −7 test/t/message/writer_test_cases.cpp
+10 −9 test/t/nested/writer_test_cases.cpp
+1 −1 test/t/repeated/reader_test_cases.cpp
+7 −6 test/t/repeated/writer_test_cases.cpp
+1 −1 test/t/repeated_packed_bool/reader_test_cases.cpp
+1 −1 test/t/repeated_packed_double/reader_test_cases.cpp
+1 −1 test/t/repeated_packed_enum/reader_test_cases.cpp
+15 −12 test/t/repeated_packed_fixed32/writer_test_cases.cpp
+1 −1 test/t/repeated_packed_float/reader_test_cases.cpp
+1 −1 test/t/repeated_packed_sfixed32/reader_test_cases.cpp
+4 −4 test/t/rollback/reader_test_cases.cpp
+2 −2 test/t/skip/reader_test_cases.cpp
+2 −2 test/t/string/reader_test_cases.cpp
+8 −7 test/t/string/writer_test_cases.cpp
+4 −6 test/t/tag_and_type/reader_test_cases.cpp
+12 −12 test/t/wrong_type_access/reader_test_cases.cpp
+1 −0 test/unit/CMakeLists.txt
+18 −18 test/unit/test_basic.cpp
+50 −0 test/unit/test_buffer.cpp
+1 −1 test/unit/test_data_view.cpp
+15 −15 test/unit/test_varint.cpp
+1 −1 tools/pbf-decoder.cpp
2 changes: 1 addition & 1 deletion third_party/pybind11
Submodule pybind11 updated 107 files

0 comments on commit f14e32a

Please sign in to comment.