Skip to content

Commit b23bece

Browse files
authored
Merge branch 'main' into json-lint
2 parents 4676c7e + 7e3bef3 commit b23bece

File tree

7 files changed

+24
-7
lines changed

7 files changed

+24
-7
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# For syntax help see:
44
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax
55

6-
* @googleapis/senseai-eco
6+
* @gemini-cli-extensions/senseai-eco @gemini-cli-extensions/sql-server-maintainers

.github/workflows/package-and-upload-assets.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ jobs:
6666
6767
echo "Downloading binary from: ${DOWNLOAD_URL}"
6868
curl -L --fail -o "${SOURCE_BINARY}" "${DOWNLOAD_URL}"
69-
69+
70+
chmod +x ${SOURCE_BINARY}
71+
7072
echo "Binary downloaded and prepared."
7173
ls -l
7274
@@ -134,4 +136,4 @@ jobs:
134136
run: |
135137
gh release upload \
136138
${{ github.event.release.tag_name }} \
137-
release-archives/*/*
139+
release-archives/*/*

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.0"
2+
".": "0.1.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-09-21)
4+
5+
6+
### Features
7+
8+
* add SQL Server Extension ([cdf0e32](https://github.com/gemini-cli-extensions/sql-server/commit/cdf0e32ab4f93c62f331c9d4817fe0b848232cc8))

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Gemini CLI Extension - SQL Server
22

3+
> [!NOTE]
4+
> This extension is currently in beta (pre-v1.0), and may see breaking changes until the first stable release (v1.0).
5+
36
This Gemini CLI extension provides a set of tools to interact with [Microsoft SQL Server](https://docs.microsoft.com/en-us/sql/) instances. It allows you to manage your databases, execute queries, and explore schemas directly from the [Gemini CLI](https://google-gemini.github.io/gemini-cli/), using natural language prompts.
47

8+
Learn more about [Gemini CLI Extensions](https://github.com/google-gemini/gemini-cli/blob/main/docs/extension.md).
9+
510
## Why Use the SQL Server Extension?
611

712
* **Natural Language Management:** Stop wrestling with complex commands. Explore schemas and query data by describing what you want in plain English.
@@ -12,7 +17,7 @@ This Gemini CLI extension provides a set of tools to interact with [Microsoft SQ
1217

1318
Before you begin, ensure you have the following:
1419

15-
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed.
20+
* [Gemini CLI](https://github.com/google-gemini/gemini-cli) installed with version **+v0.6.0**.
1621
* A running SQL Server instance.
1722
* A user with database-level permissions to execute queries.
1823

@@ -21,7 +26,7 @@ Before you begin, ensure you have the following:
2126
To install the extension, use the command:
2227

2328
```bash
24-
gemini extensions install github.com/gemini-cli-extensions/sql-server
29+
gemini extensions install https://github.com/gemini-cli-extensions/sql-server
2530
```
2631

2732
## Configuration

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sql-server",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "Connect to SQL Server",
55
"mcpServers": {
66
"SQL Server": {

release-please-config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"bump-minor-pre-major": true,
33
"bump-patch-for-minor-pre-major": true,
4+
"include-component-in-tag": false,
5+
"include-v-in-tag": false,
46
"changelog-sections": [
57
{
68
"type": "feat",

0 commit comments

Comments
 (0)