Skip to content

Commit 41020e6

Browse files
var-constpaulb777
andauthored
Bump the nanopb version to 0.3.9.8 (#7789)
Co-authored-by: Paul Beusterien <[email protected]>
1 parent aa05e91 commit 41020e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+78
-74
lines changed

.github/workflows/analytics.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'FirebaseAnalytics.podspec.json'
77
- 'FirebaseAnalyticsSwift**'
88
- 'GoogleAppMeasurement.podspec.json'
9+
- '.github/workflows/analytics.yml'
910
- 'Gemfile'
1011
schedule:
1112
# Run every day at 1am (PST) - cron uses UTC times
@@ -22,7 +23,7 @@ jobs:
2223
- name: Setup Bundler
2324
run: scripts/setup_bundler.sh
2425
- name: GoogleAppMeasurement
25-
run: scripts/third_party/travis/retry.sh pod spec lint GoogleAppMeasurement.podspec.json
26+
run: scripts/third_party/travis/retry.sh pod spec lint GoogleAppMeasurement.podspec.json --sources=https://github.com/firebase/SpecsDev.git,https://github.com/firebase/SpecsStaging.git,https://cdn.cocoapods.org/
2627
- name: FirebaseAnalyticsSwift
2728
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAnalyticsSwift.podspec --platforms=ios
2829

Crashlytics/ProtoSupport/generate_crashlytics_protos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
readonly DIR="$( git rev-parse --show-toplevel )"
2424

2525
# Current release of nanopb being used to build the CCT protos
26-
readonly NANOPB_VERSION="0.3.9.7"
26+
readonly NANOPB_VERSION="0.3.9.8"
2727
readonly NANOPB_TEMPDIR="${DIR}/Crashlytics/nanopb_temp"
2828

2929
readonly LIBRARY_DIR="${DIR}/Crashlytics/Crashlytics/"

Firebase/CoreDiagnostics/ProtoSupport/generate_nanopb_protos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
readonly REPO_DIR="$( git rev-parse --show-toplevel )"
2424

2525
# Current release of nanopb being used to build the CCT protos
26-
readonly NANOPB_VERSION="0.3.9.7"
26+
readonly NANOPB_VERSION="0.3.9.8"
2727
readonly NANOPB_TEMPDIR="$(mktemp -d)"
2828

2929
readonly LIBRARY_DIR="${REPO_DIR}/Firebase/CoreDiagnostics/FIRCDLibrary"

FirebaseAppDistribution.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ iOS SDK for App Distribution for Firebase.
3232
s.dependency 'GoogleUtilities/AppDelegateSwizzler', '~> 7.0'
3333
s.dependency 'GoogleUtilities/UserDefaults', '~> 7.0'
3434
s.dependency 'FirebaseInstallations', '~> 7.0'
35-
s.dependency 'GoogleDataTransport', '~> 8.0'
35+
s.dependency 'GoogleDataTransport', '~> 8.4'
3636

3737
s.pod_target_xcconfig = {
3838
'GCC_C_LANGUAGE_STANDARD' => 'c99',

FirebaseCore/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
- [changed] Update Nanopb to version 0.3.9.8. It fixes a possible security issue and some other
2+
issues. (#7787)
3+
14
# FirebaseCore 7.7.0
25
- [changed] Deprecated FirebaseMLModelInterpreter and FirebaseMLVision.
36
- [added] Introduced FirebaseMLModelDownloader.

FirebaseCoreDiagnostics.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ non-Cocoapod integration. This library also respects the Firebase global data co
5656

5757
s.framework = 'Foundation'
5858

59-
s.dependency 'GoogleDataTransport', '~> 8.0'
59+
s.dependency 'GoogleDataTransport', '~> 8.4'
6060
s.dependency 'GoogleUtilities/Environment', '~> 7.0'
6161
s.dependency 'GoogleUtilities/Logger', '~> 7.0'
62-
s.dependency 'nanopb', '~> 2.30907.0'
62+
s.dependency 'nanopb', '~> 2.30908.0'
6363

6464
s.test_spec 'unit' do |unit_tests|
6565
unit_tests.scheme = { :code_coverage => true }

FirebaseCrashlytics.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ Pod::Spec.new do |s|
5454
s.dependency 'FirebaseCore', '~> 7.0'
5555
s.dependency 'FirebaseInstallations', '~> 7.0'
5656
s.dependency 'PromisesObjC', '~> 1.2'
57-
s.dependency 'GoogleDataTransport', '~> 8.0'
58-
s.dependency 'nanopb', '~> 2.30907.0'
57+
s.dependency 'GoogleDataTransport', '~> 8.4'
58+
s.dependency 'nanopb', '~> 2.30908.0'
5959

6060
s.libraries = 'c++', 'z'
6161
s.ios.frameworks = 'Security', 'SystemConfiguration'

FirebaseFirestore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
9898

9999
s.dependency 'gRPC-C++', '~> 1.28.0'
100100
s.dependency 'leveldb-library', '~> 1.22'
101-
s.dependency 'nanopb', '~> 2.30907.0'
101+
s.dependency 'nanopb', '~> 2.30908.0'
102102

103103
s.ios.frameworks = 'SystemConfiguration', 'UIKit'
104104
s.osx.frameworks = 'SystemConfiguration'

FirebaseInAppMessaging.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ See more product details at https://firebase.google.com/products/in-app-messagin
8686
s.dependency 'FirebaseInstallations', '~> 7.0'
8787
s.dependency 'FirebaseABTesting', '~> 7.0'
8888
s.dependency 'GoogleUtilities/Environment', '~> 7.0'
89-
s.dependency 'nanopb', '~> 2.30907.0'
89+
s.dependency 'nanopb', '~> 2.30908.0'
9090

9191
s.test_spec 'unit' do |unit_tests|
9292
unit_tests.scheme = { :code_coverage => true }

FirebaseInAppMessaging/ProtoSupport/generate_nanopb_protos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
readonly REPO_DIR="$( git rev-parse --show-toplevel )"
2424

2525
# Current release of nanopb being used to build the CCT protos
26-
readonly NANOPB_VERSION="0.3.9.7"
26+
readonly NANOPB_VERSION="0.3.9.8"
2727
readonly NANOPB_TEMPDIR="$(mktemp -d)"
2828

2929
readonly PROTO_DIR="${REPO_DIR}/FirebaseInAppMessaging/ProtoSupport/Protos"

FirebaseMLModelDownloader.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Pod::Spec.new do |s|
3838
s.framework = 'Foundation'
3939
s.dependency 'FirebaseCore', '~> 7.6'
4040
s.dependency 'FirebaseInstallations', '~> 7.6'
41-
s.dependency 'GoogleDataTransport', '~> 8.3'
41+
s.dependency 'GoogleDataTransport', '~> 8.4'
4242
# TODO: Revisit this dependency
4343
s.dependency 'GoogleUtilities/Logger', '~> 7.2'
4444
s.dependency 'SwiftProtobuf', '~> 1.0'

FirebasePerformance.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Firebase Performance library to measure performance of Mobile and Web Apps.
6060
s.dependency 'FirebaseCore', '~> 7.0'
6161
s.dependency 'FirebaseInstallations', '~> 7.0'
6262
s.dependency 'FirebaseRemoteConfig', '~> 7.0'
63-
s.dependency 'GoogleDataTransport', '~> 8.2'
63+
s.dependency 'GoogleDataTransport', '~> 8.4'
6464
s.dependency 'GoogleUtilities/Environment', '~> 7.0'
6565
s.dependency 'GoogleUtilities/ISASwizzler', '~> 7.0'
6666
s.dependency 'GoogleUtilities/MethodSwizzler', '~> 7.0'

Firestore/Protos/nanopb/firestore/bundle.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "bundle.nanopb.h"
2121

@@ -82,7 +82,7 @@ const pb_field_t firestore_BundleElement_fields[5] = {
8282
#if !defined(PB_FIELD_32BIT)
8383
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
8484
* compile-time option. You can do that in pb.h or on compiler command line.
85-
*
85+
*
8686
* The reason you need to do this is that some of your messages contain tag
8787
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
8888
* field descriptors.
@@ -93,7 +93,7 @@ PB_STATIC_ASSERT((pb_membersize(firestore_BundledQuery, structured_query) < 6553
9393
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
9494
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
9595
* compile-time option. You can do that in pb.h or on compiler command line.
96-
*
96+
*
9797
* The reason you need to do this is that some of your messages contain tag
9898
* numbers or field sizes that are larger than what can fit in the default
9999
* 8 bit descriptors.

Firestore/Protos/nanopb/firestore/bundle.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_FIRESTORE_BUNDLE_NANOPB_H_INCLUDED
2121
#define PB_FIRESTORE_BUNDLE_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "maybe_document.nanopb.h"
2121

@@ -62,7 +62,7 @@ const pb_field_t firestore_client_MaybeDocument_fields[5] = {
6262
#if !defined(PB_FIELD_32BIT)
6363
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
6464
* compile-time option. You can do that in pb.h or on compiler command line.
65-
*
65+
*
6666
* The reason you need to do this is that some of your messages contain tag
6767
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
6868
* field descriptors.
@@ -73,7 +73,7 @@ PB_STATIC_ASSERT((pb_membersize(firestore_client_NoDocument, read_time) < 65536
7373
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
7474
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
7575
* compile-time option. You can do that in pb.h or on compiler command line.
76-
*
76+
*
7777
* The reason you need to do this is that some of your messages contain tag
7878
* numbers or field sizes that are larger than what can fit in the default
7979
* 8 bit descriptors.

Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_FIRESTORE_CLIENT_MAYBE_DOCUMENT_NANOPB_H_INCLUDED
2121
#define PB_FIRESTORE_CLIENT_MAYBE_DOCUMENT_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "mutation.nanopb.h"
2121

@@ -56,7 +56,7 @@ const pb_field_t firestore_client_WriteBatch_fields[5] = {
5656
#if !defined(PB_FIELD_32BIT)
5757
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
5858
* compile-time option. You can do that in pb.h or on compiler command line.
59-
*
59+
*
6060
* The reason you need to do this is that some of your messages contain tag
6161
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
6262
* field descriptors.
@@ -67,7 +67,7 @@ PB_STATIC_ASSERT((pb_membersize(firestore_client_WriteBatch, local_write_time) <
6767
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
6868
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
6969
* compile-time option. You can do that in pb.h or on compiler command line.
70-
*
70+
*
7171
* The reason you need to do this is that some of your messages contain tag
7272
* numbers or field sizes that are larger than what can fit in the default
7373
* 8 bit descriptors.

Firestore/Protos/nanopb/firestore/local/mutation.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_FIRESTORE_CLIENT_MUTATION_NANOPB_H_INCLUDED
2121
#define PB_FIRESTORE_CLIENT_MUTATION_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/firestore/local/target.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "target.nanopb.h"
2121

@@ -61,7 +61,7 @@ const pb_field_t firestore_client_TargetGlobal_fields[5] = {
6161
#if !defined(PB_FIELD_32BIT)
6262
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
6363
* compile-time option. You can do that in pb.h or on compiler command line.
64-
*
64+
*
6565
* The reason you need to do this is that some of your messages contain tag
6666
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
6767
* field descriptors.
@@ -72,7 +72,7 @@ PB_STATIC_ASSERT((pb_membersize(firestore_client_Target, query) < 65536 && pb_me
7272
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
7373
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
7474
* compile-time option. You can do that in pb.h or on compiler command line.
75-
*
75+
*
7676
* The reason you need to do this is that some of your messages contain tag
7777
* numbers or field sizes that are larger than what can fit in the default
7878
* 8 bit descriptors.

Firestore/Protos/nanopb/firestore/local/target.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_FIRESTORE_CLIENT_TARGET_NANOPB_H_INCLUDED
2121
#define PB_FIRESTORE_CLIENT_TARGET_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/google/api/annotations.nanopb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "annotations.nanopb.h"
2121

Firestore/Protos/nanopb/google/api/annotations.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_GOOGLE_API_ANNOTATIONS_NANOPB_H_INCLUDED
2121
#define PB_GOOGLE_API_ANNOTATIONS_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/google/api/http.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "http.nanopb.h"
2121

@@ -67,7 +67,7 @@ const pb_field_t google_api_CustomHttpPattern_fields[3] = {
6767
#if !defined(PB_FIELD_32BIT)
6868
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
6969
* compile-time option. You can do that in pb.h or on compiler command line.
70-
*
70+
*
7171
* The reason you need to do this is that some of your messages contain tag
7272
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
7373
* field descriptors.
@@ -78,7 +78,7 @@ PB_STATIC_ASSERT((pb_membersize(google_api_HttpRule, custom) < 65536), YOU_MUST_
7878
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
7979
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
8080
* compile-time option. You can do that in pb.h or on compiler command line.
81-
*
81+
*
8282
* The reason you need to do this is that some of your messages contain tag
8383
* numbers or field sizes that are larger than what can fit in the default
8484
* 8 bit descriptors.

Firestore/Protos/nanopb/google/api/http.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_GOOGLE_API_HTTP_NANOPB_H_INCLUDED
2121
#define PB_GOOGLE_API_HTTP_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "common.nanopb.h"
2121

@@ -69,7 +69,7 @@ const pb_field_t google_firestore_v1_TransactionOptions_ReadOnly_fields[2] = {
6969
#if !defined(PB_FIELD_32BIT)
7070
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
7171
* compile-time option. You can do that in pb.h or on compiler command line.
72-
*
72+
*
7373
* The reason you need to do this is that some of your messages contain tag
7474
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
7575
* field descriptors.
@@ -80,7 +80,7 @@ PB_STATIC_ASSERT((pb_membersize(google_firestore_v1_Precondition, update_time) <
8080
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
8181
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
8282
* compile-time option. You can do that in pb.h or on compiler command line.
83-
*
83+
*
8484
* The reason you need to do this is that some of your messages contain tag
8585
* numbers or field sizes that are larger than what can fit in the default
8686
* 8 bit descriptors.

Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_GOOGLE_FIRESTORE_V1_COMMON_NANOPB_H_INCLUDED
2121
#define PB_GOOGLE_FIRESTORE_V1_COMMON_NANOPB_H_INCLUDED

Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb constant definitions */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#include "document.nanopb.h"
2121

@@ -87,7 +87,7 @@ const pb_field_t google_firestore_v1_MapValue_FieldsEntry_fields[3] = {
8787
#if !defined(PB_FIELD_32BIT)
8888
/* If you get an error here, it means that you need to define PB_FIELD_32BIT
8989
* compile-time option. You can do that in pb.h or on compiler command line.
90-
*
90+
*
9191
* The reason you need to do this is that some of your messages contain tag
9292
* numbers or field sizes that are larger than what can fit in 8 or 16 bit
9393
* field descriptors.
@@ -98,7 +98,7 @@ PB_STATIC_ASSERT((pb_membersize(google_firestore_v1_Document, create_time) < 655
9898
#if !defined(PB_FIELD_16BIT) && !defined(PB_FIELD_32BIT)
9999
/* If you get an error here, it means that you need to define PB_FIELD_16BIT
100100
* compile-time option. You can do that in pb.h or on compiler command line.
101-
*
101+
*
102102
* The reason you need to do this is that some of your messages contain tag
103103
* numbers or field sizes that are larger than what can fit in the default
104104
* 8 bit descriptors.

Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* Automatically generated nanopb header */
18-
/* Generated by nanopb-0.3.9.7 */
18+
/* Generated by nanopb-0.3.9.8 */
1919

2020
#ifndef PB_GOOGLE_FIRESTORE_V1_DOCUMENT_NANOPB_H_INCLUDED
2121
#define PB_GOOGLE_FIRESTORE_V1_DOCUMENT_NANOPB_H_INCLUDED

0 commit comments

Comments
 (0)