Skip to content

Commit

Permalink
fix(deps): update dependency com.h2database:h2 to v2.3.230 (#1378)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency com.h2database:h2 to v2.3.230

* H2 version is upgraded to 2.3.230

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: radovanradic <radicr@gmail.com>
  • Loading branch information
renovate[bot] and radovanradic authored Jul 23, 2024
1 parent 461a94c commit 4e5d0cf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ managed-tomcat-jdbc = "10.1.26"
managed-jakarta-persistence-api = "3.1.0"
managed-jakarta-transaction-api = "2.0.1"

managed-h2 = "2.2.224"
managed-h2 = "2.3.230"

# Other

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class DatasourceConfigurationSpec extends Specification {
String version = resultSet.getString(1)

then:
version == '2.2.224'
version == '2.3.230'

cleanup:
applicationContext.close()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class DatasourceConfigurationSpec extends Specification {
String version = resultSet.getString(1)

then:
version == '2.2.224'
version == '2.3.230'

cleanup:
applicationContext.close()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class DatasourceConfigurationSpec extends Specification {
String version = resultSet.getString(1)

then:
version == '2.2.224'
version == '2.3.230'

cleanup:
applicationContext.close()
Expand Down

0 comments on commit 4e5d0cf

Please sign in to comment.