Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-pymysql
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenStack
python
python-pymysql
Commits
2cab9ecc
Commit
2cab9ecc
authored
1 year ago
by
Inada Naoki
Browse files
Options
Downloads
Patches
Plain Diff
v1.1.1
parent
521e4005
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+15
-0
15 additions, 0 deletions
CHANGELOG.md
pymysql/__init__.py
+2
-2
2 additions, 2 deletions
pymysql/__init__.py
with
17 additions
and
2 deletions
CHANGELOG.md
+
15
−
0
View file @
2cab9ecc
...
...
@@ -7,6 +7,21 @@
*
`db`
and
`passwd`
will emit DeprecationWarning in v1.2. See #933.
*
`Connection.ping(reconnect)`
change the default to not reconnect.
## v1.1.1
Release date: 2024-05-21
> [!WARNING]
> This release fixes a vulnerability (CVE-2024-36039).
> All users are recommended to update to this version.
>
> If you can not update soon, check the input value from
> untrusted source has an expected type. Only dict input
> from untrusted source can be an attack vector.
*
Prohibit dict parameter for
`Cursor.execute()`
. It didn't produce valid SQL
and might cause SQL injection. (CVE-2024-36039)
## v1.1.0
Release date: 2023-06-26
...
...
This diff is collapsed.
Click to expand it.
pymysql/__init__.py
+
2
−
2
View file @
2cab9ecc
...
...
@@ -49,8 +49,8 @@ from .times import (
# PyMySQL version.
# Used by setuptools and connection_attrs
VERSION
=
(
1
,
1
,
0
,
"
final
"
,
1
)
VERSION_STRING
=
"
1.1.
0
"
VERSION
=
(
1
,
1
,
1
,
"
final
"
,
1
)
VERSION_STRING
=
"
1.1.
1
"
### for mysqlclient compatibility
### Django checks mysqlclient version.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment