Skip to content

Commit

Permalink
Fix for Bug#105323 (33507321), README.md contains broken links.
Browse files Browse the repository at this point in the history
  • Loading branch information
fjssilva committed Nov 24, 2021
1 parent ad46620 commit 24cf7e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

Version 8.0.28

- Fix for Bug#105323 (33507321), README.md contains broken links.

- Fix for Bug#96900 (30355150), STATEMENT.CANCEL()CREATE A DATABASE CONNECTION BUT DOES NOT CLOSE THE CONNECTION.

- Fix for Bug#104067 (33054827), No reset autoCommit after unknown issue occurs.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ There are a few ways to contribute to the Connector/J code. Please refer to the
* [MySQL Connector/J, JDBC and Java forum](https://forums.mysql.com/list.php?39).
* [`#connectors` channel in MySQL Community Slack](https://mysqlcommunity.slack.com/messages/connectors). ([Sign-up](https://lefred.be/mysql-community-on-slack/) required if you do not have an Oracle account.)
* [@MySQL on Twitter](https://twitter.com/MySQL).
* [MySQL and Java Mailing Lists](https://lists.mysql.com/java).
* [InsideMySQL.com Connectors Blog](https://insidemysql.com/category/mysql-development/connectors/).
* [MySQL Blog](https://blogs.oracle.com/mysql/).
* [MySQL Connectors Blog archive](https://dev.mysql.com/blog-archive/?cat=Connectors%20%2F%20Languages).
* [MySQL Bugs Database](https://bugs.mysql.com/).

For more information about this and other MySQL products, please visit [MySQL Contact & Questions](https://www.mysql.com/about/contact/).
Expand Down
9 changes: 6 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1302,6 +1302,9 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
</and>
</condition>

<!-- ant 1.10.10 and above print report summaries to the console from where test counts can be retrieved. -->
<antversion property="com.mysql.cj.testsuite.ant.version" atleast="1.10.10" />

<junitlauncher haltOnFailure="false" printSummary="true" failureProperty="com.mysql.cj.testsuite.junit.fail">
<classpath refid="com.mysql.cj.testsuite.build.classpath" />

Expand All @@ -1314,7 +1317,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
<syspropertyset refid="junit.system.properties" />
</fork>
<listener classname="testsuite.JUnitSummary" />
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
</test>
Expand All @@ -1328,7 +1331,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
<syspropertyset refid="junit.system.properties" />
</fork>
<listener classname="testsuite.JUnitSummary" />
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
</test>
Expand All @@ -1343,7 +1346,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
<syspropertyset refid="junit.system.properties" />
</fork>
<listener classname="testsuite.JUnitSummary" />
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
</testclasses>
Expand Down

0 comments on commit 24cf7e2

Please sign in to comment.