summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2022-08-13 18:01:34 -0700
committerGitHub <noreply@github.com>2022-08-13 18:01:34 -0700
commitdf45000a3486f9bb35ff494a8b41f191992e9d5a (patch)
tree80827d0d0bd87759e673e3a667dc28b58841470f
parent9b3cc7fcc8ff9c96493185eadff33bf9661369e2 (diff)
parent48bd4c9e44ddfd40953b36708e69fd480c2e86df (diff)
Merge pull request #1034 from upekkha/ignore_mysqld_user
Ignore the user of the system [mysqld] config
-rw-r--r--changelog.md7
-rw-r--r--mycli/AUTHORS1
-rwxr-xr-xmycli/main.py1
3 files changed, 9 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md
index 67791e9..159299d 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+
+TBD
+===
+
Internal:
---------
* Pin `cryptography` to suppress `paramiko` warning, helping CI complete and presumably affecting some users.
@@ -8,6 +12,8 @@ Bug Fixes:
----------
* Support for some MySQL compatible databases, which may not implement connection_id().
* Fix the status command to work with missing 'Flush_commands' (mariadb)
+* Ignore the user of the system [myslqd] config.
+
1.25.0 (2022/04/02)
===================
@@ -29,6 +35,7 @@ Bug Fixes:
* Change in main.py - Replace the `click.get_terminal_size()` with `shutil.get_terminal_size()`
+
1.24.3 (2022/01/20)
===================
diff --git a/mycli/AUTHORS b/mycli/AUTHORS
index 316da56..328805d 100644
--- a/mycli/AUTHORS
+++ b/mycli/AUTHORS
@@ -28,6 +28,7 @@ Contributors:
* Carlos Afonso
* Casper Langemeijer
* chainkite
+ * Claude Becker
* Colin Caine
* cxbig
* Daniel Black
diff --git a/mycli/main.py b/mycli/main.py
index 97256e1..0561af8 100755
--- a/mycli/main.py
+++ b/mycli/main.py
@@ -341,6 +341,7 @@ class MyCli(object):
'mysqld': {
'socket': 'default_socket',
'port': 'default_port',
+ 'user': 'default_user',
},
}