Skip to content

Commit ef60c87

Browse files
chore(main): release 0.22.0
1 parent 730ac6d commit ef60c87

File tree

23 files changed

+64
-51
lines changed

23 files changed

+64
-51
lines changed

CHANGELOG.md

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

3+
## [0.22.0](https://github.com/googleapis/genai-toolbox/compare/v0.21.0...v0.22.0) (2025-11-25)
4+
5+
6+
### Features
7+
8+
* Support alternate accessToken header name ([#1968](https://github.com/googleapis/genai-toolbox/issues/1968)) ([18017d6](https://github.com/googleapis/genai-toolbox/commit/18017d6545335a6fc1c472617101c35254d9a597))
9+
* **tools/cloudsqlpg:** Add CloudSQL PostgreSQL pre-check tool ([#1722](https://github.com/googleapis/genai-toolbox/issues/1722)) ([8752e05](https://github.com/googleapis/genai-toolbox/commit/8752e05ab6e98812d95673a6f1ff67e9a6ae48d2))
10+
11+
12+
### Bug Fixes
13+
14+
* **tools/alloydbcreateuser:** Remove duplication of project praram ([#2028](https://github.com/googleapis/genai-toolbox/issues/2028)) ([730ac6d](https://github.com/googleapis/genai-toolbox/commit/730ac6d22805fd50b4a675b74c1865f4e7689e7c))
15+
316
## [0.21.0](https://github.com/googleapis/genai-toolbox/compare/v0.20.0...v0.21.0) (2025-11-19)
417

518

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.21.0
128+
> export VERSION=0.22.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.21.0
141+
> export VERSION=0.22.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.21.0
154+
> export VERSION=0.22.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-
> set VERSION=0.21.0
167+
> set VERSION=0.22.0
168168
> curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/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.21.0
180+
export VERSION=0.22.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.21.0
204+
go install github.com/googleapis/genai-toolbox@v0.22.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.21.0
1+
0.22.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.21.0\" # x-release-please-version\n",
237+
"version = \"0.22.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.21.0
90+
export VERSION=0.22.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.21.0
101+
export VERSION=0.22.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.21.0
112+
export VERSION=0.22.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-
set VERSION=0.21.0
123+
set VERSION=0.22.0
124124
curl -o toolbox.exe "https://storage.googleapis.com/genai-toolbox/v%VERSION%/windows/amd64/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.21.0
135+
export VERSION=0.22.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.21.0
154+
go install github.com/googleapis/genai-toolbox@v0.22.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.21.0/$OS/toolbox
108+
curl -O https://storage.googleapis.com/genai-toolbox/v0.22.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.21.0/$OS/toolbox
16+
curl -O https://storage.googleapis.com/genai-toolbox/v0.22.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.21.0/linux/amd64/toolbox
52+
curl -O https://storage.googleapis.com/genai-toolbox/v0.22.0/linux/amd64/toolbox
5353
{{< /tab >}}
5454

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

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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)