Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e65ac01
Merge pull request #2567 from firebase/master
cabljac Dec 2, 2025
fa48643
feat(storage-resize-images): Add onStartResize event and trigger for …
HassanBahati Dec 2, 2025
84ee5b9
chore(firestore-bigquery-export): Bump dependencies (#2595)
HassanBahati Jan 13, 2026
1f77dc9
chore(rtdb-limit-child-nodes): bump dependencies (#2601)
HassanBahati Jan 13, 2026
a12a781
chore(delete-user-data): bump dependencies (#2597)
HassanBahati Jan 13, 2026
70b933a
chore(firestore-counter): bump dependencies (#2596)
HassanBahati Jan 13, 2026
7f4f981
chore(firestore-translate-text): bump dependencies (#2599)
HassanBahati Jan 13, 2026
0ef7af8
chore(storage-resize-images): bump dependencies (#2600)
HassanBahati Jan 13, 2026
49f9c5d
chore: retrigger CI
dackers86 Jan 16, 2026
ce76b22
ci: kokoro testing
dackers86 Jan 16, 2026
f00e881
chore(ci): kokoro testing
dackers86 Jan 16, 2026
fc24a92
fix(storage-resize-images): bumped version back to 0.3.1
dackers86 Jan 16, 2026
2b8f4f1
chore(storage-resize-images): fixed changelog message on chore
dackers86 Jan 16, 2026
883b73e
fix(storage-resize-images): bumped version back to 0.3.1
dackers86 Jan 16, 2026
7f52a39
chore(firestore-send-email): bump dependencies (#2612)
HassanBahati Jan 19, 2026
442722a
refactor: improve partitioning code (#2447)
cabljac Jan 26, 2026
ebbee63
Migrating to trusted publisher
joehan Jan 26, 2026
fa20281
Merge pull request #2624 from firebase/jh-trusted-publisher
joehan Jan 26, 2026
3990751
chore(deps): bump @isaacs/brace-expansion (#2627)
dependabot[bot] Feb 10, 2026
4ec3253
chore(storage-resize-images): update model to gemini-2.5-flash (#2630)
HassanBahati Feb 16, 2026
fcb712b
chore: revert send email bump (#2642)
cabljac Feb 17, 2026
0fd9760
fix(firestore-send-email): fix audit (#2641)
CorieW Feb 17, 2026
85b850d
chore(firestore-send-email): reword
CorieW Feb 17, 2026
f368039
fix(firestore-send-email): generate readme
CorieW Feb 17, 2026
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
12 changes: 4 additions & 8 deletions .github/workflows/npm_publish_bq_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ on:
description: "The package name to publish"
required: true
default: "@firebaseextensions/fs-bq-schema-views"
permissions:
id-token: write
jobs:
publish_if_newer_version:
runs-on: ubuntu-latest
name: publish_if_newer_version
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: NPM install
Expand All @@ -23,26 +25,20 @@ jobs:
if:
${{ github.event.inputs.package_name ==
'@firebaseextensions/fs-bq-schema-views'}}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN_BQ_SCHEMA_VIEWS }}
run: |
cd firestore-bigquery-export/scripts/gen-schema-view
${{ github.workspace }}/.github/workflows/scripts/npm_publish.sh
- name: Publish BigQuery Import Collection
if:
${{ github.event.inputs.package_name ==
'@firebaseextensions/fs-bq-import-collection'}}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN_BQ_IMPORT_COLLECTION }}
run: |
cd firestore-bigquery-export/scripts/import
${{ github.workspace }}/.github/workflows/scripts/npm_publish.sh
- name: Publish BigQuery Change Tracker
if:
${{ github.event.inputs.package_name ==
'@firebaseextensions/firestore-bigquery-change-tracker'}}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN_BQ_CHANGE_TRACKER }}
run: |
cd firestore-bigquery-export/firestore-bigquery-change-tracker
${{ github.workspace }}/.github/workflows/scripts/npm_publish.sh
13 changes: 1 addition & 12 deletions .github/workflows/scripts/npm_publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,5 @@ if npm_package_version_exists "$NPM_PACKAGE_NAME" "$NPM_PACKAGE_VERSION"; then
exit 0
fi

# Ensure that the NPM_TOKEN env variable is defined before we can publish the package.
if [[ -z "$NPM_TOKEN" ]]; then
echo "Missing required NPM_TOKEN env variable. Set this on the workflow action or on your local environment."
echo "Skipping publishing of this NPM package."
exit 1
fi

echo "NPM package $NPM_PACKAGE_NAME and version $NPM_PACKAGE_VERSION does NOT EXIST on the NPM registry."
npm config set //wombat-dressing-room.appspot.com/:_authToken=${NPM_TOKEN}

echo "Attempting to publish $NPM_PACKAGE_NAME version $NPM_PACKAGE_VERSION..."
# This registry allows Googlers to publish with a temporary token from http://go/npm-publish
npm publish --registry https://wombat-dressing-room.appspot.com
npm publish
4 changes: 4 additions & 0 deletions delete-user-data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.1.26

chore: bump dependencies

## Version 0.1.25

feat - add support for multiple Firestore databases via FIRESTORE_DATABASE_ID parameter
Expand Down
2 changes: 1 addition & 1 deletion delete-user-data/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: delete-user-data
version: 0.1.25
version: 0.1.26
specVersion: v1beta

displayName: Delete User Data
Expand Down
Loading
Loading