Skip to content

Commit

Permalink
Update dependency mysql:mysql-connector-java to v8.0.28 (master) (dro…
Browse files Browse the repository at this point in the history
…pwizard#4623)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Jochen Schalanda <jochen@schalanda.name>
  • Loading branch information
3 people authored Jan 25, 2022
1 parent 747d60d commit 98db659
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dropwizard-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.27</version>
<version>8.0.28</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PersonDAOIntegrationTest {
.setUrl(MY_SQL_CONTAINER.getJdbcUrl())
.setUsername(MY_SQL_CONTAINER.getUsername())
.setPassword(MY_SQL_CONTAINER.getPassword())
.setProperty(PropertyKey.enabledTLSProtocols.getKeyName(), "TLSv1.1,TLSv1.2,TLSv1.3")
.setProperty(PropertyKey.tlsVersions.getKeyName(), "TLSv1.1,TLSv1.2,TLSv1.3")
.addEntityClass(Person.class)
.build();

Expand Down

0 comments on commit 98db659

Please sign in to comment.