Skip to content

Commit 0cbe54e

Browse files
authored
fix(firestore-translate-text): disable backfill (#2314)
chore(firestore-translate-text): update changelog
1 parent 1e49eb5 commit 0cbe54e

File tree

3 files changed

+20
-17
lines changed

3 files changed

+20
-17
lines changed

firestore-translate-text/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 0.1.23
2+
3+
fixed - backfill feature is disabled for now
4+
15
## Version 0.1.22
26

37
feat - move to Node.js 20 runtimes

firestore-translate-text/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,6 @@ To install an extension, your project must be on the [Blaze (pay as you go) plan
8989
* Google AI API key: If you selected AI Translations Using Gemini to perform translations, please provide a Google AI API key, which you can create here: https://ai.google.dev/gemini-api/docs/api-key
9090

9191

92-
* Translate existing documents?: Should existing documents in the Firestore collection be translated as well? If you've added new languages since a document was translated, this will fill those in as well.
93-
94-
9592

9693

9794
**Cloud Functions:**

firestore-translate-text/extension.yaml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: firestore-translate-text
16-
version: 0.1.22
16+
version: 0.1.23
1717
specVersion: v1beta
1818

1919
tags: [ai]
@@ -154,19 +154,20 @@ params:
154154
type: secret
155155
required: false
156156

157-
- param: DO_BACKFILL
158-
label: Translate existing documents?
159-
description: >
160-
Should existing documents in the Firestore collection be translated as
161-
well? If you've added new languages since a document was translated, this
162-
will fill those in as well.
163-
type: select
164-
required: true
165-
options:
166-
- label: Yes
167-
value: true
168-
- label: No
169-
value: false
157+
# ! DO NOT UNCOMMENT THIS PARAMETER, IT IS CURRENTLY PROBLEMATIC
158+
# - param: DO_BACKFILL
159+
# label: Translate existing documents?
160+
# description: >
161+
# Should existing documents in the Firestore collection be translated as
162+
# well? If you've added new languages since a document was translated, this
163+
# will fill those in as well.
164+
# type: select
165+
# required: true
166+
# options:
167+
# - label: Yes
168+
# value: true
169+
# - label: No
170+
# value: false
170171

171172
events:
172173
- type: firebase.extensions.firestore-translate-text.v1.onStart
@@ -188,6 +189,7 @@ events:
188189
description:
189190
Occurs when the function is settled. Provides no customized data other
190191
than the context.
192+
# ! DO NOT UNCOMMENT THE BELOW, IT IS CURRENTLY PROBLEMATIC
191193
# lifecycleEvents:
192194
# onInstall:
193195
# function: fstranslatebackfill

0 commit comments

Comments
 (0)