You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(mysql): stabilize Harbor-backed test runs
Switch the test suite to a Harbor-managed MySQL container so local and CI testing only assumes Docker availability.
Also restore a stable Connector/C SSL default, fix option reads, close load-time prepared statements, and advance multi-result cleanup via nextresult() so the suite stays green on current MariaDB Connector/C releases.
Fixes#234
* chore(julia): raise minimum version to 1.10
Julia 1.6 CI cannot resolve Harbor, and Julia 1.10 is the current LTS line as of April 23, 2026.
Bump the package compat floor and replace the 1.6 CI lane with 1.10 so the matrix matches the versions we intend to support with the Harbor-backed test harness.
* fix(results): restore guarded multi-result advance
* fix(results): check more results before free
* test(results): use direct connection for multistmt
* fix(api): read string option values correctly
* test(harbor): require released log wait fix
Require Harbor 1.0.3 for tests and switch the MySQL container
readiness check back to the intended log-pattern wait now
that the stderr capture fix is released.
@@ -279,7 +279,7 @@ Connect to a MySQL database with provided `host`, `user`, and `passwd` positiona
279
279
* `ssl_cipher::AbstractString`: Defines a list of permitted ciphers or cipher suites to use for TLS, like `"DHE-RSA-AES256-SHA"`
280
280
* `ssl_crl::AbstractString`: Defines a path to a PEM file that should contain one or more revoked X509 certificates to use for TLS. This option requires that you use the absolute path, not a relative path.
281
281
* `ssl_crlpath::AbstractString`: Defines a path to a directory that contains one or more PEM files that should each contain one revoked X509 certificate to use for TLS. This option requires that you use the absolute path, not a relative path. The directory specified by this option needs to be run through the openssl rehash command.
282
-
* `ssl_verify_server_cert::Bool`: Enables (or disables) server certificate verification.
282
+
* `ssl_verify_server_cert::Bool=false`: Enables (or disables) server certificate verification.
283
283
* `ssl_enforce::Bool`: Whether to force TLS
284
284
* `default_auth::AbstractString`: Default authentication client-side plugin to use.
285
285
* `connection_handler::AbstractString`: Specify the name of a connection handler plugin.
0 commit comments