Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b3d3aec
Release 17/02/26
cabljac Feb 18, 2026
b4a9d7a
feat: Propagate custom_args to sendgrid api
michalpechnet Feb 27, 2026
632eb1d
feat: Propagate ip_pool_name to sendgrid api
michalpechnet Mar 2, 2026
fd7a79d
chore(firestore-bigquerychange-tracker): remove unused dependencies (…
HassanBahati Mar 6, 2026
10dea92
Merge pull request #2682 from firebase/cleanup-firestore-bigquery-cha…
cabljac Mar 6, 2026
504c7ae
Merge pull request #2683 from firebase/master
cabljac Mar 6, 2026
e432988
chore(firestore-send-email): bump version to 0.2.7 and update docs/ch…
CorieW Mar 11, 2026
0ca843c
feat(‎firestore-send-email): Propagate custom_args and ip_pool_name t…
dackers86 Mar 11, 2026
5943485
chore(firestore-send-email): bump version to 0.2.7 and update docs/ch…
dackers86 Mar 11, 2026
7fbe8d0
chore(workflows): update Node.js version to 22 in CI configurations
andyma-star Mar 16, 2026
92beb81
chore(workflows): update Node.js version to 22 in CI configurations
dackers86 Mar 17, 2026
5b4a986
Adding --provenance
joehan Mar 17, 2026
dba4f87
Merge pull request #2688 from firebase/jh-provenance
joehan Mar 17, 2026
a23573e
Updating to a newer version of node
joehan Mar 17, 2026
a9ba57a
Merge pull request #2689 from firebase/jh-node
joehan Mar 17, 2026
af70f39
Change repository.url
joehan Mar 17, 2026
e48db71
Merge pull request #2690 from firebase/jh-repo
joehan Mar 17, 2026
7bb58a0
chore(firestore-bigquery-export): bump change-tracker dependency and …
andyma-star Mar 18, 2026
3fd0be3
fix(firestore-bigquery-export): unblock npm install job after change-…
andyma-star Mar 18, 2026
836bf6c
chore(firestore-bigquery-export): bump change-tracker version to to 0…
dackers86 Mar 18, 2026
92f3c7b
chore(firestore-bigquery-change-tracker): bump to 2.0.1-rc.0 and fix …
andyma-star Mar 20, 2026
4ae1396
fix(firestore-bigquery-change-tracker): use stable 2.0.1 for monorepo…
andyma-star Mar 20, 2026
f87466c
chore(firestore-bigquery-change-tracker): bump to 2.0.1-rc.0 and incl…
dackers86 Mar 20, 2026
0987464
fix(firestore-bigquery-change-tracker): update dependency to version …
andyma-star Mar 23, 2026
01588db
fix(deps): update @firebaseextensions/firestore-bigquery-change-track…
andyma-star Mar 23, 2026
5dd7e25
Merge pull request #2694 from andyma-star/fix/firestore-bigquery-expo…
cabljac Mar 23, 2026
025ed29
feat: update change tracker to 2.0.2 with fixed types (#2696)
cabljac Mar 24, 2026
eeb8729
fix(firestore-bigquery-export): bump change-tracker dependency to 2.0.2
andyma-star Mar 24, 2026
d6fa753
fix(firestore-bigquery-export): normalize NONE/omit partitioning para…
andyma-star Mar 25, 2026
b6c3f58
fix: cover all possible partitioning configurations with tests and fi…
cabljac Mar 25, 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
2 changes: 1 addition & 1 deletion .github/workflows/npm_publish_bq_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
- name: NPM install
run: npm install
- name: Publish BigQuery Schema Views
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/scripts/npm_publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,6 @@ if npm_package_version_exists "$NPM_PACKAGE_NAME" "$NPM_PACKAGE_VERSION"; then
fi

echo "Attempting to publish $NPM_PACKAGE_NAME version $NPM_PACKAGE_VERSION..."
npm publish
npm --version
node --version
npm publish --provenance
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["20"]
node: ["22"]
name: node.js_${{ matrix.node }}_test
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
- name: NPM install
run: SKIP_POSTINSTALL=yes npm i
- name: Prettier Lint Check
Expand Down
10 changes: 10 additions & 0 deletions firestore-bigquery-export/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Version 0.3.0

breaking change: reject invalid partitioning configuration combinations at startup with explicit error messages

fix: normalize `NONE` / `omit` partitioning sentinels before mapping to change-tracker 2.x partitioning strategy

## Version 0.2.11

chore: bump firestore-bigquery-change-tracker dependency to v2 in functions package

## Version 0.2.10

chore: add overrides for http-proxy-agent and inquirer to resolve npm audit vulnerabilities
Expand Down
2 changes: 1 addition & 1 deletion firestore-bigquery-export/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: firestore-bigquery-export
version: 0.2.10
version: 0.3.0
specVersion: v1beta

displayName: Stream Firestore to BigQuery
Expand Down
Loading
Loading