Skip to content

Commit 4538953

Browse files
chore(main): release 1.0.0
1 parent 36225aa commit 4538953

File tree

14 files changed

+57
-29
lines changed

14 files changed

+57
-29
lines changed

CHANGELOG.md

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

3+
## [1.0.0](https://github.com/googleapis/genai-toolbox/compare/v0.13.0...v1.0.0) (2025-09-04)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **tools/bigquerysql:** remove `useClientOAuth` from tools config ([#1312](https://github.com/googleapis/genai-toolbox/issues/1312))
9+
10+
### Features
11+
12+
* **clickhouse:** Add ClickHouse Source and Tools ([#1088](https://github.com/googleapis/genai-toolbox/issues/1088)) ([75a04a5](https://github.com/googleapis/genai-toolbox/commit/75a04a55dd2259bed72fe95119a7a51a906c0b21))
13+
* **server/mcp:** Support toolbox auth in mcp ([#1140](https://github.com/googleapis/genai-toolbox/issues/1140)) ([ca353e0](https://github.com/googleapis/genai-toolbox/commit/ca353e0b66fedc00e9110df57db18632aef49018))
14+
* **source/mysql:** Support `queryParams` in MySQL source ([#1299](https://github.com/googleapis/genai-toolbox/issues/1299)) ([3ae2526](https://github.com/googleapis/genai-toolbox/commit/3ae2526e0fe36b57b05a9b54f1d99f3fc68d9657))
15+
* **tools/bigquery:** Support end-user credential passthrough on multiple BQ tools ([#1314](https://github.com/googleapis/genai-toolbox/issues/1314)) ([88f4b30](https://github.com/googleapis/genai-toolbox/commit/88f4b3028df3b6a400936cdf8a035bf55021924c))
16+
* **tools/looker:** Add description for looker-get-models tool ([#1266](https://github.com/googleapis/genai-toolbox/issues/1266)) ([89af3a4](https://github.com/googleapis/genai-toolbox/commit/89af3a4ca332f029615b2a739d1f6cd50519638d))
17+
* **tools/looker:** Authenticate via end user credentials ([#1257](https://github.com/googleapis/genai-toolbox/issues/1257)) ([8755e3d](https://github.com/googleapis/genai-toolbox/commit/8755e3db3476abb35629b3cca9c78db7366757a4))
18+
* **tools/looker:** Report field suggestions to agent ([#1267](https://github.com/googleapis/genai-toolbox/issues/1267)) ([2cad82e](https://github.com/googleapis/genai-toolbox/commit/2cad82e5107566dd6c9b75e34e9976af63af0bb5))
19+
20+
21+
### Bug Fixes
22+
23+
* **bigquery:** Move `useClientOAuth` config from tool to source ([#1279](https://github.com/googleapis/genai-toolbox/issues/1279)) ([8d20a48](https://github.com/googleapis/genai-toolbox/commit/8d20a48f13bcda853d41bdf80a162de12b076d1b))
24+
* Do not print usage on runtime error ([#1315](https://github.com/googleapis/genai-toolbox/issues/1315)) ([afba7a5](https://github.com/googleapis/genai-toolbox/commit/afba7a57cdd4fe7c1b0741dbf8f8c78b14a68089))
25+
* **looker:** Fix Looker client OAuth check ([#1338](https://github.com/googleapis/genai-toolbox/issues/1338)) ([36225aa](https://github.com/googleapis/genai-toolbox/commit/36225aa6db7f8426ad87930866530fde4e9bf0cd))
26+
* **tools/bigquerysql:** Remove `useClientOAuth` from tools config ([#1312](https://github.com/googleapis/genai-toolbox/issues/1312)) ([21085ef](https://github.com/googleapis/genai-toolbox/commit/21085ef4224ae829cc6c53d58768743177301945))
27+
* **tools/firestore:** Add document/collection path validation ([#1229](https://github.com/googleapis/genai-toolbox/issues/1229)) ([14c2249](https://github.com/googleapis/genai-toolbox/commit/14c224939a2f9bb349fa00a7d5227877198530c2))
28+
* **tools/oceanbase:** Fix encoded text with mysql driver ([#1283](https://github.com/googleapis/genai-toolbox/issues/1283)) ([d16f89f](https://github.com/googleapis/genai-toolbox/commit/d16f89fbb6e49c03998f114ef7dc2b584b5e4967)), closes [#1161](https://github.com/googleapis/genai-toolbox/issues/1161)
29+
* Update env var to allow empty string ([#1260](https://github.com/googleapis/genai-toolbox/issues/1260)) ([03aa9fa](https://github.com/googleapis/genai-toolbox/commit/03aa9fabacda06f860c9f178485126bddb7d5782))
30+
331
## [0.13.0](https://github.com/googleapis/genai-toolbox/compare/v0.12.0...v0.13.0) (2025-08-27)
432

533
### ⚠ BREAKING CHANGES

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To install Toolbox as a binary:
117117
<!-- {x-release-please-start-version} -->
118118
```sh
119119
# see releases page for other versions
120-
export VERSION=0.13.0
120+
export VERSION=1.0.0
121121
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
122122
chmod +x toolbox
123123
```
@@ -130,7 +130,7 @@ You can also install Toolbox as a container:
130130

131131
```sh
132132
# see releases page for other versions
133-
export VERSION=0.13.0
133+
export VERSION=1.0.0
134134
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
135135
```
136136

@@ -154,7 +154,7 @@ To install from source, ensure you have the latest version of
154154
[Go installed](https://go.dev/doc/install), and then run the following command:
155155

156156
```sh
157-
go install github.com/googleapis/genai-toolbox@v0.13.0
157+
go install github.com/googleapis/genai-toolbox@v1.0.0
158158
```
159159
<!-- {x-release-please-end} -->
160160

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.0
1+
1.0.0

docs/en/getting-started/colab_quickstart.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@
234234
},
235235
"outputs": [],
236236
"source": [
237-
"version = \"0.13.0\" # x-release-please-version\n",
237+
"version = \"1.0.0\" # x-release-please-version\n",
238238
"! curl -O https://storage.googleapis.com/genai-toolbox/v{version}/linux/amd64/toolbox\n",
239239
"\n",
240240
"# Make the binary executable\n",

docs/en/getting-started/introduction/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ To install Toolbox as a binary:
8686

8787
```sh
8888
# see releases page for other versions
89-
export VERSION=0.13.0
89+
export VERSION=1.0.0
9090
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
9191
chmod +x toolbox
9292
```
@@ -97,7 +97,7 @@ You can also install Toolbox as a container:
9797

9898
```sh
9999
# see releases page for other versions
100-
export VERSION=0.13.0
100+
export VERSION=1.0.0
101101
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
102102
```
103103

@@ -115,7 +115,7 @@ To install from source, ensure you have the latest version of
115115
[Go installed](https://go.dev/doc/install), and then run the following command:
116116

117117
```sh
118-
go install github.com/googleapis/genai-toolbox@v0.13.0
118+
go install github.com/googleapis/genai-toolbox@v1.0.0
119119
```
120120

121121
{{% /tab %}}

docs/en/getting-started/mcp_quickstart/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ In this section, we will download Toolbox, configure our tools in a
105105
<!-- {x-release-please-start-version} -->
106106
```bash
107107
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
108-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/$OS/toolbox
108+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/$OS/toolbox
109109
```
110110
<!-- {x-release-please-end} -->
111111

docs/en/how-to/connect-ide/looker_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ to expose your developer assistant tools to a Looker instance:
4848
<!-- {x-release-please-start-version} -->
4949
{{< tabpane persist=header >}}
5050
{{< tab header="linux/amd64" lang="bash" >}}
51-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/linux/amd64/toolbox
51+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/linux/amd64/toolbox
5252
{{< /tab >}}
5353

5454
{{< tab header="darwin/arm64" lang="bash" >}}
55-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/arm64/toolbox
55+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/arm64/toolbox
5656
{{< /tab >}}
5757

5858
{{< tab header="darwin/amd64" lang="bash" >}}
59-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/amd64/toolbox
59+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/amd64/toolbox
6060
{{< /tab >}}
6161

6262
{{< tab header="windows/amd64" lang="bash" >}}
63-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/windows/amd64/toolbox.exe
63+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/windows/amd64/toolbox.exe
6464
{{< /tab >}}
6565
{{< /tabpane >}}
6666
<!-- {x-release-please-end} -->

docs/en/how-to/connect-ide/mssql_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ description: "Connect your IDE to SQL Server using Toolbox."
3737
<!-- {x-release-please-start-version} -->
3838
{{< tabpane persist=header >}}
3939
{{< tab header="linux/amd64" lang="bash" >}}
40-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/linux/amd64/toolbox
40+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/linux/amd64/toolbox
4141
{{< /tab >}}
4242

4343
{{< tab header="darwin/arm64" lang="bash" >}}
44-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/arm64/toolbox
44+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/arm64/toolbox
4545
{{< /tab >}}
4646

4747
{{< tab header="darwin/amd64" lang="bash" >}}
48-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/amd64/toolbox
48+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/amd64/toolbox
4949
{{< /tab >}}
5050

5151
{{< tab header="windows/amd64" lang="bash" >}}
52-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/windows/amd64/toolbox.exe
52+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/windows/amd64/toolbox.exe
5353
{{< /tab >}}
5454
{{< /tabpane >}}
5555
<!-- {x-release-please-end} -->

docs/en/how-to/connect-ide/mysql_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ description: "Connect your IDE to MySQL using Toolbox."
3737
<!-- {x-release-please-start-version} -->
3838
{{< tabpane persist=header >}}
3939
{{< tab header="linux/amd64" lang="bash" >}}
40-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/linux/amd64/toolbox
40+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/linux/amd64/toolbox
4141
{{< /tab >}}
4242

4343
{{< tab header="darwin/arm64" lang="bash" >}}
44-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/arm64/toolbox
44+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/arm64/toolbox
4545
{{< /tab >}}
4646

4747
{{< tab header="darwin/amd64" lang="bash" >}}
48-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/amd64/toolbox
48+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/amd64/toolbox
4949
{{< /tab >}}
5050

5151
{{< tab header="windows/amd64" lang="bash" >}}
52-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/windows/amd64/toolbox.exe
52+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/windows/amd64/toolbox.exe
5353
{{< /tab >}}
5454
{{< /tabpane >}}
5555
<!-- {x-release-please-end} -->

docs/en/how-to/connect-ide/postgres_mcp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,19 @@ Omni](https://cloud.google.com/alloydb/omni/current/docs/overview).
5656
<!-- {x-release-please-start-version} -->
5757
{{< tabpane persist=header >}}
5858
{{< tab header="linux/amd64" lang="bash" >}}
59-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/linux/amd64/toolbox
59+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/linux/amd64/toolbox
6060
{{< /tab >}}
6161

6262
{{< tab header="darwin/arm64" lang="bash" >}}
63-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/arm64/toolbox
63+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/arm64/toolbox
6464
{{< /tab >}}
6565

6666
{{< tab header="darwin/amd64" lang="bash" >}}
67-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/darwin/amd64/toolbox
67+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/darwin/amd64/toolbox
6868
{{< /tab >}}
6969

7070
{{< tab header="windows/amd64" lang="bash" >}}
71-
curl -O https://storage.googleapis.com/genai-toolbox/v0.13.0/windows/amd64/toolbox.exe
71+
curl -O https://storage.googleapis.com/genai-toolbox/v1.0.0/windows/amd64/toolbox.exe
7272
{{< /tab >}}
7373
{{< /tabpane >}}
7474
<!-- {x-release-please-end} -->

0 commit comments

Comments
 (0)