Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/nanopb/repo
Submodule repo updated 97 files
+1 −0 .bazelignore
+3 −0 .gitattributes
+3 −3 .github/workflows/bazel.yml
+25 −11 .github/workflows/binary_packages.yml
+1 −1 .github/workflows/cifuzz.yml
+71 −0 .github/workflows/cmake.yml
+6 −0 .github/workflows/codeql-buildscript.sh
+126 −0 .github/workflows/codeql.yml
+1 −1 .github/workflows/compiler_tests.yml
+34 −0 .github/workflows/fail_on_error.py
+1 −1 .github/workflows/ios_swift_tests.yml
+1 −1 .github/workflows/platformio_tests.yml
+2 −2 .github/workflows/pypi_publish.yml
+1 −1 .github/workflows/python2_tests.yml
+3 −3 .github/workflows/simulator_tests.yml
+14 −3 .github/workflows/trigger_on_code_change.yml
+29 −2 AUTHORS.txt
+31 −13 BUILD.bazel
+38 −0 CHANGELOG.txt
+78 −42 CMakeLists.txt
+28 −0 MODULE.bazel
+166 −0 MODULE.bazel.lock
+2 −1 Package.swift
+1 −0 README.md
+0 −22 WORKSPACE
+12 −0 build-tests/cmake_with_components/CMakeLists.txt
+70 −0 build-tests/cmake_with_components/simple.cpp
+9 −0 build-tests/cmake_with_components/simple.proto
+15 −0 build-tests/legacy_cmake_relpath/CMakeLists.txt
+11 −0 build-tests/legacy_cmake_relpath/proto/simple.proto
+5 −0 build-tests/legacy_cmake_relpath/proto/sub/unlucky.proto
+73 −0 build-tests/legacy_cmake_relpath/simple.c
+13 −0 build-tests/legacy_cmake_simple/CMakeLists.txt
+71 −0 build-tests/legacy_cmake_simple/simple.c
+9 −0 build-tests/legacy_cmake_simple/simple.proto
+1 −1 conanfile.py
+8 −22 docs/bazel_build.md
+1 −1 docs/concepts.md
+103 −4 docs/migration.md
+58 −0 docs/reference.md
+3 −5 examples/cmake_relpath/CMakeLists.txt
+3 −4 examples/cmake_simple/CMakeLists.txt
+101 −27 extra/FindNanopb.cmake
+4 −4 extra/bazel/nanopb_cc_proto_library.bzl
+24 −11 extra/bazel/nanopb_deps.bzl
+2 −2 extra/bazel/python_deps.bzl
+1 −1 extra/poetry/pyproject.toml
+2 −1 extra/requirements.txt
+118 −98 extra/requirements_lock.txt
+24 −0 extra/script_wrappers/nanopb_generator.py.in
+0 −0 generator/__init__.py
+7 −0 generator/nanopb_generator
+5 −0 generator/nanopb_generator.bat
+91 −16 generator/nanopb_generator.py
+1 −1 generator/platformio_generator.py
+27 −29 generator/proto/__init__.py
+17 −4 generator/proto/_utils.py
+539 −118 generator/proto/google/protobuf/descriptor.proto
+29 −5 generator/proto/nanopb.proto
+1 −1 library.json
+14 −9 pb.h
+6 −5 pb_decode.c
+12 −1 pb_decode.h
+6 −5 pb_encode.c
+13 −3 pb_encode.h
+2 −0 requirements.txt
+15 −0 spm_resources/PrivacyInfo.xcprivacy
+1 −1 tests/SConstruct
+1 −1 tests/cxx_descriptor/SConscript
+22 −0 tests/cxx_descriptor/message.proto
+11 −0 tests/cxx_descriptor/message_descriptor.cc
+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
+1 −0 tests/namingstyle/naming_style.options
+2 −0 tests/namingstyle/test_naming_style_c.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
+2 −2 tests/regression/issue_485/uint8.expected
+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
Loading