Skip to content

Commit

Permalink
Bump third_party/nanopb/repo from 671672b to 7307ce3
Browse files Browse the repository at this point in the history
Bumps [third_party/nanopb/repo](https://github.com/nanopb/nanopb) from `671672b` to `7307ce3`.
- [Commits](nanopb/nanopb@671672b...7307ce3)

---
updated-dependencies:
- dependency-name: third_party/nanopb/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 9, 2024
1 parent 0ea43c9 commit 115a33a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/nanopb/repo
Submodule repo updated 98 files
+1 −0 .bazelignore
+3 −0 .gitattributes
+2 −2 .github/workflows/bazel.yml
+18 −11 .github/workflows/binary_packages.yml
+1 −1 .github/workflows/cifuzz.yml
+2 −2 .github/workflows/cmake.yml
+2 −2 .github/workflows/codeql.yml
+1 −1 .github/workflows/compiler_tests.yml
+1 −1 .github/workflows/ios_swift_tests.yml
+35 −0 .github/workflows/olddistro_tests.yml
+8 −3 .github/workflows/platformio_tests.yml
+2 −2 .github/workflows/pypi_publish.yml
+0 −36 .github/workflows/python2_tests.yml
+3 −3 .github/workflows/simulator_tests.yml
+14 −3 .github/workflows/trigger_on_code_change.yml
+3 −3 .github/workflows/trigger_on_schedule.yml
+1 −0 .gitignore
+13 −0 AUTHORS.txt
+13 −13 BUILD.bazel
+25 −0 CHANGELOG.txt
+4 −3 CMakeLists.txt
+28 −0 MODULE.bazel
+166 −0 MODULE.bazel.lock
+1 −1 README.md
+0 −22 WORKSPACE
+1 −1 conanfile.py
+8 −22 docs/bazel_build.md
+1 −1 docs/concepts.md
+84 −4 docs/migration.md
+65 −0 docs/reference.md
+29 −9 extra/FindNanopb.cmake
+3 −3 extra/bazel/nanopb_cc_proto_library.bzl
+24 −11 extra/bazel/nanopb_deps.bzl
+2 −2 extra/bazel/python_deps.bzl
+2 −2 extra/poetry/pyproject.toml
+1 −1 extra/requirements.txt
+129 −129 extra/requirements_lock.txt
+159 −42 generator/nanopb_generator.py
+0 −13 generator/nanopb_generator.py2
+8 −1 generator/platformio_generator.py
+24 −48 generator/proto/__init__.py
+17 −4 generator/proto/_utils.py
+539 −118 generator/proto/google/protobuf/descriptor.proto
+29 −5 generator/proto/nanopb.proto
+0 −16 generator/protoc-gen-nanopb-py2
+1 −1 library.json
+17 −1 pb.h
+66 −46 pb_decode.c
+12 −1 pb_decode.h
+20 −14 pb_encode.c
+13 −3 pb_encode.h
+13 −5 tests/enum_sizes/SConscript
+41 −0 tests/enum_sizes/enum_intsize.proto
+3 −2 tests/enum_sizes/enum_intsize_unittests.cc
+0 −3 tests/enum_sizes/enumsizes_intsize_unittests.h
+0 −35 tests/enum_sizes/packed_enum.proto
+1 −4 tests/enum_sizes/packed_enum_unittests.c
+7 −0 tests/enum_validate/SConscript
+18 −0 tests/enum_validate/enum.proto
+19 −0 tests/enum_validate/enum_validate.c
+21 −10 tests/fuzztest/fuzztest.c
+1 −0 tests/namingstyle/naming_style.options
+1 −0 tests/namingstyle/naming_style.proto
+10 −2 tests/namingstyle/test_naming_style_c.c
+30 −0 tests/namingstyle_custom/SConscript
+16 −0 tests/namingstyle_custom/custom_naming_style.options
+69 −0 tests/namingstyle_custom/custom_naming_style.proto
+53 −0 tests/namingstyle_custom/custom_naming_style.py
+1 −0 tests/namingstyle_custom/custom_naming_style_importer.options
+16 −0 tests/namingstyle_custom/custom_naming_style_importer.proto
+17 −0 tests/namingstyle_custom/custom_naming_style_mangle.options
+70 −0 tests/namingstyle_custom/custom_naming_style_mangle.proto
+1 −0 tests/namingstyle_custom/custom_naming_style_other.options
+12 −0 tests/namingstyle_custom/custom_naming_style_other.proto
+16 −0 tests/namingstyle_custom/custom_naming_style_package.options
+70 −0 tests/namingstyle_custom/custom_naming_style_package.proto
+83 −0 tests/namingstyle_custom/test_custom_naming_style_c.c
+21 −0 tests/namingstyle_custom/test_custom_naming_style_importer_c.c
+88 −0 tests/namingstyle_custom/test_custom_naming_style_mangle_c.c
+83 −0 tests/namingstyle_custom/test_custom_naming_style_package_c.c
+5 −0 tests/oneof/decode_oneof.c
+17 −0 tests/options/options.proto
+3 −0 tests/options/options_h.expected
+2 −0 tests/options/proto3_options.expected
+1 −0 tests/options/proto3_options.proto
+13 −0 tests/regression/issue_1017/SConscript
+54 −0 tests/regression/issue_1017/test.c
+6 −0 tests/regression/issue_1017/test.proto
+2 −2 tests/regression/issue_838/enum_to_string.cxx
+7 −0 tests/regression/issue_869/SConscript
+623 −0 tests/regression/issue_869/bigfile.proto
+8 −0 tests/regression/issue_956/SConscript
+4 −0 tests/regression/issue_956/skipmap.expected
+28 −0 tests/regression/issue_956/skipmap.proto
+2 −2 tools/make_linux_package.sh
+2 −2 tools/make_mac_package.sh
+2 −1 tools/set_version.sh
+4 −0 zephyr/module.yml

0 comments on commit 115a33a

Please sign in to comment.