Skip to content
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

Bump the pymysql version to 1.1.0 on Python 3 #16042

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cacti/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

***Fixed***:

* Bump the `pymysql` version to 1.1.0 on Python 3 ([#16042](https://github.com/DataDog/integrations-core/pull/16042))

## 2.0.0 / 2023-08-10 / Agent 7.48.0

***Changed***:
Expand Down
3 changes: 2 additions & 1 deletion cacti/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ dynamic = [

[project.optional-dependencies]
deps = [
"pymysql==0.10.1",
"pymysql==0.10.1; python_version < '3.0'",
"pymysql==1.1.0; python_version > '3.0'",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions datadog_checks_base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* Fix check cancellation timeout due to `DBMAsyncJob` cancellation being blocked ([#16028](https://github.com/DataDog/integrations-core/pull/16028))
* Bump the `pyodbc` version to 4.0.39 ([#16021](https://github.com/DataDog/integrations-core/pull/16021))
* Bump the `pymysql` version to 1.1.0 on Python 3 ([#16042](https://github.com/DataDog/integrations-core/pull/16042))

## 34.0.0 / 2023-09-29

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ pyjwt==1.7.1; python_version < '3.0'
pyjwt==2.8.0; python_version > '3.0'
pymongo[srv]==4.3.3; python_version >= '3.9'
pymqi==1.12.10; sys_platform != 'darwin' or platform_machine != 'arm64'
pymysql==0.10.1
pymysql==0.10.1; python_version < '3.0'
pymysql==1.1.0; python_version > '3.0'
pyodbc==4.0.39; sys_platform != 'darwin' or platform_machine != 'arm64'
pyro4==4.82; sys_platform == 'win32'
pysmi==0.3.4
Expand Down
4 changes: 4 additions & 0 deletions mysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

* Add support for reporting SQL obfuscation errors ([#15990](https://github.com/DataDog/integrations-core/pull/15990))

***Fixed***:

* Bump the `pymysql` version to 1.1.0 on Python 3 ([#16042](https://github.com/DataDog/integrations-core/pull/16042))

## 11.2.0 / 2023-09-29

***Added***:
Expand Down
2 changes: 1 addition & 1 deletion mysql/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mypy-args = [
mypy-deps = [
"types-cachetools==0.1.10",
"types-enum34==1.1.1",
"types-pymysql==1.0.4",
"types-pymysql==1.1.0.1",
]

[[envs.default.matrix]]
Expand Down
3 changes: 2 additions & 1 deletion mysql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ deps = [
"cryptography==3.3.2; python_version < '3.0'",
"cryptography==41.0.4; python_version > '3.0'",
"futures==3.4.0; python_version < '3.0'",
"pymysql==0.10.1",
"pymysql==0.10.1; python_version < '3.0'",
"pymysql==1.1.0; python_version > '3.0'",
]

[project.urls]
Expand Down
4 changes: 4 additions & 0 deletions proxysql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

***Fixed***:

* Bump the `pymysql` version to 1.1.0 on Python 3 ([#16042](https://github.com/DataDog/integrations-core/pull/16042))

## 5.0.0 / 2023-08-10 / Agent 7.48.0

***Changed***:
Expand Down
3 changes: 2 additions & 1 deletion proxysql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ dynamic = [

[project.optional-dependencies]
deps = [
"pymysql==0.10.1",
"pymysql==0.10.1; python_version < '3.0'",
"pymysql==1.1.0; python_version > '3.0'",
]

[project.urls]
Expand Down
4 changes: 4 additions & 0 deletions singlestore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

***Fixed***:

* Bump the `pymysql` version to 1.1.0 on Python 3 ([#16042](https://github.com/DataDog/integrations-core/pull/16042))

## 2.0.0 / 2023-08-10 / Agent 7.48.0

***Changed***:
Expand Down
2 changes: 1 addition & 1 deletion singlestore/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mypy-args = [
"datadog_checks/singlestore",
]
mypy-deps = [
"types-PyMySQL==1.0.4",
"types-PyMySQL==1.1.0.1",
]

[[envs.default.matrix]]
Expand Down
3 changes: 2 additions & 1 deletion singlestore/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ dynamic = [

[project.optional-dependencies]
deps = [
"pymysql==0.10.1",
"pymysql==0.10.1; python_version < '3.0'",
"pymysql==1.1.0; python_version > '3.0'",
]

[project.urls]
Expand Down