Skip to content

Commit 3255a11

Browse files
chore(main): release 0.30.0
1 parent 5b85c65 commit 3255a11

File tree

24 files changed

+81
-57
lines changed

24 files changed

+81
-57
lines changed

CHANGELOG.md

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

3+
## [0.30.0](https://github.com/googleapis/genai-toolbox/compare/v0.29.0...v0.30.0) (2026-03-19)
4+
5+
6+
### Features
7+
8+
* Add migrate subcommand ([#2679](https://github.com/googleapis/genai-toolbox/issues/2679)) ([12171f7](https://github.com/googleapis/genai-toolbox/commit/12171f7a02bcd34ce647db10abdb79bb2dac7ace))
9+
* **cli:** Add serve subcommand ([#2550](https://github.com/googleapis/genai-toolbox/issues/2550)) ([1e2c7c7](https://github.com/googleapis/genai-toolbox/commit/1e2c7c7804c67bebf5e2ee9b67c6feb6f05292fd))
10+
* **skill:** One skill per toolset ([#2733](https://github.com/googleapis/genai-toolbox/issues/2733)) ([5b85c65](https://github.com/googleapis/genai-toolbox/commit/5b85c65960dba9bfaf4cadca6d44532a153976e1))
11+
* **source/oracledb:** Add Oracle DB for MCP tools and configurations, updated tools and documentation ([#2625](https://github.com/googleapis/genai-toolbox/issues/2625)) ([e350fc7](https://github.com/googleapis/genai-toolbox/commit/e350fc7879182aaf592a70c3509ed061164b3913))
12+
* **tool/looker:** Git_branch tools for looker. ([#2718](https://github.com/googleapis/genai-toolbox/issues/2718)) ([70ed8a0](https://github.com/googleapis/genai-toolbox/commit/70ed8a0dcb8e654b748a6e3e1c5ef283c26006da))
13+
14+
15+
### Bug Fixes
16+
17+
* **cloudloggingadmin:** Increase log injesting time and add auth test ([#2772](https://github.com/googleapis/genai-toolbox/issues/2772)) ([50b4457](https://github.com/googleapis/genai-toolbox/commit/50b4457095ec4ac881b3b12719da24d35141f65d))
18+
* **oracle:** Normalize encoded proxy usernames in go-ora DSN ([#2469](https://github.com/googleapis/genai-toolbox/issues/2469)) ([b1333cd](https://github.com/googleapis/genai-toolbox/commit/b1333cd27117655f8ab09f222721e14bea74b487))
19+
* **skills:** Improve flag validation and silence unit test output ([#2759](https://github.com/googleapis/genai-toolbox/issues/2759)) ([f3da6aa](https://github.com/googleapis/genai-toolbox/commit/f3da6aa5e23b609a1ac9ecc098bccea02f2388ab))
20+
* **test:** Address flaky healthcare integration test run ([#2742](https://github.com/googleapis/genai-toolbox/issues/2742)) ([9590821](https://github.com/googleapis/genai-toolbox/commit/9590821bc7d86c5cbacd29b21d4f85b427a87db4))
21+
22+
23+
### Reverts
24+
25+
* **ci:** Implement conditional sharding logic in integration tests ([#2763](https://github.com/googleapis/genai-toolbox/issues/2763)) ([1528d7c](https://github.com/googleapis/genai-toolbox/commit/1528d7c38dfaa30bdecbe59c79ba926fa6d18356))
26+
327
## [0.29.0](https://github.com/googleapis/genai-toolbox/compare/v0.28.0...v0.29.0) (2026-03-13)
428

529

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ To install Toolbox as a binary:
142142
>
143143
> ```sh
144144
> # see releases page for other versions
145-
> export VERSION=0.29.0
145+
> export VERSION=0.30.0
146146
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
147147
> chmod +x toolbox
148148
> ```
@@ -155,7 +155,7 @@ To install Toolbox as a binary:
155155
>
156156
> ```sh
157157
> # see releases page for other versions
158-
> export VERSION=0.29.0
158+
> export VERSION=0.30.0
159159
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
160160
> chmod +x toolbox
161161
> ```
@@ -168,7 +168,7 @@ To install Toolbox as a binary:
168168
>
169169
> ```sh
170170
> # see releases page for other versions
171-
> export VERSION=0.29.0
171+
> export VERSION=0.30.0
172172
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
173173
> chmod +x toolbox
174174
> ```
@@ -181,7 +181,7 @@ To install Toolbox as a binary:
181181
>
182182
> ```cmd
183183
> :: see releases page for other versions
184-
> set VERSION=0.29.0
184+
> set VERSION=0.30.0
185185
> curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/toolbox.exe"
186186
> ```
187187
>
@@ -193,7 +193,7 @@ To install Toolbox as a binary:
193193
>
194194
> ```powershell
195195
> # see releases page for other versions
196-
> $VERSION = "0.29.0"
196+
> $VERSION = "0.30.0"
197197
> curl.exe -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe"
198198
> ```
199199
>
@@ -206,7 +206,7 @@ You can also install Toolbox as a container:
206206
207207
```sh
208208
# see releases page for other versions
209-
export VERSION=0.29.0
209+
export VERSION=0.30.0
210210
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
211211
```
212212
@@ -230,7 +230,7 @@ To install from source, ensure you have the latest version of
230230
[Go installed](https://go.dev/doc/install), and then run the following command:
231231

232232
```sh
233-
go install github.com/googleapis/genai-toolbox@v0.29.0
233+
go install github.com/googleapis/genai-toolbox@v0.30.0
234234
```
235235
<!-- {x-release-please-end} -->
236236

cmd/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.29.0
1+
0.30.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.29.0\" # x-release-please-version\n",
237+
"version = \"0.30.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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ To install Toolbox as a binary on Linux (AMD64):
109109

110110
```sh
111111
# see releases page for other versions
112-
export VERSION=0.29.0
112+
export VERSION=0.30.0
113113
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
114114
chmod +x toolbox
115115
```
@@ -120,7 +120,7 @@ To install Toolbox as a binary on macOS (Apple Silicon):
120120

121121
```sh
122122
# see releases page for other versions
123-
export VERSION=0.29.0
123+
export VERSION=0.30.0
124124
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
125125
chmod +x toolbox
126126
```
@@ -131,7 +131,7 @@ To install Toolbox as a binary on macOS (Intel):
131131

132132
```sh
133133
# see releases page for other versions
134-
export VERSION=0.29.0
134+
export VERSION=0.30.0
135135
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
136136
chmod +x toolbox
137137
```
@@ -142,7 +142,7 @@ To install Toolbox as a binary on Windows (Command Prompt):
142142

143143
```cmd
144144
:: see releases page for other versions
145-
set VERSION=0.29.0
145+
set VERSION=0.30.0
146146
curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/toolbox.exe"
147147
```
148148

@@ -152,7 +152,7 @@ To install Toolbox as a binary on Windows (PowerShell):
152152

153153
```powershell
154154
# see releases page for other versions
155-
$VERSION = "0.29.0"
155+
$VERSION = "0.30.0"
156156
curl.exe -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe"
157157
```
158158

@@ -164,7 +164,7 @@ You can also install Toolbox as a container:
164164

165165
```sh
166166
# see releases page for other versions
167-
export VERSION=0.29.0
167+
export VERSION=0.30.0
168168
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
169169
```
170170

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

185185
```sh
186-
go install github.com/googleapis/genai-toolbox@v0.29.0
186+
go install github.com/googleapis/genai-toolbox@v0.30.0
187187
```
188188

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

docs/en/getting-started/quickstart/shared/configure_toolbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this section, we will download Toolbox, configure our tools in a
1313
<!-- {x-release-please-start-version} -->
1414
```bash
1515
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
16-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/$OS/toolbox
16+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/$OS/toolbox
1717
```
1818
<!-- {x-release-please-end} -->
1919

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,19 +100,19 @@ After you install Looker in the MCP Store, resources and tools from the server a
100100

101101
{{< tabpane persist=header >}}
102102
{{< tab header="linux/amd64" lang="bash" >}}
103-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/linux/amd64/toolbox
103+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
104104
{{< /tab >}}
105105

106106
{{< tab header="darwin/arm64" lang="bash" >}}
107-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/arm64/toolbox
107+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
108108
{{< /tab >}}
109109

110110
{{< tab header="darwin/amd64" lang="bash" >}}
111-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/amd64/toolbox
111+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
112112
{{< /tab >}}
113113

114114
{{< tab header="windows/amd64" lang="bash" >}}
115-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/windows/amd64/toolbox.exe
115+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
116116
{{< /tab >}}
117117
{{< /tabpane >}}
118118
<!-- {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
@@ -45,19 +45,19 @@ instance:
4545
<!-- {x-release-please-start-version} -->
4646
{{< tabpane persist=header >}}
4747
{{< tab header="linux/amd64" lang="bash" >}}
48-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/linux/amd64/toolbox
48+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
4949
{{< /tab >}}
5050

5151
{{< tab header="darwin/arm64" lang="bash" >}}
52-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/arm64/toolbox
52+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
5353
{{< /tab >}}
5454

5555
{{< tab header="darwin/amd64" lang="bash" >}}
56-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/amd64/toolbox
56+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
5757
{{< /tab >}}
5858

5959
{{< tab header="windows/amd64" lang="bash" >}}
60-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/windows/amd64/toolbox.exe
60+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
6161
{{< /tab >}}
6262
{{< /tabpane >}}
6363
<!-- {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
@@ -43,19 +43,19 @@ expose your developer assistant tools to a MySQL instance:
4343
<!-- {x-release-please-start-version} -->
4444
{{< tabpane persist=header >}}
4545
{{< tab header="linux/amd64" lang="bash" >}}
46-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/linux/amd64/toolbox
46+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/linux/amd64/toolbox
4747
{{< /tab >}}
4848

4949
{{< tab header="darwin/arm64" lang="bash" >}}
50-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/arm64/toolbox
50+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/arm64/toolbox
5151
{{< /tab >}}
5252

5353
{{< tab header="darwin/amd64" lang="bash" >}}
54-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/darwin/amd64/toolbox
54+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/darwin/amd64/toolbox
5555
{{< /tab >}}
5656

5757
{{< tab header="windows/amd64" lang="bash" >}}
58-
curl -O https://storage.googleapis.com/genai-toolbox/v0.29.0/windows/amd64/toolbox.exe
58+
curl -O https://storage.googleapis.com/genai-toolbox/v0.30.0/windows/amd64/toolbox.exe
5959
{{< /tab >}}
6060
{{< /tabpane >}}
6161
<!-- {x-release-please-end} -->

0 commit comments

Comments
 (0)