Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions firestore-bigquery-export/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.2.6

docs: update docs to reference the correct "latest" view names

## Version 0.2.5

fix: keep partition value on delete using old data
Expand Down
4 changes: 2 additions & 2 deletions firestore-bigquery-export/PREINSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ There are two types of materialized views available:

Example of a non-incremental materialized view SQL definition generated by the extension:
```sql
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_latest`
OPTIONS (
allow_non_incremental_definition = true,
enable_refresh = true,
Expand Down Expand Up @@ -115,7 +115,7 @@ CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`

Example of an incremental materialized view SQL definition generated by the extension:
```sql
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_latest`
OPTIONS (
enable_refresh = true,
refresh_interval_minutes = 60,
Expand Down
4 changes: 2 additions & 2 deletions firestore-bigquery-export/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ There are two types of materialized views available:

Example of a non-incremental materialized view SQL definition generated by the extension:
```sql
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_latest`
OPTIONS (
allow_non_incremental_definition = true,
enable_refresh = true,
Expand Down Expand Up @@ -123,7 +123,7 @@ CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`

Example of an incremental materialized view SQL definition generated by the extension:
```sql
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_changelog`
CREATE MATERIALIZED VIEW `my_project.my_dataset.my_table_raw_latest`
OPTIONS (
enable_refresh = true,
refresh_interval_minutes = 60,
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.5
version: 0.2.6
specVersion: v1beta

displayName: Stream Firestore to BigQuery
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebaseextensions/fs-bq-schema-views",
"version": "0.4.11",
"version": "0.4.12",
"description": "Generate strongly-typed BigQuery Views based on raw JSON",
"main": "./lib/index.js",
"repository": {
Expand Down
33 changes: 33 additions & 0 deletions firestore-bigquery-export/scripts/import/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

All notable changes to the `@firebaseextensions/fs-bq-import-collection` package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.26] - 2025-08-19

- fix: collectionGroup handling for multi-threaded where multi-threaded collection group imports fail due to improper handling of Firestore document reference paths

## [0.1.25] - 2025-07-28

### Added

- Initial changelog file to track version history

- Expose transformUrl from config

### Changed

- Incremented package version from 0.1.24 to 0.1.25

## [0.1.24] - Previous Version

### Initial Release

- Import script for Firestore collections to BigQuery changelog tables
- Support for reading existing documents from Firestore collections
- Integration with the firestore-bigquery-export extension
- Command-line interface with interactive prompts
- Worker pool support for parallel processing
- Schema generation capabilities
Loading
Loading