Skip to content

m164 mergeback #6973

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 1 commit into from
May 20, 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
5 changes: 4 additions & 1 deletion firebase-ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Unreleased


# 16.0.0
* [feature] Initial release of the Firebase AI SDK (`firebase-ai`). This SDK *replaces* the previous
Vertex AI in Firebase SDK (`firebase-vertexai`) to accommodate the evolving set of supported
features and services.
Expand All @@ -9,10 +12,10 @@
If you're using the old `firebase-vertexai`, we recommend
[migrating to `firebase-ai`](/docs/ai-logic/migrate-to-latest-sdk)
because all new development and features will be in this new SDK.

* [feature] **Preview:** Added support for specifying response modalities in `GenerationConfig`
(only available in the new `firebase-ai` package). This includes support for image generation using
[specific Gemini models](/docs/vertex-ai/models).

Note: This feature is in Public Preview, which means that it is not subject to any SLA or
deprecation policy and could change in backwards-incompatible ways.

4 changes: 2 additions & 2 deletions firebase-ai/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version=16.0.0
latestReleasedVersion=
version=16.0.1
latestReleasedVersion=16.0.0
9 changes: 9 additions & 0 deletions firebase-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Unreleased


# 22.1.2
* [fixed] Fixed `NetworkOnMainThreadException` on Android versions below 8 by disconnecting
`HttpURLConnection` only on API levels 26 and higher. GitHub Issue [#6934]


## Kotlin
The Kotlin extensions library transitively includes the updated
`firebase-config` library. The Kotlin extensions library has no additional
updates.

# 22.1.1
* [fixed] Fixed an issue where the connection to the real-time Remote Config backend could remain
open in the background.
Expand Down
4 changes: 2 additions & 2 deletions firebase-config/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

version=22.1.2
latestReleasedVersion=22.1.1
version=22.1.3
latestReleasedVersion=22.1.2
android.enableUnitTestBinaryResources=true

4 changes: 3 additions & 1 deletion firebase-dataconnect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Unreleased


# 16.0.2
* [changed] Improved code robustness related to state management in
`FirebaseDataConnect` objects.
([#6861](https://github.com/firebase/firebase-android-sdk/pull/6861))


# 16.0.1
* [changed] Internal improvements.

Expand Down
4 changes: 2 additions & 2 deletions firebase-dataconnect/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=16.0.2
latestReleasedVersion=16.0.1
version=16.0.3
latestReleasedVersion=16.0.2
10 changes: 10 additions & 0 deletions firebase-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
# Unreleased


# 21.0.2
* [fixed] Fixed an issue where tests were depending on a deprecated feature of the test framework. (#6927)


## Kotlin
The Kotlin extensions library transitively includes the updated
`firebase-storage` library. The Kotlin extensions library has no additional
updates.

# 21.0.1
* [fixed] Fixed an issue where `maxUploadRetryTimeMillis` parameter is ignored when uploading using
`putBytes()`

# 21.0.0
* [changed] Bump internal dependencies


## Kotlin
The Kotlin extensions library transitively includes the updated
`firebase-storage` library. The Kotlin extensions library has no additional
Expand Down
4 changes: 2 additions & 2 deletions firebase-storage/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version=21.0.2
latestReleasedVersion=21.0.1
version=21.0.3
latestReleasedVersion=21.0.2
android.enableUnitTestBinaryResources=true
4 changes: 3 additions & 1 deletion firebase-vertexai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Unreleased


# 16.5.0
* [changed] **Renamed / Replaced:** Vertex AI in Firebase (`firebase-vertexai`) has been renamed and
replaced by the new Firebase AI SDK: `firebase-ai`. This is to accommodate the evolving set of
supported features and services. Please [**migrate to the new `firebase-ai` package**](/docs/vertex-ai/migrate-to-latest-sdk).
Expand All @@ -16,7 +19,6 @@
* [feature] Added support for the `id` field on `FunctionResponsePart` and `FunctionCallPart`. (#6941)
* [feature] Added a helper field for getting all the `InlineDataPart` from a `GenerateContentResponse`. (#6941)


# 16.4.0
* [changed] **Breaking Change**: `LiveModelFutures.connect` now returns `ListenableFuture<LiveSessionFutures>` instead of `ListenableFuture<LiveSession>`.
* **Action Required:** Remove any transformations from LiveSession object to LiveSessionFutures object.
Expand Down
4 changes: 2 additions & 2 deletions firebase-vertexai/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version=16.5.0
latestReleasedVersion=16.4.0
version=16.5.1
latestReleasedVersion=16.5.0
Loading