Skip to content

Conversation

@vijaybalebail
Copy link
Contributor

@vijaybalebail vijaybalebail commented Sep 15, 2025

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
  • Make sure to open an issue as a
    bug/issue
    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 #488

@vijaybalebail vijaybalebail requested a review from a team as a code owner September 15, 2025 18:07
@google-cla
Copy link

google-cla bot commented Sep 15, 2025

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@kurtisvg kurtisvg assigned duwenxin99 and unassigned averikitsch Sep 15, 2025
@duwenxin99 duwenxin99 changed the title Pull for oracle go driver. This needs Oracle instant client installed. feat(oracle): add Oracle source Sep 16, 2025
@duwenxin99 duwenxin99 changed the title feat(oracle): add Oracle source feat(sources/oracle): add Oracle source Sep 16, 2025
@duwenxin99
Copy link
Contributor

Hi @vijaybalebail, could you sign the CLA here? Thanks!

@duwenxin99
Copy link
Contributor

/gcbrun

@duwenxin99
Copy link
Contributor

@vijaybalebail Thanks for updating. We will request an CLA override before we merge this PR in. One question: can we use https://github.com/sijms/go-ora instead of https://github.com/godror/godror so that the developers don't have to install the OIC?

@duwenxin99 duwenxin99 force-pushed the main branch 2 times, most recently from 541864b to a21d2a8 Compare September 23, 2025 20:53
@duwenxin99 duwenxin99 changed the title feat(sources/oracle): add Oracle source feat(sources/oracle): add Oracle Source and Tool Sep 23, 2025
@duwenxin99
Copy link
Contributor

Hi @vijaybalebail, I'm requesting and license to use Oracle for our internal project which may take some time. I'll update the test config for the PR once it's ready.

@duwenxin99
Copy link
Contributor

Hi @vijaybalebail, I have set up an Oracle 23ai test instance and added the test configs. The environment variables available to use are ORACLE_USER, ORACLE_PASS, and ORACLE_HOST(without port). The guide to integration test is here. Feel free to refer to other sources' test as examples. Let me know if you encounter any issues.

@Matthieu68857
Copy link
Contributor

Is there any plan to add an "oracle-sql" tool that would allow to define tools like other engines?
I tested a build with this PR, and having "just" the "oracle-execute-sql" is limiting.

@duwenxin99
Copy link
Contributor

Is there any plan to add an "oracle-sql" tool that would allow to define tools like other engines? I tested a build with this PR, and having "just" the "oracle-execute-sql" is limiting.

Yes we will support that.

@vijaybalebail
Copy link
Contributor Author

vijaybalebail commented Oct 3, 2025 via email

@vijaybalebail
Copy link
Contributor Author

vijaybalebail commented Oct 4, 2025 via email

@Matthieu68857
Copy link
Contributor

@vijaybalebail I've tried to build the toolbox with the new tool and I ran into

# github.com/googleapis/genai-toolbox/internal/tools/oracle/oracleexecutesql
  internal/tools/oracle/oracleexecutesql/oracleexecutesql.go:89:30: multiple-value parameters.McpManifest() (value of type (tools.McpToolsSchema, map[string][]string)) in single-value context
  # github.com/googleapis/genai-toolbox/internal/tools/oracle/oraclesql
  internal/tools/oracle/oraclesql/oraclesql.go:84:64: assignment mismatch: 4 variables but tools.ProcessParameters returns 3 values

So I fixed it locally to make it work by updating the manifests of both tools (oracle-sql and oracle-execute-sql).

diff --git a/internal/tools/oracle/oraclesql/oraclesql.go b/internal/tools/oracle/oraclesql/oraclesql.go
index 9fec368..ff1d110 100644
--- a/internal/tools/oracle/oraclesql/oraclesql.go
+++ b/internal/tools/oracle/oraclesql/oraclesql.go
@@ -81,16 +81,12 @@ func (cfg Config) Initialize(srcs map[string]sources.Source) (tools.Tool, error)
                 return nil, fmt.Errorf("invalid source for %q tool: source kind must be one of %q", kind, compatibleSources)
         }

-        allParameters, paramManifest, paramMcpManifest, err := tools.ProcessParameters(cfg.TemplateParameters, cfg.Parameters)
+        allParameters, paramManifest, err := tools.ProcessParameters(cfg.TemplateParameters, cfg.Parameters)
         if err != nil {
                 return nil, fmt.Errorf("error processing parameters: %w", err)
         }

-        mcpManifest := tools.McpManifest{
-                Name:        cfg.Name,
-                Description: cfg.Description,
-                InputSchema: paramMcpManifest,
-        }
+        mcpManifest := tools.GetMcpManifest(cfg.Name, cfg.Description, nil, allParameters)

         // finish tool setup
         t := Tool{
diff --git a/internal/tools/oracle/oracleexecutesql/oracleexecutesql.go b/internal/tools/oracle/oracleexecutesql/oracleexecutesql.go
index f16fbde..7aadb48 100644
--- a/internal/tools/oracle/oracleexecutesql/oracleexecutesql.go
+++ b/internal/tools/oracle/oracleexecutesql/oracleexecutesql.go
@@ -83,11 +83,7 @@ func (cfg Config) Initialize(srcs map[string]sources.Source) (tools.Tool, error)
         sqlParameter := tools.NewStringParameter("sql", "The SQL to execute.")
         parameters := tools.Parameters{sqlParameter}

-        mcpManifest := tools.McpManifest{
-                Name:        cfg.Name,
-                Description: cfg.Description,
-                InputSchema: parameters.McpManifest(),
-        }
+        mcpManifest := tools.GetMcpManifest(cfg.Name, cfg.Description, nil, parameters)

         // finish tool setup
         t := Tool{

As this is a quick fix and not sure I'm legitimate to provide full update, I'll let you adapt if that works for you!

vijaybalebail and others added 9 commits October 9, 2025 14:51
added oracle.go -- Oracle go frivers is dependent on instance client.
updated with the changes to parameters.
 oracleexecutesql.go
added // Copyright © 2025, Oracle and/or its affiliates.
added oracle
@duwenxin99 duwenxin99 added the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@duwenxin99 duwenxin99 added the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@duwenxin99 duwenxin99 added the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@duwenxin99 duwenxin99 added the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@github-actions github-actions bot removed the tests: run Label to trigger Github Action tests. label Oct 10, 2025
@duwenxin99 duwenxin99 merged commit 3a19a50 into googleapis:main Oct 10, 2025
15 checks passed
github-actions bot pushed a commit that referenced this pull request Oct 10, 2025
## 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 #488

---------

Co-authored-by: duwenxin <[email protected]>
Co-authored-by: Wenxin Du <[email protected]> 3a19a50
github-actions bot pushed a commit that referenced this pull request Oct 10, 2025
## 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 #488

---------

Co-authored-by: duwenxin <[email protected]>
Co-authored-by: Wenxin Du <[email protected]> 3a19a50
github-actions bot pushed a commit to renovate-bot/googleapis-_-genai-toolbox that referenced this pull request Oct 10, 2025
…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 googleapis#488

---------

Co-authored-by: duwenxin <[email protected]>
Co-authored-by: Wenxin Du <[email protected]> 3a19a50
github-actions bot pushed a commit to renovate-bot/googleapis-_-genai-toolbox that referenced this pull request Oct 10, 2025
…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 googleapis#488

---------

Co-authored-by: duwenxin <[email protected]>
Co-authored-by: Wenxin Du <[email protected]> 3a19a50
duwenxin99 added a commit that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---


##
[0.17.0](v0.16.0...v0.17.0)
(2025-10-10)


### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([#1093](#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([#1573](#1573))

### Features

* Add configs and workflows for docs versioning
([#1611](#1611))
([21ac98b](21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([#1395](#1395))
([0b3dac4](0b3dac4))
* Add program name to MySQL connections
([#1617](#1617))
([c4a22b8](c4a22b8))
* **source/bigquery:** Add optional write mode config
([#1157](#1157))
([63adc78](63adc78))
* **sources/mssql:** Add app name to MSSQL
([#1620](#1620))
([1536d1f](1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([#1456](#1456))
([3a19a50](3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([#1573](#1573))
([1a44c67](1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([#1093](#1093))
([acb205c](acb205c))
* **tools/dataform:** Add dataform compile tool
([#1470](#1470))
([3be9b7b](3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([#1581](#1581))
([5aed4e1](5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([#1596](#1596))
([2d5a93e](2d5a93e))


### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([#1445](#1445))
([dbc477a](dbc477a))
* Fix broken links
([#1625](#1625))
([36c6584](36c6584))
* Remove duplicated build type in Dockerfile
([#1598](#1598))
([b43c945](b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([#1663](#1663))
([f4cf486](f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([#1496](#1496))
([67d8221](67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([#1497](#1497))
([62af39d](62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([#1629](#1629))
([94e19d8](94e19d8))


### Miscellaneous Chores

* Release 0.17.0
([#1676](#1676))
([7e22cb4](7e22cb4))

---
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: Wenxin Du <[email protected]>
duwenxin99 added a commit that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---


##
[0.17.0](v0.16.0...v0.17.0)
(2025-10-10)


### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([#1093](#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([#1573](#1573))

### Features

* Add configs and workflows for docs versioning
([#1611](#1611))
([21ac98b](21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([#1395](#1395))
([0b3dac4](0b3dac4))
* Add program name to MySQL connections
([#1617](#1617))
([c4a22b8](c4a22b8))
* **oracle:** Switch Oracle driver from godror to go-ora
([#1685](#1685))
([8faf376](8faf376))
* **source/bigquery:** Add optional write mode config
([#1157](#1157))
([63adc78](63adc78))
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support
PSC connection
([#1686](#1686))
([9d2bf79](9d2bf79))
* **sources/mssql:** Add app name to MSSQL
([#1620](#1620))
([1536d1f](1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([#1456](#1456))
([3a19a50](3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([#1573](#1573))
([1a44c67](1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([#1093](#1093))
([acb205c](acb205c))
* **tools/dataform:** Add dataform compile tool
([#1470](#1470))
([3be9b7b](3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([#1581](#1581))
([5aed4e1](5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([#1596](#1596))
([2d5a93e](2d5a93e))


### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([#1445](#1445))
([dbc477a](dbc477a))
* Fix broken links
([#1625](#1625))
([36c6584](36c6584))
* Remove duplicated build type in Dockerfile
([#1598](#1598))
([b43c945](b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([#1663](#1663))
([f4cf486](f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([#1496](#1496))
([67d8221](67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([#1497](#1497))
([62af39d](62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([#1629](#1629))
([94e19d8](94e19d8))


### Miscellaneous Chores

* Release 0.17.0
([#1676](#1676))
([7e22cb4](7e22cb4))
* Release 0.17.0
([#1681](#1681))
([18c92b5](18c92b5))

---
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: Wenxin Du <[email protected]>
github-actions bot pushed a commit that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---

##
[0.17.0](v0.16.0...v0.17.0)
(2025-10-10)

### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([#1093](#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([#1573](#1573))

### Features

* Add configs and workflows for docs versioning
([#1611](#1611))
([21ac98b](21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([#1395](#1395))
([0b3dac4](0b3dac4))
* Add program name to MySQL connections
([#1617](#1617))
([c4a22b8](c4a22b8))
* **oracle:** Switch Oracle driver from godror to go-ora
([#1685](#1685))
([8faf376](8faf376))
* **source/bigquery:** Add optional write mode config
([#1157](#1157))
([63adc78](63adc78))
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support
PSC connection
([#1686](#1686))
([9d2bf79](9d2bf79))
* **sources/mssql:** Add app name to MSSQL
([#1620](#1620))
([1536d1f](1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([#1456](#1456))
([3a19a50](3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([#1573](#1573))
([1a44c67](1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([#1093](#1093))
([acb205c](acb205c))
* **tools/dataform:** Add dataform compile tool
([#1470](#1470))
([3be9b7b](3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([#1581](#1581))
([5aed4e1](5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([#1596](#1596))
([2d5a93e](2d5a93e))

### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([#1445](#1445))
([dbc477a](dbc477a))
* Fix broken links
([#1625](#1625))
([36c6584](36c6584))
* Remove duplicated build type in Dockerfile
([#1598](#1598))
([b43c945](b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([#1663](#1663))
([f4cf486](f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([#1496](#1496))
([67d8221](67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([#1497](#1497))
([62af39d](62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([#1629](#1629))
([94e19d8](94e19d8))

### Miscellaneous Chores

* Release 0.17.0
([#1676](#1676))
([7e22cb4](7e22cb4))
* Release 0.17.0
([#1681](#1681))
([18c92b5](18c92b5))

---
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: Wenxin Du <[email protected]> de19d52
github-actions bot pushed a commit that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---

##
[0.17.0](v0.16.0...v0.17.0)
(2025-10-10)

### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([#1093](#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([#1573](#1573))

### Features

* Add configs and workflows for docs versioning
([#1611](#1611))
([21ac98b](21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([#1395](#1395))
([0b3dac4](0b3dac4))
* Add program name to MySQL connections
([#1617](#1617))
([c4a22b8](c4a22b8))
* **oracle:** Switch Oracle driver from godror to go-ora
([#1685](#1685))
([8faf376](8faf376))
* **source/bigquery:** Add optional write mode config
([#1157](#1157))
([63adc78](63adc78))
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support
PSC connection
([#1686](#1686))
([9d2bf79](9d2bf79))
* **sources/mssql:** Add app name to MSSQL
([#1620](#1620))
([1536d1f](1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([#1456](#1456))
([3a19a50](3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([#1573](#1573))
([1a44c67](1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([#1093](#1093))
([acb205c](acb205c))
* **tools/dataform:** Add dataform compile tool
([#1470](#1470))
([3be9b7b](3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([#1581](#1581))
([5aed4e1](5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([#1596](#1596))
([2d5a93e](2d5a93e))

### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([#1445](#1445))
([dbc477a](dbc477a))
* Fix broken links
([#1625](#1625))
([36c6584](36c6584))
* Remove duplicated build type in Dockerfile
([#1598](#1598))
([b43c945](b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([#1663](#1663))
([f4cf486](f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([#1496](#1496))
([67d8221](67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([#1497](#1497))
([62af39d](62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([#1629](#1629))
([94e19d8](94e19d8))

### Miscellaneous Chores

* Release 0.17.0
([#1676](#1676))
([7e22cb4](7e22cb4))
* Release 0.17.0
([#1681](#1681))
([18c92b5](18c92b5))

---
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: Wenxin Du <[email protected]> de19d52
github-actions bot pushed a commit to renovate-bot/googleapis-_-genai-toolbox that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---

##
[0.17.0](googleapis/genai-toolbox@v0.16.0...v0.17.0)
(2025-10-10)

### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([googleapis#1093](googleapis#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([googleapis#1573](googleapis#1573))

### Features

* Add configs and workflows for docs versioning
([googleapis#1611](googleapis#1611))
([21ac98b](googleapis@21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([googleapis#1395](googleapis#1395))
([0b3dac4](googleapis@0b3dac4))
* Add program name to MySQL connections
([googleapis#1617](googleapis#1617))
([c4a22b8](googleapis@c4a22b8))
* **oracle:** Switch Oracle driver from godror to go-ora
([googleapis#1685](googleapis#1685))
([8faf376](googleapis@8faf376))
* **source/bigquery:** Add optional write mode config
([googleapis#1157](googleapis#1157))
([63adc78](googleapis@63adc78))
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support
PSC connection
([googleapis#1686](googleapis#1686))
([9d2bf79](googleapis@9d2bf79))
* **sources/mssql:** Add app name to MSSQL
([googleapis#1620](googleapis#1620))
([1536d1f](googleapis@1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([googleapis#1456](googleapis#1456))
([3a19a50](googleapis@3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([googleapis#1573](googleapis#1573))
([1a44c67](googleapis@1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([googleapis#1093](googleapis#1093))
([acb205c](googleapis@acb205c))
* **tools/dataform:** Add dataform compile tool
([googleapis#1470](googleapis#1470))
([3be9b7b](googleapis@3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([googleapis#1581](googleapis#1581))
([5aed4e1](googleapis@5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([googleapis#1596](googleapis#1596))
([2d5a93e](googleapis@2d5a93e))

### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([googleapis#1445](googleapis#1445))
([dbc477a](googleapis@dbc477a))
* Fix broken links
([googleapis#1625](googleapis#1625))
([36c6584](googleapis@36c6584))
* Remove duplicated build type in Dockerfile
([googleapis#1598](googleapis#1598))
([b43c945](googleapis@b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([googleapis#1663](googleapis#1663))
([f4cf486](googleapis@f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([googleapis#1496](googleapis#1496))
([67d8221](googleapis@67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([googleapis#1497](googleapis#1497))
([62af39d](googleapis@62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([googleapis#1629](googleapis#1629))
([94e19d8](googleapis@94e19d8))

### Miscellaneous Chores

* Release 0.17.0
([googleapis#1676](googleapis#1676))
([7e22cb4](googleapis@7e22cb4))
* Release 0.17.0
([googleapis#1681](googleapis#1681))
([18c92b5](googleapis@18c92b5))

---
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: Wenxin Du <[email protected]> de19d52
github-actions bot pushed a commit to renovate-bot/googleapis-_-genai-toolbox that referenced this pull request Oct 10, 2025
🤖 I have created a release *beep* *boop*
---

##
[0.17.0](googleapis/genai-toolbox@v0.16.0...v0.17.0)
(2025-10-10)

### ⚠ BREAKING CHANGES

* **tools/bigquery-get-table-info:** add allowed dataset support
([googleapis#1093](googleapis#1093))
* **tool/bigquery-list-dataset-ids:** add allowed datasets support
([googleapis#1573](googleapis#1573))

### Features

* Add configs and workflows for docs versioning
([googleapis#1611](googleapis#1611))
([21ac98b](googleapis@21ac98b))
* Add metadata in MCP Manifest for Toolbox auth
([googleapis#1395](googleapis#1395))
([0b3dac4](googleapis@0b3dac4))
* Add program name to MySQL connections
([googleapis#1617](googleapis#1617))
([c4a22b8](googleapis@c4a22b8))
* **oracle:** Switch Oracle driver from godror to go-ora
([googleapis#1685](googleapis#1685))
([8faf376](googleapis@8faf376))
* **source/bigquery:** Add optional write mode config
([googleapis#1157](googleapis#1157))
([63adc78](googleapis@63adc78))
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support
PSC connection
([googleapis#1686](googleapis#1686))
([9d2bf79](googleapis@9d2bf79))
* **sources/mssql:** Add app name to MSSQL
([googleapis#1620](googleapis#1620))
([1536d1f](googleapis@1536d1f))
* **sources/oracle:** Add Oracle Source and Tool
([googleapis#1456](googleapis#1456))
([3a19a50](googleapis@3a19a50))
* **tool/bigquery-list-dataset-ids:** Add allowed datasets support
([googleapis#1573](googleapis#1573))
([1a44c67](googleapis@1a44c67))
* **tools/bigquery-get-table-info:** Add allowed dataset support
([googleapis#1093](googleapis#1093))
([acb205c](googleapis@acb205c))
* **tools/dataform:** Add dataform compile tool
([googleapis#1470](googleapis#1470))
([3be9b7b](googleapis@3be9b7b))
* **tools/looker:** Add support for pulse, vacuum and analyze audit and
performance functions on a Looker instance
([googleapis#1581](googleapis#1581))
([5aed4e1](googleapis@5aed4e1))
* **tools/looker:** Enable access to the Conversational Analytics API
for Looker
([googleapis#1596](googleapis#1596))
([2d5a93e](googleapis@2d5a93e))

### Bug Fixes

* Added google_ml_integration extension to use alloydb ai-nl support api
([googleapis#1445](googleapis#1445))
([dbc477a](googleapis@dbc477a))
* Fix broken links
([googleapis#1625](googleapis#1625))
([36c6584](googleapis@36c6584))
* Remove duplicated build type in Dockerfile
([googleapis#1598](googleapis#1598))
([b43c945](googleapis@b43c945))
* **source/bigquery:** Allowed datasets project id issue with client
oauth ([googleapis#1663](googleapis#1663))
([f4cf486](googleapis@f4cf486))
* **sources/looker:** Allow Looker to be configured without setting a
Client Id or Secret
([googleapis#1496](googleapis#1496))
([67d8221](googleapis@67d8221))
* **tools/looker:** Refactor run-inline-query logic to helper function
([googleapis#1497](googleapis#1497))
([62af39d](googleapis@62af39d))
* **tools/mysql-list-tables:** Update sql query to resolve subquery
scope error
([googleapis#1629](googleapis#1629))
([94e19d8](googleapis@94e19d8))

### Miscellaneous Chores

* Release 0.17.0
([googleapis#1676](googleapis#1676))
([7e22cb4](googleapis@7e22cb4))
* Release 0.17.0
([googleapis#1681](googleapis#1681))
([18c92b5](googleapis@18c92b5))

---
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: Wenxin Du <[email protected]> de19d52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[source] Add Source/Tool for Oracle

4 participants