Skip to content

Commit 10486c6

Browse files
authored
Merge branch 'main' into ci-presubmit
2 parents e4e02a2 + 94846f5 commit 10486c6

6 files changed

Lines changed: 33 additions & 6 deletions

File tree

.github/workflows/presubmit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
- name: Install Extension
3737
run: npx gemini extensions validate .
3838
env:
39-
GEMINI_API_KEY: "placeholder"
39+
GEMINI_API_KEY: "placeholder"

.github/workflows/sync-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
issues: 'write'
3030
pull-requests: 'write'
3131
steps:
32-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
32+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
- uses: micnncim/action-label-syncer@3abd5ab72fda571e69fffd97bd4e0033dd5f495c # v1.3.0
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.6"
2+
".": "0.1.7"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.1.7](https://github.com/gemini-cli-extensions/bigquery-data-analytics/compare/0.1.6...0.1.7) (2026-01-28)
4+
5+
6+
### Features
7+
8+
* add Configuration settings ([#82](https://github.com/gemini-cli-extensions/bigquery-data-analytics/issues/82)) ([ba8aba6](https://github.com/gemini-cli-extensions/bigquery-data-analytics/commit/ba8aba6df97d87b0bd9d9468e02e6db656c76592))
9+
* **deps:** update dependency googleapis/genai-toolbox to v0.26.0 ([#84](https://github.com/gemini-cli-extensions/bigquery-data-analytics/issues/84)) ([1ccf9f1](https://github.com/gemini-cli-extensions/bigquery-data-analytics/commit/1ccf9f159c2bf8db63eebc3e9b6462bc6d607535))
10+
311
## [0.1.6](https://github.com/gemini-cli-extensions/bigquery-data-analytics/compare/0.1.5...0.1.6) (2026-01-13)
412

513

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,33 @@ gemini extensions install https://github.com/gemini-cli-extensions/bigquery-data
4343

4444
### Configuration
4545

46-
Set the following environment variables before starting the Gemini CLI. These variables can be loaded from a `.env` file.
46+
You will be prompted to configure the following settings during installation. These settings are saved in an `.env` file within the extension's directory.
47+
48+
* `BIGQUERY_PROJECT`: The GCP project ID.
49+
* `BIGQUERY_LOCATION`: (Optional) The dataset location.
50+
51+
To view or update your configuration:
52+
53+
**List Settings:**
54+
* Terminal: `gemini extensions list`
55+
* Gemini CLI: `/extensions list`
56+
57+
**Update Settings:**
58+
* Terminal: `gemini extensions config bigquery-data-analytics [setting name] [--scope <scope>]`
59+
* `setting name`: (Optional) The single setting to configure.
60+
* `scope`: (Optional) The scope of the setting in (`user` or `workspace`). Defaults to `user`.
61+
* Currently, you must restart the Gemini CLI for changes to take effect. We recommend using `gemini --resume` to resume your session.
62+
63+
Alternatively, you can manually set these environment variables before starting the Gemini CLI:
4764

4865
```bash
4966
export BIGQUERY_PROJECT="<your-gcp-project-id>"
5067
export BIGQUERY_LOCATION="<your-dataset-location>" # Optional
5168
```
5269

53-
Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
70+
> [!NOTE]
71+
> * Ensure [Application Default Credentials](https://cloud.google.com/docs/authentication/gcloud) are available in your environment.
72+
> * See [Troubleshooting](#troubleshooting) for debugging your configuration.
5473
5574
### Start Gemini CLI
5675

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bigquery-data-analytics",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Connect, query, and generate data insights for BigQuery datasets and data.",
55
"mcpServers": {
66
"bigquery_data_analytics": {

0 commit comments

Comments
 (0)