Skip to content

Commit 6bd109b

Browse files
authored
Merge pull request #117 from schemacrawler/v16.29.1-1
v16.29.1-1
2 parents c288698 + aaca4f2 commit 6bd109b

File tree

11 files changed

+16
-14
lines changed

11 files changed

+16
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# ========================================================================
88

99
# Provided arguments
10-
ARG FROM_IMAGE=schemacrawler/schemacrawler:v16.28.3
10+
ARG FROM_IMAGE=schemacrawler/schemacrawler:v16.29.1
1111

1212
# BUILDER stage - Build SchemaCrawler AI
1313
FROM maven:3.9-eclipse-temurin-21 AS builder

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SchemaCrawler AI release notes.
44

5-
<a name="v16.28.3-2"></a>
5+
<a name="v16.29.1-2"></a>
66
## Release 16.28.2-2 - 2025-09-29
77

88
- Remove "aichat" command

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-ai-aggregator</artifactId>
9-
<version>16.28.3-1</version>
9+
<version>16.29.1-1</version>
1010
<packaging>pom</packaging>
1111
<name>SchemaCrawler AI [Aggregator]</name>
1212

schemacrawler-ai-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-ai-parent</artifactId>
9-
<version>16.28.3-1</version>
9+
<version>16.29.1-1</version>
1010
<relativePath>../schemacrawler-ai-parent</relativePath>
1111
</parent>
1212

schemacrawler-ai-core/src/main/java/schemacrawler/tools/ai/functions/DescribeTablesFunctionParameters.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ table name (including the schema).
3737
"""
3838
Indicates what details of the database table or view to return -
3939
columns, primary key, foreign keys, indexes, triggers, attributes,
40-
and table definition.
40+
and table definition. Also returns which objects reference a given table
41+
as "used by objects".
4142
Columns, foreign key references to other tables, and remarks or comments
4243
are always returned by default. The other details can be requested.
4344
The results could be large.
@@ -52,6 +53,7 @@ public enum TableDescriptionScope {
5253
REFERENCED_TABLES(AdditionalTableDetails.REFERENCED_TABLES),
5354
INDEXES(AdditionalTableDetails.INDEXES),
5455
TRIGGERS(AdditionalTableDetails.TRIGGERS),
56+
USED_BY_OBJECTS(AdditionalTableDetails.USED_BY_OBJECTS),
5557
ATTRIBUTES(AdditionalTableDetails.ATTRIBUTES),
5658
DEFINIITION(AdditionalTableDetails.DEFINIITION);
5759

schemacrawler-ai-distrib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-ai-parent</artifactId>
9-
<version>16.28.3-1</version>
9+
<version>16.29.1-1</version>
1010
<relativePath>../schemacrawler-ai-parent</relativePath>
1111
</parent>
1212

schemacrawler-ai-mcpserver/mcp-server-registration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"url": "https://github.com/schemacrawler/SchemaCrawler-AI",
99
"source": "github"
1010
},
11-
"version": "v16.28.3-1",
11+
"version": "v16.29.1-1",
1212
"packages": [
1313
{
1414
"registryType": "oci",
1515
"registryBaseUrl": "https://docker.io",
1616
"identifier": "schemacrawler/schemacrawler-ai",
17-
"version": "v16.28.3-1",
17+
"version": "v16.29.1-1",
1818
"transport": {
1919
"type": "stdio"
2020
},

schemacrawler-ai-mcpserver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-ai-parent</artifactId>
9-
<version>16.28.3-1</version>
9+
<version>16.29.1-1</version>
1010
<relativePath>../schemacrawler-ai-parent</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-ai-mcpserver</artifactId>

schemacrawler-ai-mcpserver/src/main/resources/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spring:
1717
name: schemacrawler-mcpserver
1818
server:
1919
name: SchemaCrawler AI MCP Server
20-
version: "v16.28.3-1"
20+
version: "v16.29.1-1"
2121
heartbeat: true
2222

2323
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
--------------------------------
33
SchemaCrawler AI MCP Server
4-
v16.28.3-1
4+
v16.29.1-1
55
--------------------------------

0 commit comments

Comments
 (0)