Skip to content

Commit 207dfa0

Browse files
authored
Merge pull request #2692 from firebase/next
Release 20/03/26
2 parents 08200e4 + b6c3f58 commit 207dfa0

File tree

38 files changed

+886
-1259
lines changed

38 files changed

+886
-1259
lines changed

.github/workflows/npm_publish_bq_scripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup node
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 24
2222
- name: NPM install
2323
run: npm install
2424
- name: Publish BigQuery Schema Views

.github/workflows/scripts/npm_publish.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,6 @@ if npm_package_version_exists "$NPM_PACKAGE_NAME" "$NPM_PACKAGE_VERSION"; then
6363
fi
6464

6565
echo "Attempting to publish $NPM_PACKAGE_NAME version $NPM_PACKAGE_VERSION..."
66-
npm publish
66+
npm --version
67+
node --version
68+
npm publish --provenance

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node: ["20"]
14+
node: ["22"]
1515
name: node.js_${{ matrix.node }}_test
1616
steps:
1717
- uses: actions/checkout@v3

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup node
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 20
16+
node-version: 22
1717
- name: NPM install
1818
run: SKIP_POSTINSTALL=yes npm i
1919
- name: Prettier Lint Check

firestore-bigquery-export/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Version 0.3.0
2+
3+
breaking change: reject invalid partitioning configuration combinations at startup with explicit error messages
4+
5+
fix: normalize `NONE` / `omit` partitioning sentinels before mapping to change-tracker 2.x partitioning strategy
6+
7+
## Version 0.2.11
8+
9+
chore: bump firestore-bigquery-change-tracker dependency to v2 in functions package
10+
111
## Version 0.2.10
212

313
chore: add overrides for http-proxy-agent and inquirer to resolve npm audit vulnerabilities

firestore-bigquery-export/extension.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: firestore-bigquery-export
16-
version: 0.2.10
16+
version: 0.3.0
1717
specVersion: v1beta
1818

1919
displayName: Stream Firestore to BigQuery

0 commit comments

Comments
 (0)