Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# ========================================================================

# Provided arguments
ARG FROM_IMAGE=schemacrawler/schemacrawler:v16.28.3
ARG FROM_IMAGE=schemacrawler/schemacrawler:v16.29.1

# BUILDER stage - Build SchemaCrawler AI
FROM maven:3.9-eclipse-temurin-21 AS builder
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SchemaCrawler AI release notes.

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

- Remove "aichat" command
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-ai-aggregator</artifactId>
<version>16.28.3-1</version>
<version>16.29.1-1</version>
<packaging>pom</packaging>
<name>SchemaCrawler AI [Aggregator]</name>

Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-ai-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-ai-parent</artifactId>
<version>16.28.3-1</version>
<version>16.29.1-1</version>
<relativePath>../schemacrawler-ai-parent</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ table name (including the schema).
"""
Indicates what details of the database table or view to return -
columns, primary key, foreign keys, indexes, triggers, attributes,
and table definition.
and table definition. Also returns which objects reference a given table
as "used by objects".
Columns, foreign key references to other tables, and remarks or comments
are always returned by default. The other details can be requested.
The results could be large.
Expand All @@ -52,6 +53,7 @@ public enum TableDescriptionScope {
REFERENCED_TABLES(AdditionalTableDetails.REFERENCED_TABLES),
INDEXES(AdditionalTableDetails.INDEXES),
TRIGGERS(AdditionalTableDetails.TRIGGERS),
USED_BY_OBJECTS(AdditionalTableDetails.USED_BY_OBJECTS),
ATTRIBUTES(AdditionalTableDetails.ATTRIBUTES),
DEFINIITION(AdditionalTableDetails.DEFINIITION);

Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-ai-distrib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-ai-parent</artifactId>
<version>16.28.3-1</version>
<version>16.29.1-1</version>
<relativePath>../schemacrawler-ai-parent</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions schemacrawler-ai-mcpserver/mcp-server-registration.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"url": "https://github.com/schemacrawler/SchemaCrawler-AI",
"source": "github"
},
"version": "v16.28.3-1",
"version": "v16.29.1-1",
"packages": [
{
"registryType": "oci",
"registryBaseUrl": "https://docker.io",
"identifier": "schemacrawler/schemacrawler-ai",
"version": "v16.28.3-1",
"version": "v16.29.1-1",
"transport": {
"type": "stdio"
},
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-ai-mcpserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-ai-parent</artifactId>
<version>16.28.3-1</version>
<version>16.29.1-1</version>
<relativePath>../schemacrawler-ai-parent</relativePath>
</parent>
<artifactId>schemacrawler-ai-mcpserver</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spring:
name: schemacrawler-mcpserver
server:
name: SchemaCrawler AI MCP Server
version: "v16.28.3-1"
version: "v16.29.1-1"
heartbeat: true

---
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-ai-mcpserver/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

--------------------------------
SchemaCrawler AI MCP Server
v16.28.3-1
v16.29.1-1
--------------------------------
6 changes: 3 additions & 3 deletions schemacrawler-ai-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.28.3</version>
<version>16.29.1</version>
<relativePath />
</parent>

<artifactId>schemacrawler-ai-parent</artifactId>
<version>16.28.3-1</version>
<version>16.29.1-1</version>
<packaging>pom</packaging>
<name>SchemaCrawler AI [Parent]</name>
<description>Free database schema discovery and comprehension tool</description>
Expand All @@ -21,7 +21,7 @@
<java.version>21</java.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<schemacrawler.version>16.28.3</schemacrawler.version>
<schemacrawler.version>16.29.1</schemacrawler.version>
</properties>

<dependencyManagement>
Expand Down