Skip to content

Commit

Permalink
Merge pull request #562 from schemacrawler/v16.16.9
Browse files Browse the repository at this point in the history
Upgrade JDBC dependencies
  • Loading branch information
sualeh authored Jan 17, 2022
2 parents 616904e + 4455614 commit 85113ae
Show file tree
Hide file tree
Showing 46 changed files with 224 additions and 156 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: |
# Publish Docker image
docker version
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:v16.16.8
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:v16.16.9
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:latest
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker push --all-tags schemacrawler/schemacrawler
Expand All @@ -76,10 +76,10 @@ jobs:
name: Upload installers
uses: actions/upload-artifact@v2
with:
name: release-artifacts-v16.16.8
name: release-artifacts-v16.16.9
path: |
./schemacrawler-distrib/target/schemacrawler-16.16.8-distribution.zip
./schemacrawler-distrib/target/schemacrawler-16.16.8-distribution.zip.SHA-512
./schemacrawler-distrib/target/schemacrawler-16.16.9-distribution.zip
./schemacrawler-distrib/target/schemacrawler-16.16.9-distribution.zip.SHA-512
retention-days: 1
- id: create-release
name: Create GitHub release
Expand All @@ -103,8 +103,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./schemacrawler-distrib/target/schemacrawler-16.16.8-distribution.zip
asset_name: schemacrawler-16.16.8-distribution.zip
asset_path: ./schemacrawler-distrib/target/schemacrawler-16.16.9-distribution.zip
asset_name: schemacrawler-16.16.9-distribution.zip
asset_content_type: application/zip
- id: upload-release-sha
name: Upload SchemaCrawler distribution zip SHA
Expand All @@ -114,8 +114,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./schemacrawler-distrib/target/schemacrawler-16.16.8-distribution.zip.SHA-512
asset_name: schemacrawler-16.16.8-distribution.zip.SHA-512
asset_path: ./schemacrawler-distrib/target/schemacrawler-16.16.9-distribution.zip.SHA-512
asset_name: schemacrawler-16.16.9-distribution.zip.SHA-512
asset_content_type: text/plain

# PUBLISH TO CENTRAL REPOSITORY
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>./schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-aggregator</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>schemacrawler-parent</artifactId>
<groupId>us.fatehi</groupId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SchemaCrawler 16.16.8
SchemaCrawler 16.16.9
Database schema discovery and comprehension tool
https://www.schemacrawler.com/
Copyright (c) 2000-2022, Sualeh Fatehi <sualeh@hotmail.com>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void setUpStreams() throws Exception {
public void version() throws Exception {
Version.main(new String[0]);

assertThat(out.getFileContents(), startsWith("SchemaCrawler 16.16.8"));
assertThat(out.getFileContents(), startsWith("SchemaCrawler 16.16.9"));
assertThat(outputOf(err), hasNoContent());
}
}
2 changes: 1 addition & 1 deletion schemacrawler-commandline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>schemacrawler-parent</artifactId>
<groupId>us.fatehi</groupId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-commandline</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-db2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-db2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-dbtest/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-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-dbtest</artifactId>
Expand Down
32 changes: 16 additions & 16 deletions schemacrawler-dbtest/src/test/resources/testH2WithConnection.8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.16.6
generated on 2022-01-07 18:24:13
database version H2 2.0.206 (2022-01-04)
driver version H2 JDBC Driver 2.0.206 (2022-01-04)
generated by SchemaCrawler 16.16.9
generated on 2022-01-17 20:29:02
database version H2 2.1.210 (2022-01-17)
driver version H2 JDBC Driver 2.1.210 (2022-01-17)



Expand Down Expand Up @@ -43,11 +43,11 @@ Indexes
[unique index]
ID ascending

[non-unique statistic index]
[non-unique index]
LASTNAME ascending
FIRSTNAME ascending

[non-unique statistic index]
[non-unique index]
CITY ascending
STATE descending
POSTALCODE ascending
Expand Down Expand Up @@ -86,10 +86,10 @@ CONSTRAINT_F9 [foreign key, with restrict]

Indexes

[non-unique statistic index]
[non-unique index]
AUTHORID ascending

[non-unique statistic index]
[non-unique index]
BOOKID ascending

[unique index]
Expand Down Expand Up @@ -134,10 +134,10 @@ Indexes
[unique index]
ID ascending

[unique statistic index]
[unique index]
PREVIOUSEDITIONID ascending

[non-unique statistic index]
[non-unique index]
PREVIOUSEDITIONID ascending


Expand Down Expand Up @@ -267,7 +267,7 @@ FK_ΒΙΒΛΊΑ_PUBLISHERS [foreign key, with restrict]

Indexes

[non-unique statistic index]
[non-unique index]
ΕΚΔΌΤΗΣ ascending

[unique index]
Expand Down Expand Up @@ -533,7 +533,7 @@ System Information
Database Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
database product name H2
database product version 2.0.206 (2022-01-04)
database product version 2.1.210 (2022-01-17)
database user name


Expand All @@ -549,14 +549,14 @@ client info properties numServers
data definition causes transaction commit true
data definition ignored in transactions false
database major version 2
database minor version 0
database minor version 1
default transaction isolation 2
deletes are detected for TYPE_FORWARD_ONLY result sets false
deletes are detected for TYPE_SCROLL_INSENSITIVE result sets false
deletes are detected for TYPE_SCROLL_SENSITIVE result sets false
does max row size include blobs false
driver major version 2
driver minor version 0
driver minor version 1
extra name characters
generated key always returned true
identifier quote string "
Expand Down Expand Up @@ -619,7 +619,7 @@ row id lifetime ROWID_UNSUPPORTED
schema term schema
schemas BOOKS, INFORMATION_SCHEMA, PUBLIC
search string escape \
SQL keywords CURRENT_CATALOG, CURRENT_SCHEMA, GROUPS, IF, ILIKE, INTERSECTS, KEY, LIMIT, MINUS, OFFSET, QUALIFY, REGEXP, ROWNUM, TOP, _ROWID_
SQL keywords CURRENT_CATALOG, CURRENT_SCHEMA, GROUPS, IF, ILIKE, KEY, LIMIT, MINUS, OFFSET, QUALIFY, REGEXP, ROWNUM, TOP, _ROWID_
SQL state type 2
stores lower case identifiers false
stores lower case quoted identifiers false
Expand Down Expand Up @@ -709,7 +709,7 @@ JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:h2:mem:schemacrawler
driver name H2 JDBC Driver
driver version 2.0.206 (2022-01-04)
driver version 2.1.210 (2022-01-17)
driver class name org.h2.Driver
is JDBC compliant true
supported JDBC version 4.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.16.6
generated on 2022-01-07 18:23:07
database version H2 2.0.206 (2022-01-04)
driver version H2 JDBC Driver 2.0.206 (2022-01-04)
generated by SchemaCrawler 16.16.9
generated on 2022-01-17 20:31:58
database version H2 2.1.210 (2022-01-17)
driver version H2 JDBC Driver 2.1.210 (2022-01-17)



Expand Down Expand Up @@ -43,11 +43,11 @@ Indexes
[unique index]
ID ascending

[non-unique statistic index]
[non-unique index]
LASTNAME ascending
FIRSTNAME ascending

[non-unique statistic index]
[non-unique index]
CITY ascending
STATE descending
POSTALCODE ascending
Expand Down Expand Up @@ -86,10 +86,10 @@ CONSTRAINT_F9 [foreign key, with restrict]

Indexes

[non-unique statistic index]
[non-unique index]
AUTHORID ascending

[non-unique statistic index]
[non-unique index]
BOOKID ascending

[unique index]
Expand Down Expand Up @@ -134,10 +134,10 @@ Indexes
[unique index]
ID ascending

[unique statistic index]
[unique index]
PREVIOUSEDITIONID ascending

[non-unique statistic index]
[non-unique index]
PREVIOUSEDITIONID ascending


Expand Down Expand Up @@ -267,7 +267,7 @@ FK_ΒΙΒΛΊΑ_PUBLISHERS [foreign key, with restrict]

Indexes

[non-unique statistic index]
[non-unique index]
ΕΚΔΌΤΗΣ ascending

[unique index]
Expand Down Expand Up @@ -533,7 +533,7 @@ System Information
Database Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
database product name H2
database product version 2.0.206 (2022-01-04)
database product version 2.1.210 (2022-01-17)
database user name


Expand All @@ -549,14 +549,14 @@ client info properties numServers
data definition causes transaction commit true
data definition ignored in transactions false
database major version 2
database minor version 0
database minor version 1
default transaction isolation 2
deletes are detected for TYPE_FORWARD_ONLY result sets false
deletes are detected for TYPE_SCROLL_INSENSITIVE result sets false
deletes are detected for TYPE_SCROLL_SENSITIVE result sets false
does max row size include blobs false
driver major version 2
driver minor version 0
driver minor version 1
extra name characters
generated key always returned true
identifier quote string "
Expand Down Expand Up @@ -619,7 +619,7 @@ row id lifetime ROWID_UNSUPPORTED
schema term schema
schemas BOOKS, INFORMATION_SCHEMA, PUBLIC
search string escape \
SQL keywords CURRENT_CATALOG, CURRENT_SCHEMA, GROUPS, IF, ILIKE, INTERSECTS, KEY, LIMIT, MINUS, OFFSET, QUALIFY, REGEXP, ROWNUM, TOP, _ROWID_
SQL keywords CURRENT_CATALOG, CURRENT_SCHEMA, GROUPS, IF, ILIKE, KEY, LIMIT, MINUS, OFFSET, QUALIFY, REGEXP, ROWNUM, TOP, _ROWID_
SQL state type 2
stores lower case identifiers false
stores lower case quoted identifiers false
Expand Down Expand Up @@ -710,7 +710,7 @@ JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:h2:mem:schemacrawler
driver name H2 JDBC Driver
driver version 2.0.206 (2022-01-04)
driver version 2.1.210 (2022-01-17)
driver class name org.h2.Driver
is JDBC compliant true
supported JDBC version 4.2
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-diagram/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>schemacrawler-parent</artifactId>
<groupId>us.fatehi</groupId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-diagram</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-diff/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>schemacrawler-parent</artifactId>
<groupId>us.fatehi</groupId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-diff</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-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-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-distrib</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</configurations>
<dependencies>
<dependency org="us.fatehi" name="schemacrawler-timesten"
rev="16.16.8" conf="binaries->default" />
rev="16.16.9" conf="binaries->default" />
<dependency org="us.fatehi" name="schemacrawler-sapiq"
rev="16.16.8" conf="binaries->default" />
rev="16.16.9" conf="binaries->default" />
<dependency org="us.fatehi" name="schemacrawler-hana"
rev="16.16.8" conf="binaries->default" />
rev="16.16.9" conf="binaries->default" />

<exclude org="us.fatehi" module="schemacrawler" />
<exclude org="org.hsqldb" module="hsqldb" />
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-docker-compose/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-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-docker-compose</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-docker/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-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-docker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-docs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion schemacrawler-examplecode/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.16.8</version>
<version>16.16.9</version>
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
</parent>
<artifactId>schemacrawler-examplecode</artifactId>
Expand Down
Loading

0 comments on commit 85113ae

Please sign in to comment.