Skip to content

Commit 2146843

Browse files
committed
v16.26.3
1 parent e22275d commit 2146843

9 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This is a Spring Boot web application with a Bootstrap user interface, with sour
4040
- Start the application from Maven, run
4141
`mvn -Dspring-boot.run.fork=false spring-boot:run`
4242
- Start application from the jar file, run
43-
`java -jar target/schemacrawler-webapp-16.26.2-1.jar`
43+
`java -jar target/schemacrawler-webapp-16.26.3-1.jar`
4444
- Start the application from the local image in a Docker container, run
4545
`docker run -d --rm --env AWS_ACCESS_KEY_ID=xxxxx --env AWS_SECRET_ACCESS_KEY=xxxxx --env AWS_S3_BUCKET=xxxxx -p 8080:8080 -t schemacrawler/schemacrawler-webapp`
4646

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# SETUP BUILD ENVIRONMENT
2020
- id: prepare-maven-build
2121
name: Prepare Maven build
22-
uses: sualeh/prepare-maven-build@v1.4.0
22+
uses: sualeh/prepare-maven-build@v1.6.1
2323
with:
2424
java-version: 21
2525
- id: install-graphviz

.github/workflows/quick-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# SETUP BUILD ENVIRONMENT
3232
- id: prepare-maven-build
3333
name: Prepare Maven build
34-
uses: sualeh/prepare-maven-build@v1.4.0
34+
uses: sualeh/prepare-maven-build@v1.6.1
3535
with:
3636
java-version: 21
3737
- id: install-graphviz

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# SETUP BUILD ENVIRONMENT
3333
- id: prepare-maven-build
3434
name: Prepare Maven build
35-
uses: sualeh/prepare-maven-build@v1.4.0
35+
uses: sualeh/prepare-maven-build@v1.6.1
3636
with:
3737
java-version: 21
3838
- id: install-graphviz
@@ -74,8 +74,8 @@ jobs:
7474
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7575
with:
7676
upload_url: ${{ steps.create-release.outputs.upload_url }}
77-
asset_path: ./target/schemacrawler-webapp-16.26.2-1.jar
78-
asset_name: schemacrawler-webapp-16.26.2-1.jar
77+
asset_path: ./target/schemacrawler-webapp-16.26.3-1.jar
78+
asset_name: schemacrawler-webapp-16.26.3-1.jar
7979
asset_content_type: application/zip
8080

8181
# BUILD AND PUBLISH DOCKER IMAGE
@@ -102,7 +102,7 @@ jobs:
102102
linux/amd64
103103
linux/arm64
104104
tags: |-
105-
schemacrawler/schemacrawler-webapp:v16.26.2-1
105+
schemacrawler/schemacrawler-webapp:v16.26.3-1
106106
schemacrawler/schemacrawler-webapp:latest
107107
sbom: true
108108
provenance: true

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
FROM eclipse-temurin:21-jdk-alpine
2828

29-
ARG SCHEMACRAWLER_VERSION=16.26.2
30-
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.26.2-1
29+
ARG SCHEMACRAWLER_VERSION=16.26.3
30+
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.26.3-1
3131

3232
LABEL \
3333
"maintainer"="Sualeh Fatehi <sualeh@hotmail.com>" \

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-webapp</artifactId>
9-
<version>16.26.2-1</version>
9+
<version>16.26.3-1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SchemaCrawler Web Application</name>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>us.fatehi</groupId>
6060
<artifactId>schemacrawler-parent</artifactId>
61-
<version>16.26.2</version>
61+
<version>16.26.3</version>
6262
<scope>import</scope>
6363
<type>pom</type>
6464
</dependency>
@@ -137,7 +137,7 @@
137137
<dependency>
138138
<groupId>us.fatehi</groupId>
139139
<artifactId>schemacrawler-sqlite</artifactId>
140-
<version>16.26.2</version>
140+
<version>16.26.3</version>
141141
</dependency>
142142

143143

src/main/resources/api/schemacrawler-web-application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: SchemaCrawler Web Application
44
description: Create a SchemaCrawler schema diagram from an uploaded SQLite database file
5-
version: '16.26.2-1'
5+
version: '16.26.3-1'
66
license:
77
name: Eclipse Public License (EPL-2.0)
88
url: https://www.eclipse.org/legal/epl-2.0/

src/main/resources/banner.txt

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

22

3-
SchemaCrawler Web Application v16.26.2-1
3+
SchemaCrawler Web Application v16.26.3-1
44
Spring Boot ${spring-boot.version}

src/main/resources/templates/fragments/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</div>
99
<div id="footer" xmlns:dc="http://purl.org/dc/elements/1.1/" class="small">
1010
<p id="copyright" property="dc:rights">
11-
<span>SchemaCrawler Web Application, version 16.26.2-1</span><br />
11+
<span>SchemaCrawler Web Application, version 16.26.3-1</span><br />
1212
&copy;
1313
<span property="dc:dateCopyrighted">2000-2025</span>
1414
<span property="dc:creator">Sualeh Fatehi &lt;sualeh@hotmail.com&gt;.</span>

0 commit comments

Comments
 (0)