forked from aio-libs/aiomysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge v0.1.1 (commit '8a32f052a16dc3886af54b98f4d91d95862bfb8e')
* commit '8a32f052a16dc3886af54b98f4d91d95862bfb8e': (92 commits) Update changelog for 0.1.1 release (aio-libs#784) Bump pytest from 7.1.1 to 7.1.2 (aio-libs#781) XFail test_issue_36 for now to avoid failing for unrelated changes (aio-libs#779) Skip codecov uploads in scheduled daily tests (aio-libs#778) Bump codecov/codecov-action from 3.0.0 to 3.1.0 (aio-libs#777) Fix SSL connection handshake charset not respecting client configuration (aio-libs#776) Bump ncipollo/release-action from 1.9.0 to 1.10.0 (aio-libs#766) Bump actions/cache from 3.0.1 to 3.0.2 (aio-libs#771) Bump actions/download-artifact from 2 to 3 (aio-libs#765) Bump actions/upload-artifact from 2 to 3 (aio-libs#767) Update changelog for release (aio-libs#769) Checkout git source to access changelog for GitHub release creation Change next version to 0.1.0 in changelog Fix GHA badge in readme after aio-libs#734 (aio-libs#762) Fix SSCursor raising query timeout error on wrong query on MySQL DB (aio-libs#761) Specify explicit language for literal blocks in CONTRIBUTING.rst to reduce warnings in doc builds (aio-libs#760) fix `make checkrst` (aio-libs#759) Update sphinx requirement from <4.4.1,>=1.8.1 to 4.5.0 (aio-libs#751) Bump codecov/codecov-action from 2.1.0 to 3.0.0 (aio-libs#758) Bump actions/cache from 2.1.7 to 3.0.1 (aio-libs#752) ...
- Loading branch information
Showing
55 changed files
with
2,163 additions
and
693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
max-line-length = 88 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ref-names: $Format:%D$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Force LF line endings for text files | ||
* text=auto eol=lf | ||
|
||
# Needed for setuptools-scm-git-archive | ||
.git_archival.txt export-subst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
--- | ||
name: Bug Report | ||
description: Create a report to help us improve. | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Thanks for taking a minute to file a bug report!** | ||
⚠ | ||
Verify first that your issue is not [already reported on | ||
GitHub][issue search]. | ||
_Please fill out the form below with as many precise | ||
details as possible._ | ||
[issue search]: ../search?q=is%3Aissue&type=issues | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: >- | ||
A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: To Reproduce | ||
description: >- | ||
Describe the steps to reproduce this bug. | ||
placeholder: | | ||
1. Have certain environment | ||
2. Then run '...' | ||
3. An error occurs. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: >- | ||
A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Logs/tracebacks | ||
description: | | ||
If applicable, add logs/tracebacks to help explain your problem. | ||
Paste the output of the steps above, including the commands | ||
themselves and their output/traceback etc. | ||
render: python-traceback | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Python Version | ||
description: Attach your version of Python. | ||
render: console | ||
value: | | ||
$ python --version | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: aiomysql Version | ||
description: Attach your version of aiomysql. | ||
render: console | ||
value: | | ||
$ python -m pip show aiomysql | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: PyMySQL Version | ||
description: Attach your version of PyMySQL. | ||
render: console | ||
value: | | ||
$ python -m pip show PyMySQL | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: SQLAlchemy Version | ||
description: Attach your version of SQLAlchemy if you're using it. | ||
render: console | ||
value: | | ||
$ python -m pip show sqlalchemy | ||
- type: textarea | ||
attributes: | ||
label: OS | ||
placeholder: >- | ||
For example, Arch Linux, Windows, macOS, etc. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Database type and version | ||
description: Attach your version of MariaDB/MySQL. | ||
render: console | ||
value: | | ||
SELECT VERSION(); | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: | | ||
Add any other context about the problem here. | ||
Describe the environment you have that lead to your issue. | ||
- type: checkboxes | ||
attributes: | ||
label: Code of Conduct | ||
description: | | ||
Read the [aio-libs Code of Conduct][CoC] first. | ||
[CoC]: https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md | ||
options: | ||
- label: I agree to follow the aio-libs Code of Conduct | ||
required: true | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
name: 🚀 Feature request | ||
description: Suggest an idea for this project. | ||
labels: enhancement | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Thanks for taking a minute to file a feature for aiomysql!** | ||
⚠ | ||
Verify first that your feature request is not [already reported on | ||
GitHub][issue search]. | ||
_Please fill out the form below with as many precise | ||
details as possible._ | ||
[issue search]: ../search?q=is%3Aissue&type=issues | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem? | ||
description: >- | ||
Please add a clear and concise description of what | ||
the problem is. _Ex. I'm always frustrated when [...]_ | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: >- | ||
A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: >- | ||
A clear and concise description of any alternative solutions | ||
or features you've considered. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: >- | ||
Add any other context or screenshots about | ||
the feature request here. | ||
- type: checkboxes | ||
attributes: | ||
label: Code of Conduct | ||
description: | | ||
Read the [aio-libs Code of Conduct][CoC] first. | ||
[CoC]: https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md | ||
options: | ||
- label: I agree to follow the aio-libs Code of Conduct | ||
required: true | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
target-branch: master | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 |
Oops, something went wrong.