Skip to content

Commit

Permalink
Bump the pymysql version to 1.1.0 on Python 3 (#16042)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentClarret authored Oct 19, 2023
1 parent a483181 commit 1eab2a7
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 7 deletions.
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 @@ -5,6 +5,7 @@
***Fixed***:

* 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.1 / 2023-10-17

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

0 comments on commit 1eab2a7

Please sign in to comment.