Skip to content

Commit

Permalink
Merge pull request #2341 from liquibase/dependabot/maven/liquibase-di…
Browse files Browse the repository at this point in the history
…st/com.h2database-h2-2.0.206

Bump h2 from 2.0.202 to 2.0.206 in /liquibase-dist
  • Loading branch information
nvoxland committed Jan 7, 2022
2 parents a78d8c4 + bdeed9f commit db50c37
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Expand Up @@ -14,7 +14,7 @@ Enhancements
- [PR#2244] [szandany] Enabled the use of the jdbc:edb URL for Liquibase to recognize EnterpriseDB
- [PR#2225] [nvoxland] [catholic-indulgence-vaper] Enabled the use of lowercase sys.synonyms objects for the generate-changelog and diff-changelog commands in Liquibase and SQL Server. The PR fixes PR#2044.
- Added DB2 on z/OS database type and Java classes for Liquibase
- Upgrade h2 to newer version 2.0.202
- Upgrade h2 to newer version 2.0.206

Fixes
- Fixed the generateChangeLog wrong dependency order: the addPrimaryKey Change Type appeared before its base table in PostgreSQL [DAT-8256]
Expand Down
Expand Up @@ -38,4 +38,4 @@ fi

# echo "${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-1.4.200.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main

"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.0.202.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.0.206.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
Expand Up @@ -31,4 +31,4 @@ if "%JAVA_HOME%"=="" (
set JAVA_PATH=%JAVA_HOME%\bin\java
)

"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.0.202.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.0.206.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
2 changes: 1 addition & 1 deletion liquibase-dist/pom.xml
Expand Up @@ -19,7 +19,7 @@
<deploy.repositoryId>github</deploy.repositoryId>
<deploy.url>https://maven.pkg.github.com/liquibase</deploy.url>

<h2.version>2.0.202</h2.version>
<h2.version>2.0.206</h2.version>
<hsqldb.version>2.5.2</hsqldb.version>
<postgresql.version>42.2.15</postgresql.version>
<mssql.version>8.4.0.jre8</mssql.version>
Expand Down
2 changes: 1 addition & 1 deletion liquibase-dist/src/main/archive/examples/start-h2
Expand Up @@ -35,4 +35,4 @@ else
JAVA_PATH="${JAVA_HOME}/bin/java"
fi

"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.0.202.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.0.206.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
2 changes: 1 addition & 1 deletion liquibase-dist/src/main/archive/examples/start-h2.bat
Expand Up @@ -31,4 +31,4 @@ if "%JAVA_HOME%"=="" (
set JAVA_PATH=%JAVA_HOME%\bin\java
)

"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.0.202.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.0.206.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -160,7 +160,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.202</version>
<version>2.0.206</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit db50c37

Please sign in to comment.