Skip to content

Commit

Permalink
Bump version of MySQL for compliance (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Traverse authored Nov 3, 2023
1 parent d9f67fa commit 253e793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ext {

// SQL (JDBC) drivers
h2_version = '2.1.214'
mysql_version = '8.0.33'
mysql_version = '8.2.0'
mariadb_version = '3.0.8'
postgresql_version = '42.6.0'
sqlserver_version = '9.4.1.jre11' // Update to SqlServer 10.x driver series is a breaking change
Expand Down
2 changes: 1 addition & 1 deletion tracdap-libs/tracdap-lib-db/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
h2RuntimeOnly group: 'com.h2database', name: 'h2', version: "$h2_version"

// Do not let MySQL pull in protobuf! We want to use the version from the core TRAC libs
mysqlRuntimeOnly (group: 'mysql', name: 'mysql-connector-java', version: "$mysql_version") {
mysqlRuntimeOnly (group: 'com.mysql', name: 'mysql-connector-j', version: "$mysql_version") {
exclude group: 'com.google.protobuf', module: 'protobuf-java'
}

Expand Down

0 comments on commit 253e793

Please sign in to comment.