Skip to content

Commit 3180830

Browse files
chore(main): release 0.6.0 (#545)
🤖 I have created a release *beep* *boop* --- ## [0.6.0](v0.5.0...v0.6.0) (2025-05-28) ### Features * Add Execute sql tool for SQL Server(MSSQL) ([#585](#585)) ([6083a22](6083a22)) * Add mysql-execute-sql tool ([#577](#577)) ([8590061](8590061)) * Add new BigQuery tools: execute_sql, list_datatset_ids, list_table_ids, get_dataset_info, get_table_info ([0fd88b5](0fd88b5)) * Add spanner-execute-sql tool ([#576](#576)) ([d65747a](d65747a)) * Add support for read-only in Spanner tool ([#563](#563)) ([6512704](6512704)) * Adding support for the --prebuilt flag ([#604](#604)) ([a29c800](a29c800)) * Support MCP stdio transport protocol ([#607](#607)) ([1702ce1](1702ce1)) ### Bug Fixes * Explicitly set query location for BigQuery queries ([#586](#586)) ([eb52b66](eb52b66)) * Fix spellings in comments ([#561](#561)) ([b58bf76](b58bf76)) * Prevent tool calls through MCP when auth is required ([#544](#544)) ([e747b6e](e747b6e)) * Reinitialize required slice if nil ([#571](#571)) ([04dcf47](04dcf47)), closes [#564](#564) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
1 parent a29c800 commit 3180830

File tree

9 files changed

+33
-12
lines changed

9 files changed

+33
-12
lines changed

CHANGELOG.md

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

3+
## [0.6.0](https://github.com/googleapis/genai-toolbox/compare/v0.5.0...v0.6.0) (2025-05-28)
4+
5+
6+
### Features
7+
8+
* Add Execute sql tool for SQL Server(MSSQL) ([#585](https://github.com/googleapis/genai-toolbox/issues/585)) ([6083a22](https://github.com/googleapis/genai-toolbox/commit/6083a224aa650caf4e132b4a704323c5f18c4986))
9+
* Add mysql-execute-sql tool ([#577](https://github.com/googleapis/genai-toolbox/issues/577)) ([8590061](https://github.com/googleapis/genai-toolbox/commit/8590061ae4908da0e4b1bd6f7cf7ee8d972fa5ba))
10+
* Add new BigQuery tools: execute_sql, list_datatset_ids, list_table_ids, get_dataset_info, get_table_info ([0fd88b5](https://github.com/googleapis/genai-toolbox/commit/0fd88b574b4ab0d3bee4585999b814675d3b74ed))
11+
* Add spanner-execute-sql tool ([#576](https://github.com/googleapis/genai-toolbox/issues/576)) ([d65747a](https://github.com/googleapis/genai-toolbox/commit/d65747a2dcf3022f22c86a1524ee28c8229f7c20))
12+
* Add support for read-only in Spanner tool ([#563](https://github.com/googleapis/genai-toolbox/issues/563)) ([6512704](https://github.com/googleapis/genai-toolbox/commit/6512704e77088d92fea53a85c6e6cbf4b99c988d))
13+
* Adding support for the --prebuilt flag ([#604](https://github.com/googleapis/genai-toolbox/issues/604)) ([a29c800](https://github.com/googleapis/genai-toolbox/commit/a29c80012eec4729187c12968b53051d20b263a7))
14+
* Support MCP stdio transport protocol ([#607](https://github.com/googleapis/genai-toolbox/issues/607)) ([1702ce1](https://github.com/googleapis/genai-toolbox/commit/1702ce1e00a52170a4271ac999caf534ba00196f))
15+
16+
17+
### Bug Fixes
18+
19+
* Explicitly set query location for BigQuery queries ([#586](https://github.com/googleapis/genai-toolbox/issues/586)) ([eb52b66](https://github.com/googleapis/genai-toolbox/commit/eb52b66d82aaa11be6b1489335f49cba8168099b))
20+
* Fix spellings in comments ([#561](https://github.com/googleapis/genai-toolbox/issues/561)) ([b58bf76](https://github.com/googleapis/genai-toolbox/commit/b58bf76ddaba407e3fd995dfe86d00a09484e14a))
21+
* Prevent tool calls through MCP when auth is required ([#544](https://github.com/googleapis/genai-toolbox/issues/544)) ([e747b6e](https://github.com/googleapis/genai-toolbox/commit/e747b6e289730c17f68be8dec0c6fa6021bb23bd))
22+
* Reinitialize required slice if nil ([#571](https://github.com/googleapis/genai-toolbox/issues/571)) ([04dcf47](https://github.com/googleapis/genai-toolbox/commit/04dcf4791272e1dd034b9a03664dd8dbe77fdddd)), closes [#564](https://github.com/googleapis/genai-toolbox/issues/564)
23+
324
## [0.5.0](https://github.com/googleapis/genai-toolbox/compare/v0.4.0...v0.5.0) (2025-05-06)
425

526

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To install Toolbox as a binary:
8484
<!-- {x-release-please-start-version} -->
8585
```sh
8686
# see releases page for other versions
87-
export VERSION=0.5.0
87+
export VERSION=0.6.0
8888
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
8989
chmod +x toolbox
9090
```
@@ -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.5.0
100+
export VERSION=0.6.0
101101
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
102102
```
103103

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

112112
```sh
113-
go install github.com/googleapis/genai-toolbox@v0.5.0
113+
go install github.com/googleapis/genai-toolbox@v0.6.0
114114
```
115115
<!-- {x-release-please-end} -->
116116

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.0

docs/en/getting-started/colab_quickstart.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
},
223223
"outputs": [],
224224
"source": [
225-
"version = \"0.5.0\" # x-release-please-version\n",
225+
"version = \"0.6.0\" # x-release-please-version\n",
226226
"! curl -O https://storage.googleapis.com/genai-toolbox/v{version}/linux/amd64/toolbox\n",
227227
"\n",
228228
"# 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
@@ -57,7 +57,7 @@ To install Toolbox as a binary:
5757

5858
```sh
5959
# see releases page for other versions
60-
export VERSION=0.5.0
60+
export VERSION=0.6.0
6161
curl -O https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
6262
chmod +x toolbox
6363
```
@@ -68,7 +68,7 @@ You can also install Toolbox as a container:
6868

6969
```sh
7070
# see releases page for other versions
71-
export VERSION=0.5.0
71+
export VERSION=0.6.0
7272
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
7373
```
7474

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

8181
```sh
82-
go install github.com/googleapis/genai-toolbox@v0.5.0
82+
go install github.com/googleapis/genai-toolbox@v0.6.0
8383
```
8484

8585
{{% /tab %}}

docs/en/getting-started/local_quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ In this section, we will download Toolbox, configure our tools in a
138138
<!-- {x-release-please-start-version} -->
139139
```bash
140140
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
141-
curl -O https://storage.googleapis.com/genai-toolbox/v0.5.0/$OS/toolbox
141+
curl -O https://storage.googleapis.com/genai-toolbox/v0.6.0/$OS/toolbox
142142
```
143143
<!-- {x-release-please-end} -->
144144

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.5.0/$OS/toolbox
108+
curl -O https://storage.googleapis.com/genai-toolbox/v0.6.0/$OS/toolbox
109109
```
110110
<!-- {x-release-please-end} -->
111111

docs/en/samples/bigquery/colab_quickstart_bigquery.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
},
221221
"outputs": [],
222222
"source": [
223-
"version = \"0.5.0\" # x-release-please-version\n",
223+
"version = \"0.6.0\" # x-release-please-version\n",
224224
"! curl -O https://storage.googleapis.com/genai-toolbox/v{version}/linux/amd64/toolbox\n",
225225
"\n",
226226
"# Make the binary executable\n",

docs/en/samples/bigquery/local_quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ In this section, we will download Toolbox, configure our tools in a `tools.yaml`
132132
<!-- {x-release-please-start-version} -->
133133
```bash
134134
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
135-
curl -O https://storage.googleapis.com/genai-toolbox/v0.5.0/$OS/toolbox
135+
curl -O https://storage.googleapis.com/genai-toolbox/v0.6.0/$OS/toolbox
136136
```
137137
<!-- {x-release-please-end} -->
138138

0 commit comments

Comments
 (0)