Wenxin Du
8ea39ec32f
feat(sources/oracle): Add Oracle OCI and Wallet support ( #1945 )
...
Previously we used go-ora (a pure Go Oracle driver) because our release
pipeline did not support cross-compilation with CGO. Now that it's
fixed, we want to add support for Oracle OCI driver for advanced
features including digital wallet etc.
Users will be able to configure a source to use OCI by specifying a
`UseOCI: true` field. The source defaults to use the pure Go driver
otherwise.
Oracle Wallet:
- OCI users should use the `tnsAdmin` to set the wallet location
- Non-OCI users can should use the `walletLocation` field.
fix: https://github.com/googleapis/genai-toolbox/issues/1779
2025-12-18 19:02:17 +00:00
Juexin Wang
aa270b2630
feat: add the Gemini Data Analytics (GDA) integration for DB NL2SQL conversion to Toolbox ( #2181 )
...
## Description
This PR is to add the Gemini Data Analytics (GDA) integration for DB
NL2SQL conversion to Toolbox. It allows the user to convert a natural
language query to SQL statement based on their database instance. See
the doc section for details.
## PR Checklist
> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:
- [x] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md )
- [x] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose )
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
🛠️ Fixes #2180
---------
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-12-18 09:58:46 -08:00
Mend Renovate
fbd92c68ba
chore(deps): update dependency go to v1.25.5 ( #2003 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [go](https://go.dev/ )
([source](https://redirect.github.com/golang/go )) | toolchain | patch |
`1.25.3` -> `1.25.5` |
---
### Release Notes
<details>
<summary>golang/go (go)</summary>
###
[`v1.25.5`](https://redirect.github.com/golang/go/compare/go1.25.4...go1.25.5 )
###
[`v1.25.4`](https://redirect.github.com/golang/go/compare/go1.25.3...go1.25.4 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNi4xIiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-12-11 23:28:47 +00:00
Dr. Strangelove
78e015d7df
fix(looker): upgrade to latest go sdk ( #2159 )
...
## Description
Upgrade to latest version of Looker sdk with fix for expiring
credentials.
## PR Checklist
> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:
- [x] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md )
- [x] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose )
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
🛠️ Fixes #1597
2025-12-11 17:11:48 +00:00
Yuan Teoh
862868f284
feat: add allowed-origins flag ( #1984 )
...
Support `allowed-origins` flag to allow secure deployment of Toolbox.
Current Toolbox is **insecure by default**, which allows all origin
(`*`). This PR also updated docs to notify user of the new
`allowed-origins` flag in the Cloud Run, kubernetes, and docker
deployment docs.
This PR was tested manually by mocking a browser access:
1. Created a HTML file with Javascript fetch named
`malicious-client.html`:
```
<!DOCTYPE html>
<html>
<head>
<title>Malicious CORS Test</title>
</head>
<body>
<h1>Attempting to access API at http://127.0.0.1:5000/mcp </h1>
<p>Check the **Chrome Developer Console** (F12 -> Console tab) for the result.</p>
<script>
fetch('http://127.0.0.1:5000/mcp ', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
// The browser automatically adds the 'Origin' header based on where this HTML is served from (http://localhost:8000 )
},
body: JSON.stringify({
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
})
})
.then(response => {
console.log('Success (but check console for CORS enforcement details):', response);
return response.json();
})
.then(data => console.log('Data received (only if CORS passes):', data))
.catch(error => console.error('Fetch Error:', error));
</script>
</body>
</html>
```
2. Run `python3 -m http.server 8000`
3. Open `http://localhost:8000/malicious-client.html ` in browser.
4. Tried without `--allowed-origins` flag -- success.
Tried with `--allowed-origins=http://localhost:8000 ` -- success.
Tried with `--allowed-origins=http://foo.com ` -- unsuccessful.
---------
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-11-27 17:03:53 +00:00
dependabot[bot]
f721e1dd0f
chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.45.0 ( #2042 )
...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto ) from
0.43.0 to 0.45.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4e0068c009 "><code>4e0068c</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="e79546e28b "><code>e79546e</code></a>
ssh: curb GSSAPI DoS risk by limiting number of specified OIDs</li>
<li><a
href="f91f7a7c31 "><code>f91f7a7</code></a>
ssh/agent: prevent panic on malformed constraint</li>
<li><a
href="2df4153a03 "><code>2df4153</code></a>
acme/autocert: let automatic renewal work with short lifetime certs</li>
<li><a
href="bcf6a849ef "><code>bcf6a84</code></a>
acme: pass context to request</li>
<li><a
href="b4f2b62076 "><code>b4f2b62</code></a>
ssh: fix error message on unsupported cipher</li>
<li><a
href="79ec3a51fc "><code>79ec3a5</code></a>
ssh: allow to bind to a hostname in remote forwarding</li>
<li><a
href="122a78f140 "><code>122a78f</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="c0531f9c34 "><code>c0531f9</code></a>
all: eliminate vet diagnostics</li>
<li><a
href="0997000b45 "><code>0997000</code></a>
all: fix some comments</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/crypto/compare/v0.43.0...v0.45.0 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/googleapis/genai-toolbox/network/alerts ).
</details>
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-11-25 15:11:50 -08:00
Mend Renovate
7285362e24
chore(deps): update module github.com/googlecloudplatform/opentelemetry-operations-go/exporter/trace to v1.30.0 ( #1953 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-go )
| `v1.29.0` -> `v1.30.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-11-25 14:51:59 -08:00
Mend Renovate
dabfad1e1c
chore(deps): update dependency go to v1.25.3 ( #1796 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [go](https://go.dev/ )
([source](https://redirect.github.com/golang/go )) | toolchain | patch |
`1.25.2` -> `1.25.3` |
---
### Release Notes
<details>
<summary>golang/go (go)</summary>
###
[`v1.25.3`](https://redirect.github.com/golang/go/compare/go1.25.2...go1.25.3 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-11-20 16:25:34 +00:00
Averi Kitsch
58d31a9f51
chore(deps): update module github.com/gocql/gocql to v2 ( #1967 )
...
## Description
> Should include a concise description of the changes (bug or feature),
it's
> impact, along with a summary of the solution
## PR Checklist
> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:
- [ ] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md )
- [ ] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose )
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
- [ ] Make sure to add `!` if this involve a breaking change
🛠️ Fixes #<issue_number_goes_here>
---------
2025-11-19 18:19:08 -08:00
Mend Renovate
8487c8d4cf
chore(deps): update module google.golang.org/api to v0.256.0 ( #1647 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[google.golang.org/api](https://redirect.github.com/googleapis/google-api-go-client )
| `v0.253.0` -> `v0.256.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>googleapis/google-api-go-client
(google.golang.org/api)</summary>
###
[`v0.256.0`](https://redirect.github.com/googleapis/google-api-go-client/releases/tag/v0.256.0 )
[Compare
Source](https://redirect.github.com/googleapis/google-api-go-client/compare/v0.255.0...v0.256.0 )
##### Features
- **all:** Auto-regenerate discovery clients
([#​3366](https://redirect.github.com/googleapis/google-api-go-client/issues/3366 ))
([997c613](997c613e70 ))
- **all:** Auto-regenerate discovery clients
([#​3368](https://redirect.github.com/googleapis/google-api-go-client/issues/3368 ))
([57e958d](57e958d220 ))
- **all:** Auto-regenerate discovery clients
([#​3369](https://redirect.github.com/googleapis/google-api-go-client/issues/3369 ))
([5d436f7 ](5d436f7172 ))
- **all:** Auto-regenerate discovery clients
([#​3370](https://redirect.github.com/googleapis/google-api-go-client/issues/3370 ))
([140a610](140a610ace ))
- **all:** Auto-regenerate discovery clients
([#​3371](https://redirect.github.com/googleapis/google-api-go-client/issues/3371 ))
([39a2bc0](39a2bc07bf ))
###
[`v0.255.0`](https://redirect.github.com/googleapis/google-api-go-client/releases/tag/v0.255.0 )
[Compare
Source](https://redirect.github.com/googleapis/google-api-go-client/compare/v0.254.0...v0.255.0 )
##### Features
- **all:** Auto-regenerate discovery clients
([#​3357](https://redirect.github.com/googleapis/google-api-go-client/issues/3357 ))
([430bc46](430bc4639d ))
- **all:** Auto-regenerate discovery clients
([#​3359](https://redirect.github.com/googleapis/google-api-go-client/issues/3359 ))
([0bcacee](0bcacee13f ))
- **all:** Auto-regenerate discovery clients
([#​3360](https://redirect.github.com/googleapis/google-api-go-client/issues/3360 ))
([c9cdcad](c9cdcadebd ))
- **all:** Auto-regenerate discovery clients
([#​3361](https://redirect.github.com/googleapis/google-api-go-client/issues/3361 ))
([acdddcd](acdddcdc89 ))
- **all:** Auto-regenerate discovery clients
([#​3362](https://redirect.github.com/googleapis/google-api-go-client/issues/3362 ))
([040f8aa](040f8aaade ))
- **all:** Auto-regenerate discovery clients
([#​3364](https://redirect.github.com/googleapis/google-api-go-client/issues/3364 ))
([8f13004](8f13004c10 ))
- **all:** Auto-regenerate discovery clients
([#​3365](https://redirect.github.com/googleapis/google-api-go-client/issues/3365 ))
([4ea8be0](4ea8be06ce ))
###
[`v0.254.0`](https://redirect.github.com/googleapis/google-api-go-client/releases/tag/v0.254.0 )
[Compare
Source](https://redirect.github.com/googleapis/google-api-go-client/compare/v0.253.0...v0.254.0 )
##### Features
- **all:** Auto-regenerate discovery clients
([#​3348](https://redirect.github.com/googleapis/google-api-go-client/issues/3348 ))
([8e2becc](8e2becc10c ))
- **all:** Auto-regenerate discovery clients
([#​3350](https://redirect.github.com/googleapis/google-api-go-client/issues/3350 ))
([9e07cd0](9e07cd04a1 ))
- **all:** Auto-regenerate discovery clients
([#​3351](https://redirect.github.com/googleapis/google-api-go-client/issues/3351 ))
([470f33c](470f33c232 ))
- **all:** Auto-regenerate discovery clients
([#​3352](https://redirect.github.com/googleapis/google-api-go-client/issues/3352 ))
([cff2ae6](cff2ae692e ))
- **all:** Auto-regenerate discovery clients
([#​3354](https://redirect.github.com/googleapis/google-api-go-client/issues/3354 ))
([6b3a07f](6b3a07f3cd ))
- **all:** Auto-regenerate discovery clients
([#​3355](https://redirect.github.com/googleapis/google-api-go-client/issues/3355 ))
([4c613b6](4c613b616c ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQyLjEzLjUiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-11-19 03:53:52 +00:00
Mend Renovate
e5e9fb7f94
chore(deps): update module cloud.google.com/go/dataplex to v1.28.0 ( #1948 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/dataplex](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.27.1` -> `v1.28.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-11-14 19:58:38 +00:00
Yuan Teoh
62359deae5
chore(deps): update elasticsearch dependencies ( #1955 )
...
Update elastic search dependencies
2025-11-14 18:20:28 +00:00
Yuan Teoh
3ff8f533cf
chore(deps): update otel dependencies ( #1954 )
...
Update OTEL semconv version.
2025-11-14 10:04:08 -08:00
Mend Renovate
c451015509
chore(deps): update module github.com/trinodb/trino-go-client to v0.330.0 ( #1940 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/trinodb/trino-go-client](https://redirect.github.com/trinodb/trino-go-client )
| `v0.329.0` -> `v0.330.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>trinodb/trino-go-client
(github.com/trinodb/trino-go-client)</summary>
###
[`v0.330.0`](https://redirect.github.com/trinodb/trino-go-client/releases/tag/v0.330.0 )
[Compare
Source](https://redirect.github.com/trinodb/trino-go-client/compare/v0.329.0...v0.330.0 )
<!-- Release notes generated using configuration in .github/release.yml
at v0.330.0 -->
#### What's Changed
##### Other changes
- Fix tests for Trino>=477 by
[@​nineinchnick](https://redirect.github.com/nineinchnick ) in
[#​161](https://redirect.github.com/trinodb/trino-go-client/pull/161 )
- Add support to disable explicitPrepare by using Config.FormatDSN by
[@​Flgado](https://redirect.github.com/Flgado ) in
[#​160](https://redirect.github.com/trinodb/trino-go-client/pull/160 )
- Add Client Tags Support by
[@​Flgado](https://redirect.github.com/Flgado ) in
[#​155](https://redirect.github.com/trinodb/trino-go-client/pull/155 )
**Full Changelog**:
<https://github.com/trinodb/trino-go-client/compare/v0.329.0...v0.330.0 >
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-11-13 11:45:18 -08:00
Mend Renovate
1e9c4762a5
chore(deps): update module github.com/valkey-io/valkey-go to v1.0.68 ( #1920 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/valkey-io/valkey-go](https://redirect.github.com/valkey-io/valkey-go )
| `v1.0.67` -> `v1.0.68` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>valkey-io/valkey-go (github.com/valkey-io/valkey-go)</summary>
###
[`v1.0.68`](https://redirect.github.com/valkey-io/valkey-go/releases/tag/v1.0.68 ):
1.0.68
[Compare
Source](https://redirect.github.com/valkey-io/valkey-go/compare/v1.0.67...v1.0.68 )
### Changes
- feat: add new DELEX, DIGEST, MSETEX commands; extend SET and
XREADGROUP
- feat: FIPS-compliant SHA-1 loading option for Lua scripts without
performance penalty
- feat: add EPSILON option to VSIM
#### Contributors
We'd like to thank all the contributors who worked on this release!
[@​FZambia](https://redirect.github.com/FZambia ) and
[@​rueian](https://redirect.github.com/rueian )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-11-12 21:03:58 +00:00
Mend Renovate
84e826a93e
chore(deps): update module golang.org/x/oauth2 to v0.33.0 ( #1909 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| golang.org/x/oauth2 | `v0.32.0` -> `v0.33.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-11-10 12:23:34 -08:00
Laurent Saint-Félix
5367285e91
feat(sources/elasticsearch): add Elasticsearch source and tools ( #1109 )
...
Add support for Elasticsearch with the following tools:
* search
* esql
* get_mappings
* list_indices
This PR fixes #859
---------
Co-authored-by: duwenxin <duwenxin@google.com >
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-11-05 19:33:37 -05:00
Dave Borowitz
2881683226
feat(serverless-spark): add cancel-batch tool
2025-11-05 11:13:35 -08:00
Mend Renovate
bfa1fff494
chore(deps): update module modernc.org/sqlite to v1.40.0 ( #1839 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite ) | `v1.39.1` ->
`v1.40.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>cznic/sqlite (modernc.org/sqlite)</summary>
###
[`v1.40.0`](https://gitlab.com/cznic/sqlite/compare/v1.39.1...v1.40.0 )
[Compare
Source](https://gitlab.com/cznic/sqlite/compare/v1.39.1...v1.40.0 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-11-03 16:05:37 -08:00
Mend Renovate
0ed998bfed
chore(deps): update module cloud.google.com/go/bigquery to v1.72.0 ( #1809 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/bigquery](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.71.0` -> `v1.72.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-10-29 21:11:09 -07:00
Mend Renovate
57b49358b9
chore(deps): update google.golang.org/genproto digest to 3a174f9 ( #1803 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto](https://redirect.github.com/googleapis/go-genproto )
| require | digest | `49b9836` -> `3a174f9` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-10-29 20:08:54 -07:00
Mend Renovate
4797751819
chore(deps): update module github.com/looker-open-source/sdk-codegen/go to v0.25.18 ( #1801 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/looker-open-source/sdk-codegen/go](https://redirect.github.com/looker-open-source/sdk-codegen )
| `v0.25.16` -> `v0.25.18` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
Co-authored-by: Dr. Strangelove <drstrangelove@google.com >
2025-10-29 22:40:52 +00:00
Dave Borowitz
7ad10720b4
feat(serverless-spark): Add get_batch tool
2025-10-28 13:42:02 -07:00
Mend Renovate
b3edf570ce
chore(deps): update module cloud.google.com/go/spanner to v1.86.1 ( #1773 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/spanner](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.86.0` -> `v1.86.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-28 16:41:31 +00:00
Mend Renovate
e0adc8f48b
chore(deps): update google.golang.org/genproto digest to 49b9836 ( #1622 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto](https://redirect.github.com/googleapis/go-genproto )
| require | digest | `57b25ae` -> `49b9836` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-28 16:06:05 +00:00
Mend Renovate
19767c05ba
chore(deps): update dependency go to v1.25.2 ( #1649 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [go](https://go.dev/ )
([source](https://redirect.github.com/golang/go )) | toolchain | patch |
`1.25.1` -> `1.25.2` |
---
### Release Notes
<details>
<summary>golang/go (go)</summary>
###
[`v1.25.2`](https://redirect.github.com/golang/go/compare/go1.25.1...go1.25.2 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-27 20:54:16 +00:00
Mend Renovate
cffb0837a1
chore(deps): update module github.com/valkey-io/valkey-go to v1.0.67 ( #1702 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/valkey-io/valkey-go](https://redirect.github.com/valkey-io/valkey-go )
| `v1.0.66` -> `v1.0.67` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>valkey-io/valkey-go (github.com/valkey-io/valkey-go)</summary>
###
[`v1.0.67`](https://redirect.github.com/valkey-io/valkey-go/releases/tag/v1.0.67 ):
1.0.67
[Compare
Source](https://redirect.github.com/valkey-io/valkey-go/compare/v1.0.66...v1.0.67 )
### Changes
- feat: support new filters in Valkey 8.1/9.0 `CLIENT LIST` and `Client
KILL` commands.
- feat: support Valkey `CLIENT CAPA redirect` for standalone clients
with `StandaloneOption.EnableRedirect`.
- fix: don't send `READONLY` for standalone clients.
- docs: improve markdown formatting and update documentation links,
configurations.
#### Contributors
We'd like to thank all the contributors who worked on this release!
[@​AvinashAbbigeri](https://redirect.github.com/AvinashAbbigeri ),
[@​SoulPancake](https://redirect.github.com/SoulPancake ),
[@​appleboy](https://redirect.github.com/appleboy ),
[@​justinmayhew](https://redirect.github.com/justinmayhew ) and
[@​rueian](https://redirect.github.com/rueian )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-24 20:00:24 +00:00
Dave Borowitz
816dbce268
feat(serverless-spark): Add serverless-spark source with list_batches tool
...
Built as a thin wrapper over the official Google Cloud Dataproc Go
client library, with support for filtering and pagination.
2025-10-23 20:40:52 -07:00
Mend Renovate
eb04e0d595
chore(deps): update module github.com/redis/go-redis/v9 to v9.16.0 ( #1778 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/redis/go-redis/v9](https://redirect.github.com/redis/go-redis )
| `v9.14.1` -> `v9.16.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>redis/go-redis (github.com/redis/go-redis/v9)</summary>
###
[`v9.16.0`](https://redirect.github.com/redis/go-redis/releases/tag/v9.16.0 ):
9.16.0
[Compare
Source](https://redirect.github.com/redis/go-redis/compare/v9.15.1...v9.16.0 )
#### 🚀 Highlights
##### Maintenance Notifications Support
This release introduces comprehensive support for Redis maintenance
notifications, enabling applications to handle server maintenance events
gracefully. The new `maintnotifications` package provides:
- **RESP3 Push Notifications**: Full support for Redis RESP3 protocol
push notifications
- **Connection Handoff**: Automatic connection migration during server
maintenance with configurable retry policies and circuit breakers
- **Graceful Degradation**: Configurable timeout relaxation during
maintenance windows to prevent false failures
- **Event-Driven Architecture**: Background workers with on-demand
scaling for efficient handoff processing
For detailed usage examples and configuration options, see the
[maintenance notifications
documentation](https://redirect.github.com/redis/go-redis/tree/master/maintnotifications ).
#### ✨ New Features
- **Trace Filtering**: Add support for filtering traces for specific
commands, including pipeline operations and dial operations
([#​3519](https://redirect.github.com/redis/go-redis/pull/3519 ),
[#​3550](https://redirect.github.com/redis/go-redis/pull/3550 ))
- New `TraceCmdFilter` option to selectively trace commands
- Reduces overhead by excluding high-frequency or low-value commands
from traces
#### 🐛 Bug Fixes
- **Pipeline Error Handling**: Fix issue where pipeline repeatedly sets
the same error
([#​3525](https://redirect.github.com/redis/go-redis/pull/3525 ))
- **Connection Pool**: Ensure re-authentication does not interfere with
connection handoff operations
([#​3547](https://redirect.github.com/redis/go-redis/pull/3547 ))
#### 🔧 Improvements
- **Hash Commands**: Update hash command implementations
([#​3523](https://redirect.github.com/redis/go-redis/pull/3523 ))
- **OpenTelemetry**: Use `metric.WithAttributeSet` to avoid unnecessary
attribute copying in redisotel
([#​3552](https://redirect.github.com/redis/go-redis/pull/3552 ))
#### 📚 Documentation
- **Cluster Client**: Add explanation for why `MaxRetries` is disabled
for `ClusterClient`
([#​3551](https://redirect.github.com/redis/go-redis/pull/3551 ))
#### 🧪 Testing & Infrastructure
- **E2E Testing**: Upgrade E2E testing framework with improved
reliability and coverage
([#​3541](https://redirect.github.com/redis/go-redis/pull/3541 ))
- **Release Process**: Improved resiliency of the release process
([#​3530](https://redirect.github.com/redis/go-redis/pull/3530 ))
#### 📦 Dependencies
- Bump `rojopolis/spellcheck-github-actions` from 0.51.0 to 0.52.0
([#​3520](https://redirect.github.com/redis/go-redis/pull/3520 ))
- Bump `github/codeql-action` from 3 to 4
([#​3544](https://redirect.github.com/redis/go-redis/pull/3544 ))
#### 👥 Contributors
We'd like to thank all the contributors who worked on this release!
[@​ndyakov](https://redirect.github.com/ndyakov ),
[@​htemelski-redis](https://redirect.github.com/htemelski-redis ),
[@​Sovietaced](https://redirect.github.com/Sovietaced ),
[@​Udhayarajan](https://redirect.github.com/Udhayarajan ),
[@​boekkooi-impossiblecloud](https://redirect.github.com/boekkooi-impossiblecloud ),
[@​Pika-Gopher](https://redirect.github.com/Pika-Gopher ),
[@​cxljs](https://redirect.github.com/cxljs ),
[@​huiyifyj](https://redirect.github.com/huiyifyj ),
[@​omid-h70](https://redirect.github.com/omid-h70 )
***
**Full Changelog**:
<https://github.com/redis/go-redis/compare/v9.14.0...v9.16.0 >
###
[`v9.15.1`](https://redirect.github.com/redis/go-redis/releases/tag/v9.15.1 ):
Retract v9.15.0 and v9.15.1
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-10-23 14:52:05 -07:00
Mend Renovate
2b2bb36771
chore(deps): update module golang.org/x/oauth2 to v0.32.0 ( #1657 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| golang.org/x/oauth2 | `v0.31.0` -> `v0.32.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-22 12:17:56 -07:00
Mend Renovate
5010a69a0e
chore(deps): update module cloud.google.com/go/firestore to v1.20.0 ( #1740 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/firestore](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.19.0` -> `v1.20.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-10-20 21:25:18 -07:00
Mend Renovate
9b95dd9cbc
chore(deps): update module github.com/redis/go-redis/v9 to v9.14.1 ( #1736 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/redis/go-redis/v9](https://redirect.github.com/redis/go-redis )
| `v9.14.0` -> `v9.14.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>redis/go-redis (github.com/redis/go-redis/v9)</summary>
###
[`v9.14.1`](https://redirect.github.com/redis/go-redis/releases/tag/v9.14.1 ):
9.14.1
[Compare
Source](https://redirect.github.com/redis/go-redis/compare/v9.14.0...v9.14.1 )
#### Changes
- fix(otel): Add support for filtering traces for certain commands
([#​3519](https://redirect.github.com/redis/go-redis/pull/3519 ))
- fix(pool): remove conn from idleConns if present
([#​3546](https://redirect.github.com/redis/go-redis/pull/3546 ))
#### Contributors
We'd like to thank all the contributors who worked on this release!
[@​Sovietaced](https://redirect.github.com/Sovietaced ),
[@​ndyakov](https://redirect.github.com/ndyakov )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-10-20 20:52:35 -07:00
Mend Renovate
40e8192ffa
chore(deps): update module modernc.org/sqlite to v1.39.1 ( #1700 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite ) | `v1.39.0` ->
`v1.39.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>cznic/sqlite (modernc.org/sqlite)</summary>
###
[`v1.39.1`](https://gitlab.com/cznic/sqlite/compare/v1.39.0...v1.39.1 )
[Compare
Source](https://gitlab.com/cznic/sqlite/compare/v1.39.0...v1.39.1 )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-10-20 20:30:18 -07:00
Wenxin Du
8faf37667e
feat(oracle): Switch Oracle driver from godror to go-ora ( #1685 )
...
This avoids CGO cross compilation.
- [godror](https://github.com/godror/godror ) - depends on Oracle Client
Libraries & [requires C
compiler](https://github.com/godror/godror?tab=readme-ov-file#build-time-requirements )
- [ go-ora](https://github.com/sijms/go-ora ) - pure Go driver
2025-10-10 16:00:15 -04:00
Vijay Balebail
3a19a50ff2
feat(sources/oracle): add Oracle Source and Tool ( #1456 )
...
## Description
---
> Should include a concise description of the changes (bug or feature),
it's
> impact, along with a summary of the solution
## PR Checklist
---
> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:
- [ ] Make sure you reviewed
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md )
- [ ] Make sure to open an issue as a
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose )
before writing your code! That way we can discuss the change, evaluate
designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
- [ ] Make sure to add `!` if this involve a breaking change
🛠️ Fixes https://github.com/googleapis/genai-toolbox/issues/488
---------
Co-authored-by: duwenxin <duwenxin@google.com >
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-09 21:29:01 -04:00
Mend Renovate
299bf5ed7b
chore(deps): update module github.com/looker-open-source/sdk-codegen/go to v0.25.16 ( #1475 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/looker-open-source/sdk-codegen/go](https://redirect.github.com/looker-open-source/sdk-codegen )
| `v0.25.11` -> `v0.25.16` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjE0My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Dr. Strangelove <drstrangelove@google.com >
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
2025-10-09 22:30:48 +00:00
Mend Renovate
2c4d73b77b
chore(deps): update module cloud.google.com/go/firestore to v1.19.0 ( #1639 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/firestore](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.18.0` -> `v1.19.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-10-07 21:41:19 +00:00
Mend Renovate
3efce3d2b4
chore(deps): update module github.com/go-playground/validator/v10 to v10.28.0 ( #1630 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/go-playground/validator/v10](https://redirect.github.com/go-playground/validator )
| `v10.27.0` -> `v10.28.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>go-playground/validator
(github.com/go-playground/validator/v10)</summary>
###
[`v10.28.0`](https://redirect.github.com/go-playground/validator/releases/tag/v10.28.0 ):
Release 10.28.0
[Compare
Source](https://redirect.github.com/go-playground/validator/compare/v10.27.0...v10.28.0 )
#### What's Changed
- Update workflow\.yml to support 2 most recent major versions by
[@​nodivbyzero](https://redirect.github.com/nodivbyzero ) in
[#​1417](https://redirect.github.com/go-playground/validator/pull/1417 )
- Bump actions/checkout from 4 to 5 by
[@​dependabot](https://redirect.github.com/dependabot )\[bot] in
[#​1456](https://redirect.github.com/go-playground/validator/pull/1456 )
- Go 1.25 support by
[@​nodivbyzero](https://redirect.github.com/nodivbyzero ) in
[#​1459](https://redirect.github.com/go-playground/validator/pull/1459 )
- Bump github.com/gabriel-vasile/mimetype from 1.4.8 to 1.4.10 by
[@​dependabot](https://redirect.github.com/dependabot )\[bot] in
[#​1463](https://redirect.github.com/go-playground/validator/pull/1463 )
- Bump golang.org/x/text from 0.22.0 to 0.29.0 by
[@​dependabot](https://redirect.github.com/dependabot )\[bot] in
[#​1464](https://redirect.github.com/go-playground/validator/pull/1464 )
- Bump actions/setup-go from 5 to 6 by
[@​dependabot](https://redirect.github.com/dependabot )\[bot] in
[#​1465](https://redirect.github.com/go-playground/validator/pull/1465 )
- Bump golang.org/x/crypto from 0.33.0 to 0.42.0 by
[@​dependabot](https://redirect.github.com/dependabot )\[bot] in
[#​1467](https://redirect.github.com/go-playground/validator/pull/1467 )
- fix: should panic when define duplicate field param in `required_if`
by [@​duyquang6](https://redirect.github.com/duyquang6 ) in
[#​1468](https://redirect.github.com/go-playground/validator/pull/1468 )
- Fixed missing keys from returned errors in map validation by
[@​gelozr](https://redirect.github.com/gelozr ) in
[#​1284](https://redirect.github.com/go-playground/validator/pull/1284 )
- Added https\_url tag by
[@​ahmedkamalio](https://redirect.github.com/ahmedkamalio ) in
[#​1461](https://redirect.github.com/go-playground/validator/pull/1461 )
- docs: add description for 'port' validator by
[@​nodivbyzero](https://redirect.github.com/nodivbyzero ) in
[#​1435](https://redirect.github.com/go-playground/validator/pull/1435 )
- Add alphaspace validator by
[@​takaaa220](https://redirect.github.com/takaaa220 ) in
[#​1343](https://redirect.github.com/go-playground/validator/pull/1343 )
#### New Contributors
- [@​duyquang6](https://redirect.github.com/duyquang6 ) made their
first contribution in
[#​1468](https://redirect.github.com/go-playground/validator/pull/1468 )
- [@​gelozr](https://redirect.github.com/gelozr ) made their first
contribution in
[#​1284](https://redirect.github.com/go-playground/validator/pull/1284 )
- [@​ahmedkamalio](https://redirect.github.com/ahmedkamalio ) made
their first contribution in
[#​1461](https://redirect.github.com/go-playground/validator/pull/1461 )
- [@​takaaa220](https://redirect.github.com/takaaa220 ) made their
first contribution in
[#​1343](https://redirect.github.com/go-playground/validator/pull/1343 )
**Full Changelog**:
<https://github.com/go-playground/validator/compare/v10.27.0...v10.28.0 >
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-10-06 23:06:30 +00:00
Mend Renovate
5ff0696706
chore(deps): update module github.com/neo4j/neo4j-go-driver/v5 to v5.28.4 ( #1634 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/neo4j/neo4j-go-driver/v5](https://redirect.github.com/neo4j/neo4j-go-driver )
| `v5.28.3` -> `v5.28.4` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>neo4j/neo4j-go-driver
(github.com/neo4j/neo4j-go-driver/v5)</summary>
###
[`v5.28.4`](https://redirect.github.com/neo4j/neo4j-go-driver/releases/tag/v5.28.4 )
[Compare
Source](https://redirect.github.com/neo4j/neo4j-go-driver/compare/v5.28.3...v5.28.4 )
See <https://github.com/neo4j/neo4j-go-driver/wiki/5.x-changelog > for
more information.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-10-06 19:42:30 +00:00
Mend Renovate
fca879ad5b
chore(deps): update module github.com/valkey-io/valkey-go to v1.0.66 ( #1525 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/valkey-io/valkey-go](https://redirect.github.com/valkey-io/valkey-go )
| `v1.0.64` -> `v1.0.66` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>valkey-io/valkey-go (github.com/valkey-io/valkey-go)</summary>
###
[`v1.0.66`](https://redirect.github.com/valkey-io/valkey-go/releases/tag/v1.0.66 ):
1.0.66
[Compare
Source](https://redirect.github.com/valkey-io/valkey-go/compare/v1.0.65...v1.0.66 )
##### Changes
- fix panics that happen on `MOVED` redirections for commands without a
slot
([#​80](https://redirect.github.com/valkey-io/valkey-go/issues/80 ))
##### Contributors
We'd like to thank all the contributors who worked on this release!
[@​rueian](https://redirect.github.com/rueian ) and
[@​skif48](https://redirect.github.com/skif48 )
###
[`v1.0.65`](https://redirect.github.com/valkey-io/valkey-go/releases/tag/v1.0.65 ):
1.0.65
[Compare
Source](https://redirect.github.com/valkey-io/valkey-go/compare/v1.0.64...v1.0.65 )
### Changes
- feat: new `ReadNodeSelector` option allowing more fine-grained control
over load balancing among nodes and deprecating the old
`ReplicaSelector`.
- feat: new `BYPOLYGON` option in `GEOSEARCH` command.
- feat: new `SAFE` option in `SHUTDOWN` command.
- feat: new `DELIFEQ` command.
- fix: correctly handle early exit in `Scanner` iterators.
### Experimental
- feat: new experimental pipelining queue implementation, which is
context aware and can be enabled by setting the `RUEIDIS_QUEUE_TYPE`
environment variable to `flowbuffer`.
#### Contributors
We'd like to thank all the contributors who worked on this release!
[@​Krish8955](https://redirect.github.com/Krish8955 ),
[@​ash2k](https://redirect.github.com/ash2k ),
[@​ayush-sarda](https://redirect.github.com/ayush-sarda ),
[@​bbangert](https://redirect.github.com/bbangert ),
[@​proost](https://redirect.github.com/proost ),
[@​rueian](https://redirect.github.com/rueian ) and
[@​wandering-salesman](https://redirect.github.com/wandering-salesman )
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-10-02 16:12:16 -07:00
Mend Renovate
af72637009
chore(deps): update module google.golang.org/api to v0.251.0 ( #1563 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[google.golang.org/api](https://redirect.github.com/googleapis/google-api-go-client )
| `v0.250.0` -> `v0.251.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>googleapis/google-api-go-client
(google.golang.org/api)</summary>
###
[`v0.251.0`](https://redirect.github.com/googleapis/google-api-go-client/releases/tag/v0.251.0 )
[Compare
Source](https://redirect.github.com/googleapis/google-api-go-client/compare/v0.250.0...v0.251.0 )
##### Features
- **all:** Auto-regenerate discovery clients
([#​3319](https://redirect.github.com/googleapis/google-api-go-client/issues/3319 ))
([7ef0f9b](7ef0f9bc31 ))
- **all:** Auto-regenerate discovery clients
([#​3321](https://redirect.github.com/googleapis/google-api-go-client/issues/3321 ))
([2cb519b](2cb519b1a2 ))
- **all:** Auto-regenerate discovery clients
([#​3322](https://redirect.github.com/googleapis/google-api-go-client/issues/3322 ))
([3e4bc60](3e4bc60626 ))
- **all:** Auto-regenerate discovery clients
([#​3324](https://redirect.github.com/googleapis/google-api-go-client/issues/3324 ))
([b41b5a5](b41b5a5c9e ))
- **all:** Auto-regenerate discovery clients
([#​3325](https://redirect.github.com/googleapis/google-api-go-client/issues/3325 ))
([8c5ef06](8c5ef06788 ))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-10-02 21:17:46 +00:00
Dr. Strangelove
2d5a93e312
feat(tools/looker): Enable access to the Conversational Analytics API for Looker ( #1596 )
...
## Description
This enables the Conversational Analytics API for Looker. The prebuilt
config is separate since it is not a good
idea to use the Looker prebuilt config with CA. Agents get confused as
to whether they should query the data directly
or use the CA tool.
2025-10-02 17:45:41 +00:00
Mend Renovate
4dff01f98a
chore(deps): update module github.com/spf13/cobra to v1.10.1 ( #1303 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [github.com/spf13/cobra](https://redirect.github.com/spf13/cobra ) |
`v1.9.1` -> `v1.10.1` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>spf13/cobra (github.com/spf13/cobra)</summary>
###
[`v1.10.1`](https://redirect.github.com/spf13/cobra/releases/tag/v1.10.1 )
[Compare
Source](https://redirect.github.com/spf13/cobra/compare/v1.10.0...v1.10.1 )
##### 🐛 Fix
- chore: upgrade pflags v1.0.9 by
[@​jpmcb](https://redirect.github.com/jpmcb ) in
[#​2305](https://redirect.github.com/spf13/cobra/pull/2305 )
v1.0.9 of pflags brought back `ParseErrorsWhitelist` and marked it as
deprecated
**Full Changelog**:
<https://github.com/spf13/cobra/compare/v1.10.0...v1.10.1 >
###
[`v1.10.0`](https://redirect.github.com/spf13/cobra/releases/tag/v1.10.0 )
[Compare
Source](https://redirect.github.com/spf13/cobra/compare/v1.9.1...v1.10.0 )
#### What's Changed
##### 🚨 Attention!
- Bump pflag to 1.0.8 by
[@​tomasaschan](https://redirect.github.com/tomasaschan ) in
[#​2303](https://redirect.github.com/spf13/cobra/pull/2303 )
This version of `pflag` carried a breaking change: it renamed
`ParseErrorsWhitelist` to `ParseErrorsAllowlist` which can break builds
if both `pflag` and `cobra` are dependencies in your project.
- If you use both `pflag and `cobra`, upgrade `pflag`to 1.0.8
and`cobra`to`1.10.0\`
- ***or*** use the newer, fixed version of `pflag` v1.0.9 which keeps
the deprecated `ParseErrorsWhitelist`
More details can be found here: [#​2303
(comment)](https://redirect.github.com/spf13/cobra/pull/2303#issuecomment-3242333515 )
##### ✨ Features
- Flow context to command in SetHelpFunc by
[@​Frassle](https://redirect.github.com/Frassle ) in
[#​2241](https://redirect.github.com/spf13/cobra/pull/2241 )
- The default ShellCompDirective can be customized for a command and its
subcommands by [@​albers](https://redirect.github.com/albers ) in
[#​2238](https://redirect.github.com/spf13/cobra/pull/2238 )
##### 🐛 Fix
- Upgrade golangci-lint to v2, address findings by
[@​scop](https://redirect.github.com/scop ) in
[#​2279](https://redirect.github.com/spf13/cobra/pull/2279 )
##### 🪠 Testing
- Test with Go 1.24 by
[@​harryzcy](https://redirect.github.com/harryzcy ) in
[#​2236](https://redirect.github.com/spf13/cobra/pull/2236 )
- chore: Rm GitHub Action PR size labeler by
[@​jpmcb](https://redirect.github.com/jpmcb ) in
[#​2256](https://redirect.github.com/spf13/cobra/pull/2256 )
##### 📝 Docs
- Remove traling curlybrace by
[@​yedayak](https://redirect.github.com/yedayak ) in
[#​2237](https://redirect.github.com/spf13/cobra/pull/2237 )
- Update command.go by
[@​styee](https://redirect.github.com/styee ) in
[#​2248](https://redirect.github.com/spf13/cobra/pull/2248 )
- feat: Add security policy by
[@​jpmcb](https://redirect.github.com/jpmcb ) in
[#​2253](https://redirect.github.com/spf13/cobra/pull/2253 )
- Update Readme (Warp) by
[@​ericdachen](https://redirect.github.com/ericdachen ) in
[#​2267](https://redirect.github.com/spf13/cobra/pull/2267 )
- Add Periscope to the list of projects using Cobra by
[@​anishathalye](https://redirect.github.com/anishathalye ) in
[#​2299](https://redirect.github.com/spf13/cobra/pull/2299 )
#### New Contributors
- [@​harryzcy](https://redirect.github.com/harryzcy ) made their
first contribution in
[#​2236](https://redirect.github.com/spf13/cobra/pull/2236 )
- [@​yedayak](https://redirect.github.com/yedayak ) made their
first contribution in
[#​2237](https://redirect.github.com/spf13/cobra/pull/2237 )
- [@​Frassle](https://redirect.github.com/Frassle ) made their
first contribution in
[#​2241](https://redirect.github.com/spf13/cobra/pull/2241 )
- [@​styee](https://redirect.github.com/styee ) made their first
contribution in
[#​2248](https://redirect.github.com/spf13/cobra/pull/2248 )
- [@​ericdachen](https://redirect.github.com/ericdachen ) made
their first contribution in
[#​2267](https://redirect.github.com/spf13/cobra/pull/2267 )
- [@​albers](https://redirect.github.com/albers ) made their first
contribution in
[#​2238](https://redirect.github.com/spf13/cobra/pull/2238 )
- [@​anishathalye](https://redirect.github.com/anishathalye ) made
their first contribution in
[#​2299](https://redirect.github.com/spf13/cobra/pull/2299 )
- [@​tomasaschan](https://redirect.github.com/tomasaschan ) made
their first contribution in
[#​2303](https://redirect.github.com/spf13/cobra/pull/2303 )
**Full Changelog**:
<https://github.com/spf13/cobra/compare/v1.9.1...v1.9.2 >
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuMTMwLjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-10-01 12:58:29 -07:00
Mend Renovate
73a96b1b63
chore(deps): update module cloud.google.com/go/spanner to v1.86.0 ( #1587 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/spanner](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.85.1` -> `v1.86.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-09-30 14:04:14 -07:00
Mend Renovate
3553bf0ccf
chore(deps): update google.golang.org/genproto digest to 57b25ae ( #1599 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto](https://redirect.github.com/googleapis/go-genproto )
| require | digest | `9219d12` -> `57b25ae` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Yuan Teoh <45984206+Yuan325@users.noreply.github.com >
2025-09-30 13:52:05 -07:00
Mend Renovate
d64b4812c3
chore(deps): update module cloud.google.com/go/bigquery to v1.71.0 ( #1604 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/bigquery](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.70.0` -> `v1.71.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-09-30 19:31:43 +00:00
Mend Renovate
a3bd2e9927
chore(deps): update google.golang.org/genproto digest to 9219d12 ( #1375 )
...
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto](https://redirect.github.com/googleapis/go-genproto )
| require | digest | `ef028d9` -> `9219d12` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: Averi Kitsch <akitsch@google.com >
2025-09-25 18:56:54 +00:00
Pranava B
6e420534ee
feat(cassandra): add Cassandra Source and Tool ( #1012 )
...
[Cassandra](https://cassandra.apache.org/_/cassandra-basics.html ) is a
NoSQL distributed database. By design, NoSQL databases are lightweight,
open-source, non-relational, and largely distributed. Counted among
their strengths are horizontal scalability, distributed architectures,
and a flexible approach to schema definition.
Cassandra go driver link -
https://pkg.go.dev/github.com/apache/cassandra-gocql-driver/v2
This PR
- adds a new source for cassandra
- adds a new tool _cassandra-cql_ with support for executing predefined
parameterized CQL queries on cassandra
- adds unit and integration tests for the tool and the source
- adds documentation for the cassandra source and cassandra-cql tool
---------
Co-authored-by: Wenxin Du <117315983+duwenxin99@users.noreply.github.com >
Co-authored-by: duwenxin <duwenxin@google.com >
2025-09-23 20:48:43 +00:00
Mend Renovate
a0ec367d30
chore(deps): update module cloud.google.com/go/bigtable to v1.40.0 ( #1533 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[cloud.google.com/go/bigtable](https://redirect.github.com/googleapis/google-cloud-go )
| `v1.39.0` -> `v1.40.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-09-22 17:04:30 -07:00
Mend Renovate
a76ade56ff
chore(deps): update module github.com/trinodb/trino-go-client to v0.329.0 ( #1498 )
...
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
|
[github.com/trinodb/trino-go-client](https://redirect.github.com/trinodb/trino-go-client )
| `v0.328.0` -> `v0.329.0` |
[](https://docs.renovatebot.com/merge-confidence/ )
|
[](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>trinodb/trino-go-client
(github.com/trinodb/trino-go-client)</summary>
###
[`v0.329.0`](https://redirect.github.com/trinodb/trino-go-client/releases/tag/v0.329.0 )
[Compare
Source](https://redirect.github.com/trinodb/trino-go-client/compare/v0.328.0...v0.329.0 )
<!-- Release notes generated using configuration in .github/release.yml
at v0.329.0 -->
#### What's Changed
##### Other changes
- Upgrade go version and related dependencies by
[@​rbenatti8](https://redirect.github.com/rbenatti8 ) in
[#​157](https://redirect.github.com/trinodb/trino-go-client/pull/157 )
#### New Contributors
- [@​rbenatti8](https://redirect.github.com/rbenatti8 ) made their
first contribution in
[#​157](https://redirect.github.com/trinodb/trino-go-client/pull/157 )
**Full Changelog**:
<https://github.com/trinodb/trino-go-client/compare/v0.328.0...v0.329.0 >
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/ ).
View the [repository job
log](https://developer.mend.io/github/googleapis/genai-toolbox ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2025-09-18 21:37:31 +00:00