Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump well known types #6716

Merged
merged 6 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions firebase-firestore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased
* [changed] Updated `protolite-well-known-types` dependency to `18.0.1`. [#6716]


# 25.1.2
Expand Down
1 change: 1 addition & 0 deletions firebase-inappmessaging-display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased
* [changed] Updated `protolite-well-known-types` dependency to `18.0.1`. [#6716]


# 21.0.1
Expand Down
1 change: 1 addition & 0 deletions firebase-inappmessaging/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased
* [changed] Updated `protolite-well-known-types` dependency to `18.0.1`. [#6716]


# 21.0.1
Expand Down
1 change: 1 addition & 0 deletions firebase-perf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased
* [changed] Updated `protolite-well-known-types` dependency to `18.0.1`. [#6716]


# 21.0.4
Expand Down
2 changes: 1 addition & 1 deletion firebase-perf/firebase-perf.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ dependencies {
implementation libs.dagger.dagger
api 'com.google.firebase:firebase-annotations:16.2.0'
api 'com.google.firebase:firebase-installations-interop:17.1.0'
api 'com.google.firebase:protolite-well-known-types:18.0.0'
api project(":protolite-well-known-types")
implementation libs.okhttp
api("com.google.firebase:firebase-common:21.0.0")
api("com.google.firebase:firebase-common-ktx:21.0.0")
Expand Down
2 changes: 1 addition & 1 deletion protolite-well-known-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Unreleased

* [changed] Updated protobuf dependency to `3.25.5` to fix [CVE-2024-7254](https://github.com/advisories/GHSA-735f-pc8j-v9w8).

2 changes: 1 addition & 1 deletion protolite-well-known-types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ android {
}

dependencies {
implementation 'com.google.firebase:protolite-well-known-types:18.0.0'
implementation 'com.google.firebase:protolite-well-known-types:18.0.1'
implementation "io.grpc:grpc-stub:$grpcVersion"

// optionally override grpc's protobuf-lite runtime
Expand Down
2 changes: 1 addition & 1 deletion protolite-well-known-types/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# IMPORTANT (b/285892320) Keep version and latestReleasedVersion in sync
# unless you are releasing a new version of the library to prevent issues
# with transitive dependencies.
version=18.0.0
version=18.0.1
latestReleasedVersion=18.0.0
7 changes: 4 additions & 3 deletions protolite-well-known-types/protolite-well-known-types.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ firebaseLibrary {

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.21.11"
artifact = libs.protoc.get().toString()
}
generateProtoTasks {
all().each { task ->
Expand All @@ -41,6 +41,7 @@ protobuf {
}
}
}

android {
namespace "firebase.com.protolitewrapper"
compileSdkVersion project.compileSdkVersion
Expand All @@ -64,9 +65,9 @@ android {


dependencies {
protobuf("com.google.api.grpc:proto-google-common-protos:1.18.0"){
protobuf(libs.proto.google.common.protos){
exclude group: "com.google.protobuf", module: "protobuf-java"
}

implementation "com.google.protobuf:protobuf-javalite:3.21.11"
implementation libs.protobuf.java.lite
}
Loading