Skip to content

dataconnect: change grpc api version from "v1beta" to "v1" #6729

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

Merged
merged 4 commits into from
Feb 27, 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
3 changes: 2 additions & 1 deletion firebase-dataconnect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Unreleased

* [changed] Changed gRPC proto package to v1 (was v1beta).
([#6729](https://github.com/firebase/firebase-android-sdk/pull/6729))

# 16.0.0-beta04
* [changed] `FirebaseDataConnect.logLevel` type changed from `LogLevel` to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
specVersion: v1beta
specVersion: v1
serviceId: srv3ar8skbsza
location: us-central1
schema:
Expand Down
2 changes: 1 addition & 1 deletion firebase-dataconnect/emulator/dataconnect/dataconnect.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
specVersion: "v1beta"
specVersion: "v1"
serviceId: "sid2ehn9ct8te"
location: "us-central1"
schema:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

syntax = "proto3";

package google.firebase.dataconnect.v1beta;
package google.firebase.dataconnect.v1;

import "google/firebase/dataconnect/proto/graphql_error.proto";
import "google/protobuf/struct.proto";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

syntax = "proto3";

package google.firebase.dataconnect.v1beta;
package google.firebase.dataconnect.v1;

import "google/protobuf/struct.proto";

Expand Down
Loading