Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 24cf7e2

Browse filesBrowse files
committed
Fix for Bug#105323 (33507321), README.md contains broken links.
1 parent ad46620 commit 24cf7e2
Copy full SHA for 24cf7e2

File tree

Expand file treeCollapse file tree

3 files changed

+10
-5
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+10
-5
lines changed
Open diff view settings
Collapse file

‎CHANGES‎

Copy file name to clipboardExpand all lines: CHANGES
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
Version 8.0.28
55

6+
- Fix for Bug#105323 (33507321), README.md contains broken links.
7+
68
- Fix for Bug#96900 (30355150), STATEMENT.CANCEL()CREATE A DATABASE CONNECTION BUT DOES NOT CLOSE THE CONNECTION.
79

810
- Fix for Bug#104067 (33054827), No reset autoCommit after unknown issue occurs.
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ There are a few ways to contribute to the Connector/J code. Please refer to the
5353
* [MySQL Connector/J, JDBC and Java forum](https://forums.mysql.com/list.php?39).
5454
* [`#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.)
5555
* [@MySQL on Twitter](https://twitter.com/MySQL).
56-
* [MySQL and Java Mailing Lists](https://lists.mysql.com/java).
57-
* [InsideMySQL.com Connectors Blog](https://insidemysql.com/category/mysql-development/connectors/).
56+
* [MySQL Blog](https://blogs.oracle.com/mysql/).
57+
* [MySQL Connectors Blog archive](https://dev.mysql.com/blog-archive/?cat=Connectors%20%2F%20Languages).
5858
* [MySQL Bugs Database](https://bugs.mysql.com/).
5959

6060
For more information about this and other MySQL products, please visit [MySQL Contact & Questions](https://www.mysql.com/about/contact/).
Collapse file

‎build.xml‎

Copy file name to clipboardExpand all lines: build.xml
+6-3Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,6 +1302,9 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
13021302
</and>
13031303
</condition>
13041304

1305+
<!-- ant 1.10.10 and above print report summaries to the console from where test counts can be retrieved. -->
1306+
<antversion property="com.mysql.cj.testsuite.ant.version" atleast="1.10.10" />
1307+
13051308
<junitlauncher haltOnFailure="false" printSummary="true" failureProperty="com.mysql.cj.testsuite.junit.fail">
13061309
<classpath refid="com.mysql.cj.testsuite.build.classpath" />
13071310

@@ -1314,7 +1317,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
13141317
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
13151318
<syspropertyset refid="junit.system.properties" />
13161319
</fork>
1317-
<listener classname="testsuite.JUnitSummary" />
1320+
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
13181321
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
13191322
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
13201323
</test>
@@ -1328,7 +1331,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
13281331
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
13291332
<syspropertyset refid="junit.system.properties" />
13301333
</fork>
1331-
<listener classname="testsuite.JUnitSummary" />
1334+
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
13321335
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
13331336
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
13341337
</test>
@@ -1343,7 +1346,7 @@ See also com.mysql.cj.conf.PropertyDefinitions.SYSP_* variables for other test o
13431346
<jvmarg value="${com.mysql.cj.testsuite.test.coverage.jvmargfinal}" />
13441347
<syspropertyset refid="junit.system.properties" />
13451348
</fork>
1346-
<listener classname="testsuite.JUnitSummary" />
1349+
<listener classname="testsuite.JUnitSummary" unless="com.mysql.cj.testsuite.ant.version" />
13471350
<listener type="legacy-xml" sendSysOut="true" sendSysErr="true" />
13481351
<listener type="legacy-plain" sendSysOut="true" sendSysErr="true" />
13491352
</testclasses>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.