Skip to content

Commit a03e51a

Browse files
morganchen12andrewheard
authored andcommitted
Add script changes for VertexAI (#12930)
1 parent 832fb86 commit a03e51a

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

Dangerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def labelsForModifiedFiles()
6464
labels.push("api: performance") if @has_performance_changes
6565
labels.push("api: remoteconfig") if @has_remoteconfig_changes
6666
labels.push("api: storage") if @has_storage_changes
67+
labels.push("api: vertexai") if @has_vertexai_changes
6768
labels.push("release-tooling") if @has_releasetooling_changes
6869
labels.push("public-api-change") if @has_api_changes
6970
return labels
@@ -100,7 +101,8 @@ has_license_changes = didModify(["LICENSE"])
100101
"Messaging",
101102
"Performance",
102103
"RemoteConfig",
103-
"Storage"
104+
"Storage",
105+
"VertexAI"
104106
]
105107

106108
## Product directories
@@ -149,6 +151,7 @@ has_license_changes = didModify(["LICENSE"])
149151
@has_remoteconfig_changes = hasChangesIn("FirebaseRemoteConfig")
150152
@has_remoteconfig_api_changes = hasChangesIn("FirebaseRemoteConfig/Sources/Public/")
151153
@has_storage_changes = hasChangesIn("FirebaseStorage")
154+
@has_vertexai_changes = hasChangesIn("FirebaseVertexAI")
152155

153156
@has_releasetooling_changes = hasChangesIn("ReleaseTooling/")
154157
@has_public_additions = hasAdditionsIn("Public/")

FirebaseVertexAI/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# 10.26.0
2+
3+
- [added] Public Preview release of the Vertex AI for Firebase SDK - build
4+
AI-powered mobile apps and features with the Gemini API using this new SDK.
5+
See the
6+
[docs](https://firebase.google.com/docs/vertex-ai/get-started?platform=ios)
7+
for instructions on how to get started.

scripts/make_release_notes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
'FirebaseFunctions/CHANGELOG.md': '{{cloud_functions}}',
4343
'FirebaseRemoteConfig/CHANGELOG.md': '{{remote_config}}',
4444
'FirebasePerformance/CHANGELOG.md': '{{perfmon}}',
45+
'FirebaseVertexAI/CHANGELOG.md': '{{vertexai}}',
4546
}
4647

4748

0 commit comments

Comments
 (0)