-
Notifications
You must be signed in to change notification settings - Fork 332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add MySqlSslMode.Disabled #1168
Labels
Comments
Added in 2.1.9. |
okramarenko
added a commit
to memsql/SingleStoreNETConnector
that referenced
this issue
Mar 30, 2023
Summary: This diff grabs changes from original connector that were made in 2.1.9 release: - Use UnixDomainSocketEndPoint. Fixes mysql-net#1160 - Add SingleStoreSslMode.Disabled. Fixes mysql-net#1168 - Implement SingleStoreAttribute.Clone. Fixes mysql-net#1169 - Update activity status on failure SingleStoreDataReader - Use net7.0 (update .csproj files and CI config.yml) - Use new C# 11 features (e.g. string literals, list patterns, Regex generator) - Updating different packages Test Plan: https://app.circleci.com/pipelines/github/memsql/SingleStoreNETConnector/255/workflows/5ffa09c8-5b07-4c58-81b9-68e98d9c3557 Reviewers: pmishchenko-ua Subscribers: engineering-list JIRA Issues: PLAT-6408 Differential Revision: https://grizzly.internal.memcompute.com/D61770
okramarenko
added a commit
to memsql/SingleStoreNETConnector
that referenced
this issue
Mar 31, 2023
Summary: This diff grabs changes from original connector that were made in 2.1.9 release: - Use UnixDomainSocketEndPoint. Fixes mysql-net#1160 - Add SingleStoreSslMode.Disabled. Fixes mysql-net#1168 - Implement SingleStoreAttribute.Clone. Fixes mysql-net#1169 - Update activity status on failure SingleStoreDataReader - Use net7.0 (update .csproj files and CI config.yml) - Use new C# 11 features (e.g. string literals, list patterns, Regex generator) - Updating different packages Test Plan: https://app.circleci.com/pipelines/github/memsql/SingleStoreNETConnector/255/workflows/5ffa09c8-5b07-4c58-81b9-68e98d9c3557 Reviewers: pmishchenko-ua Reviewed By: pmishchenko-ua Subscribers: engineering-list JIRA Issues: PLAT-6408 Differential Revision: https://grizzly.internal.memcompute.com/D61770
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-29.html
SslMode=none
connection-option value is deprecated (marked obsolete) and is replaced with theSslMode=disabled
connection-option value.Add
Disabled
as an alias forNone
.The text was updated successfully, but these errors were encountered: