-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: gokulcoder7/mysql-connector-python
base: e271035
head repository: mysql/mysql-connector-python
compare: 5e47983
- 16 commits
- 67 files changed
- 4 contributors
Commits on Feb 21, 2025
-
BUG#37453587: Github links in PyPI project's pages do not work
Fixed the links displayed in the PyPI project pages that are meant to open metadata files in GitHub such as LICENSE.txt. Change-Id: I53ecacb3f70f9e86920aeef5d87d5848e7981513
Configuration menu - View commit details
-
Copy full SHA for bbc36d5 - Browse repository at this point
Copy the full SHA bbc36d5View commit details -
BUG#37418436: Arbitrary File Read in MySQL Python Client library
Local file access is strengthened on the client side (connector) when executing `LOCAL INFILE` statements. The connector is aware of the `filename` specified in a `LOCAL INFILE` statement (client request), and it verifies the `filename` got from the server response matches the requested. Change-Id: I7ff82dc5fdb1e62a97508f31f04ec7887e56b075
Configuration menu - View commit details
-
Copy full SHA for 68a6b51 - Browse repository at this point
Copy the full SHA 68a6b51View commit details
Commits on Feb 28, 2025
-
WL#16327: Remove Cursors Prepared Raw and Named Tuple
The cursors deprecated via WL#16318 are being removed in this worklog. Change-Id: Ic2eef8ecea6f8bb4c912b11998acbd525713a474
Configuration menu - View commit details
-
Copy full SHA for a0e6975 - Browse repository at this point
Copy the full SHA a0e6975View commit details
Commits on Mar 3, 2025
-
BUG#37541353: (Contribution) Fix typing annotation of MySQLConnection…
…Abstract's close function As part of the connection API, improved the type hint of `close()` which is an alias of the instance method `disconnect()`. Thanks, Parul Gupta, for the contribution! Additionally, since `close()` is the preferred term (see [PEP 249 – Python Database API Specification v2.0]), with this patch, we also changed roles by letting `disconnect()` now be an alias of `close()`. From a functional perspective, nothing changes, this modification is oriented to provide consistency and clarity to the interface declaration. Change-Id: I61d407186fcc9fa5496c617f05593c4c69bdfac8
Configuration menu - View commit details
-
Copy full SHA for 09db398 - Browse repository at this point
Copy the full SHA 09db398View commit details
Commits on Mar 10, 2025
-
WL#16752: Deprecate class methods to access instance data or to know …
…instance internal state Change-Id: I4293ddd909ad45c755f25845dbea0171b3139f79
Configuration menu - View commit details
-
Copy full SHA for ec430bf - Browse repository at this point
Copy the full SHA ec430bfView commit details -
BUG#37447394: Unable to escape a parameter marker (
%s
) used in a qu……ery that should not be treated as a parameter marker. This patch fixes this issue by adding proper regular expression checks to escape the `%s` parameter marker when `%%s` is used in the query. Change-Id: I31fce87821832cefa607105e8e0d20ca3be3f380
Configuration menu - View commit details
-
Copy full SHA for ed9e248 - Browse repository at this point
Copy the full SHA ed9e248View commit details -
WL#16754: The host wildcard no longer applies to localhost
The unittests are updated to reflect on the fact that the host wildcard match behaviour of schema and object level grants are not going to be applicable to localhost anymore. Change-Id: I2cce0a2b7bd266dc0dde84cc03274ad610112476
Configuration menu - View commit details
-
Copy full SHA for 790e6e9 - Browse repository at this point
Copy the full SHA 790e6e9View commit details -
BUG#37399636: The C-extension has a memory leak when working with pre…
…pared statements Fixed a memory leak in the C-extension occurring in prepared statements. Prepared statement object reference counting was being incremented upon instantiation, but never decremented when closing the statement. Change-Id: Icbac790d47362a695f38666cecc79ad8cae1494b
Configuration menu - View commit details
-
Copy full SHA for 936a405 - Browse repository at this point
Copy the full SHA 936a405View commit details -
Added the missing constant
DEPRECATED_METHOD_WARNING
which was eras……ed while resolving merge conflicts between WL#16752 and WL#16754. Change-Id: Ide1db0292f815cba59160cbcd4348708ef60695a
Configuration menu - View commit details
-
Copy full SHA for 0bf204d - Browse repository at this point
Copy the full SHA 0bf204dView commit details
Commits on Mar 12, 2025
-
BUG#36098290: mysql-connector-python is distributed without setup.py …
…or pyproject.toml The source code distribution (sdist) posted on PyPI now is going to include the `setup.py` file, which is a must to build a wheel package from the sdist. Change-Id: I3271cc2647468e355aca8a03182fd249641e1669
Configuration menu - View commit details
-
Copy full SHA for e56c4ec - Browse repository at this point
Copy the full SHA e56c4ecView commit details
Commits on Mar 13, 2025
-
BUG#37275524: Exception is not interpreted properly on prepared
statements when C extension is in use This patch fixes the issue where incorrect error class is being raised by the connector while working with the prepared statements using C-Extension by ensuring that correct exception structure is maintained while forwarding the exception from C-API to the connector interface. Change-Id: Idfa0ee340dcd4f4b69cf27893f67278074ae8250
Configuration menu - View commit details
-
Copy full SHA for a611aee - Browse repository at this point
Copy the full SHA a611aeeView commit details -
BUG#37410052: Wrong exception message being shown when
ConnectionRefusedError is raised by the client This patch fixes the incorrect error message which is being shown by the client when ConnectionRefusedError is being raised while connecting with a MySQL server. Change-Id: I6d99a0ee68e66105c17c975fa9e30717574fea5a
Configuration menu - View commit details
-
Copy full SHA for ac3a5bf - Browse repository at this point
Copy the full SHA ac3a5bfView commit details
Commits on Mar 14, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 521cef7 - Browse repository at this point
Copy the full SHA 521cef7View commit details
Commits on Mar 17, 2025
-
Added fix for unittest launch and linter issues in the release branch
This patch fixes the issue where bootstrapped mysql-9.3.0 server is trying to initialize to run the unittests by setting a value for the non-existent server variable `innodb_log_file_size`. Also, typing and linter issues are resolved. Change-Id: I39266fa3516958a6e875022bfca80e39d0f64b43
Configuration menu - View commit details
-
Copy full SHA for 149e5eb - Browse repository at this point
Copy the full SHA 149e5ebView commit details
Commits on Mar 18, 2025
-
Updated Connector/Python version to 9.3.0
Change-Id: I252d6714433bf0d5f3b306fb82f78a1e652625fd
Configuration menu - View commit details
-
Copy full SHA for f9bdcea - Browse repository at this point
Copy the full SHA f9bdceaView commit details
Commits on Mar 21, 2025
-
Update SASL-based LDAP authentication tests
On Microsoft Windows, the server plugin for SASL-based LDAP authentication is not supported for MySQL Server 8.0.X. NOTE: The server-side LDAP authentication plugins are included only in MySQL Enterprise Edition.
Configuration menu - View commit details
-
Copy full SHA for 5e47983 - Browse repository at this point
Copy the full SHA 5e47983View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff e271035...5e47983