Skip to content

Commit bc89121

Browse files
authored
dataconnect: fix outdated comments that refer to "alpha" and "beta" versions of the sdk, since it is now generally available. (#7247)
1 parent 8b1b50d commit bc89121

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/generated/GeneratedConnector.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ import com.google.firebase.dataconnect.FirebaseDataConnect
2828
* All methods and properties of [GeneratedConnector] are thread-safe and may be safely called
2929
* and/or accessed concurrently from multiple threads and/or coroutines.
3030
*
31-
* ### Stable for Inheritance (after graduating to "Generally Available")
31+
* ### Stable for Inheritance
3232
*
3333
* The [GeneratedConnector] interface _is_ stable for inheritance in third-party libraries, as new
3434
* methods will not be added to this interface and contracts of the existing methods will not be
35-
* changed. Note, however, that this interface is still subject to changes, up to and including
36-
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
37-
* to "Generally Available" status.
35+
* changed, except possibly during major version number changes.
3836
*/
3937
public interface GeneratedConnector<T : GeneratedConnector<T>> {
4038

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/generated/GeneratedMutation.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,11 @@ import kotlinx.serialization.SerializationStrategy
3030
* All methods and properties of [GeneratedMutation] are thread-safe and may be safely called and/or
3131
* accessed concurrently from multiple threads and/or coroutines.
3232
*
33-
* ### Stable for Inheritance (after graduating to "Generally Available")
33+
* ### Stable for Inheritance
3434
*
3535
* The [GeneratedMutation] interface _is_ stable for inheritance in third-party libraries, as new
3636
* methods will not be added to this interface and contracts of the existing methods will not be
37-
* changed. Note, however, that this interface is still subject to changes, up to and including
38-
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
39-
* to "Generally Available" status.
37+
* changed, except possibly during major version number changes.
4038
*/
4139
public interface GeneratedMutation<Connector : GeneratedConnector<Connector>, Data, Variables> :
4240
GeneratedOperation<Connector, Data, Variables> {

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/generated/GeneratedOperation.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,11 @@ import kotlinx.serialization.SerializationStrategy
3131
* All methods and properties of [GeneratedOperation] are thread-safe and may be safely called
3232
* and/or accessed concurrently from multiple threads and/or coroutines.
3333
*
34-
* ### Stable for Inheritance (after graduating to "Generally Available")
34+
* ### Stable for Inheritance
3535
*
3636
* The [GeneratedOperation] interface _is_ stable for inheritance in third-party libraries, as new
3737
* methods will not be added to this interface and contracts of the existing methods will not be
38-
* changed. Note, however, that this interface is still subject to changes, up to and including
39-
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
40-
* to "Generally Available" status.
38+
* changed, except possibly during major version number changes.
4139
*/
4240
public interface GeneratedOperation<Connector : GeneratedConnector<Connector>, Data, Variables> {
4341

firebase-dataconnect/src/main/kotlin/com/google/firebase/dataconnect/generated/GeneratedQuery.kt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,11 @@ import kotlinx.serialization.SerializationStrategy
3030
* All methods and properties of [GeneratedQuery] are thread-safe and may be safely called and/or
3131
* accessed concurrently from multiple threads and/or coroutines.
3232
*
33-
* ### Stable for Inheritance (after graduating to "Generally Available")
33+
* ### Stable for Inheritance
3434
*
3535
* The [GeneratedQuery] interface _is_ stable for inheritance in third-party libraries, as new
3636
* methods will not be added to this interface and contracts of the existing methods will not be
37-
* changed. Note, however, that this interface is still subject to changes, up to and including
38-
* outright deletion, until the Firebase Data Connect product graduates from "alpha" and/or "beta"
39-
* to "Generally Available" status.
37+
* changed, except possibly during major version number changes.
4038
*/
4139
public interface GeneratedQuery<Connector : GeneratedConnector<Connector>, Data, Variables> :
4240
GeneratedOperation<Connector, Data, Variables> {

0 commit comments

Comments
 (0)