Skip to content

Commit

Permalink
Merge pull request #2392 from liquibase/snyk-fix-0bf6e655113cee4f09e5…
Browse files Browse the repository at this point in the history
…636b0637fa77

[Snyk] Security upgrade com.h2database:h2 from 2.0.206 to 2.1.210
  • Loading branch information
nvoxland committed Feb 8, 2022
2 parents ae48e7c + 30af40a commit 0a4de75
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
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.206.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.1.210.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
Original file line number Diff line number Diff line change
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.206.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.1.210.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
5 changes: 2 additions & 3 deletions liquibase-dist/pom.xml
Original file line number Diff line number Diff line change
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.206</h2.version>
<h2.version>2.1.210</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 Expand Up @@ -190,8 +190,7 @@
<createTestSourcesJar>false</createTestSourcesJar>
<keepDependenciesWithProvidedScope>false</keepDependenciesWithProvidedScope>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer implementation="fr.ms.maven.shade.transformers.MergeManifestResourceTransformer"/>
<transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
<!-- Use a hand-crafted pom for distribution in this jar vs. what gets generated by maven -->
Expand Down
2 changes: 1 addition & 1 deletion liquibase-dist/src/main/archive/examples/start-h2
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ else
JAVA_PATH="${JAVA_HOME}/bin/java"
fi

"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.0.206.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
"${JAVA_PATH}" -cp "${LIQUIBASE_HOME}/lib/h2-2.1.210.jar:${LIQUIBASE_HOME}/liquibase.jar" liquibase.example.StartH2Main
2 changes: 1 addition & 1 deletion liquibase-dist/src/main/archive/examples/start-h2.bat
Original file line number Diff line number Diff line change
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.206.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
"%JAVA_PATH%" -cp "%LIQUIBASE_HOME%\lib\h2-2.1.210.jar;%LIQUIBASE_HOME%\liquibase.jar" liquibase.example.StartH2Main
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.206</version>
<version>2.1.210</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 0a4de75

Please sign in to comment.