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"

0 commit comments

Comments
 (0)