Skip to content

Commit e81dfea

Browse files
chore(main): release 0.21.0 (#1957)
🤖 I have created a release *beep* *boop* --- ## [0.21.0](v0.20.0...v0.21.0) (2025-11-19) ### ⚠ BREAKING CHANGES * **tools/spanner-list-tables:** Unmarshal `object_details` json string into map to make response have nested json ([#1894](#1894)) ([446d62a](446d62a)) ### Features * **tools/postgres:** Add `long_running_transactions`, `list_locks` and `replication_stats` tools ([#1751](#1751)) ([5abad5d](5abad5d)) ### Bug Fixes * **tools/alloydbgetinstance:** Remove parameter duplication ([#1993](#1993)) ([0e269a1](0e269a1)) * **tools:** Check for query execution error for pgxpool.Pool ([#1969](#1969)) ([2bff138](2bff138)) --- 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> Co-authored-by: Yuan Teoh <[email protected]>
1 parent 02a11af commit e81dfea

File tree

22 files changed

+68
-49
lines changed

22 files changed

+68
-49
lines changed

CHANGELOG.md

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

3+
## [0.21.0](https://github.com/googleapis/genai-toolbox/compare/v0.20.0...v0.21.0) (2025-11-19)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **tools/spanner-list-tables:** Unmarshal `object_details` json string into map to make response have nested json ([#1894](https://github.com/googleapis/genai-toolbox/issues/1894)) ([446d62a](https://github.com/googleapis/genai-toolbox/commit/446d62acd995d5128f52e9db254dd1c7138227c6))
9+
10+
11+
### Features
12+
13+
* **tools/postgres:** Add `long_running_transactions`, `list_locks` and `replication_stats` tools ([#1751](https://github.com/googleapis/genai-toolbox/issues/1751)) ([5abad5d](https://github.com/googleapis/genai-toolbox/commit/5abad5d56c6cc5ba86adc5253b948bf8230fa830))
14+
15+
16+
### Bug Fixes
17+
18+
* **tools/alloydbgetinstance:** Remove parameter duplication ([#1993](https://github.com/googleapis/genai-toolbox/issues/1993)) ([0e269a1](https://github.com/googleapis/genai-toolbox/commit/0e269a1d125eed16a51ead27db4398e6e48cb948))
19+
* **tools:** Check for query execution error for pgxpool.Pool ([#1969](https://github.com/googleapis/genai-toolbox/issues/1969)) ([2bff138](https://github.com/googleapis/genai-toolbox/commit/2bff1384a3570ef46bc03ebebc507923af261987))
20+
21+
322
## [0.20.0](https://github.com/googleapis/genai-toolbox/compare/v0.19.1...v0.20.0) (2025-11-14)
423

524

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ To install Toolbox as a binary:
125125
>
126126
> ```sh
127127
> # see releases page for other versions
128-
> export VERSION=0.20.0
128+
> export VERSION=0.21.0
129129
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
130130
> chmod +x toolbox
131131
> ```
@@ -138,7 +138,7 @@ To install Toolbox as a binary:
138138
>
139139
> ```sh
140140
> # see releases page for other versions
141-
> export VERSION=0.20.0
141+
> export VERSION=0.21.0
142142
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
143143
> chmod +x toolbox
144144
> ```
@@ -151,7 +151,7 @@ To install Toolbox as a binary:
151151
>
152152
> ```sh
153153
> # see releases page for other versions
154-
> export VERSION=0.20.0
154+
> export VERSION=0.21.0
155155
> curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/amd64/toolbox
156156
> chmod +x toolbox
157157
> ```
@@ -164,7 +164,7 @@ To install Toolbox as a binary:
164164
>
165165
> ```powershell
166166
> # see releases page for other versions
167-
> $VERSION = "0.20.0"
167+
> $VERSION = "0.21.0"
168168
> Invoke-WebRequest -Uri "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe" -OutFile "toolbox.exe"
169169
> ```
170170
>
@@ -177,7 +177,7 @@ You can also install Toolbox as a container:
177177
178178
```sh
179179
# see releases page for other versions
180-
export VERSION=0.20.0
180+
export VERSION=0.21.0
181181
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
182182
```
183183
@@ -201,7 +201,7 @@ To install from source, ensure you have the latest version of
201201
[Go installed](https://go.dev/doc/install), and then run the following command:
202202

203203
```sh
204-
go install github.com/googleapis/genai-toolbox@v0.20.0
204+
go install github.com/googleapis/genai-toolbox@v0.21.0
205205
```
206206
<!-- {x-release-please-end} -->
207207

cmd/version.txt

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

8888
```sh
8989
# see releases page for other versions
90-
export VERSION=0.20.0
90+
export VERSION=0.21.0
9191
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/linux/amd64/toolbox
9292
chmod +x toolbox
9393
```
@@ -98,7 +98,7 @@ To install Toolbox as a binary on macOS (Apple Silicon):
9898

9999
```sh
100100
# see releases page for other versions
101-
export VERSION=0.20.0
101+
export VERSION=0.21.0
102102
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/v$VERSION/darwin/arm64/toolbox
103103
chmod +x toolbox
104104
```
@@ -109,7 +109,7 @@ To install Toolbox as a binary on macOS (Intel):
109109

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

121121
```powershell
122122
# see releases page for other versions
123-
$VERSION = "0.20.0"
123+
$VERSION = "0.21.0"
124124
Invoke-WebRequest -Uri "https://storage.googleapis.com/genai-toolbox/v$VERSION/windows/amd64/toolbox.exe" -OutFile "toolbox.exe"
125125
```
126126

@@ -132,7 +132,7 @@ You can also install Toolbox as a container:
132132

133133
```sh
134134
# see releases page for other versions
135-
export VERSION=0.20.0
135+
export VERSION=0.21.0
136136
docker pull us-central1-docker.pkg.dev/database-toolbox/toolbox/toolbox:$VERSION
137137
```
138138

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

153153
```sh
154-
go install github.com/googleapis/genai-toolbox@v0.20.0
154+
go install github.com/googleapis/genai-toolbox@v0.21.0
155155
```
156156

157157
{{% /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.20.0/$OS/toolbox
108+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.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.20.0/$OS/toolbox
16+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.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
@@ -49,19 +49,19 @@ to expose your developer assistant tools to a Looker instance:
4949

5050
{{< tabpane persist=header >}}
5151
{{< tab header="linux/amd64" lang="bash" >}}
52-
curl -O https://storage.googleapis.com/genai-toolbox/v0.20.0/linux/amd64/toolbox
52+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.0/linux/amd64/toolbox
5353
{{< /tab >}}
5454

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

5959
{{< tab header="darwin/amd64" lang="bash" >}}
60-
curl -O https://storage.googleapis.com/genai-toolbox/v0.20.0/darwin/amd64/toolbox
60+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.0/darwin/amd64/toolbox
6161
{{< /tab >}}
6262

6363
{{< tab header="windows/amd64" lang="bash" >}}
64-
curl -O https://storage.googleapis.com/genai-toolbox/v0.20.0/windows/amd64/toolbox.exe
64+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.0/windows/amd64/toolbox.exe
6565
{{< /tab >}}
6666
{{< /tabpane >}}
6767
<!-- {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.20.0/linux/amd64/toolbox
48+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.0/linux/amd64/toolbox
4949
{{< /tab >}}
5050

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

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

5959
{{< tab header="windows/amd64" lang="bash" >}}
60-
curl -O https://storage.googleapis.com/genai-toolbox/v0.20.0/windows/amd64/toolbox.exe
60+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.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.20.0/linux/amd64/toolbox
46+
curl -O https://storage.googleapis.com/genai-toolbox/v0.21.0/linux/amd64/toolbox
4747
{{< /tab >}}
4848

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

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

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

0 commit comments

Comments
 (0)