From 999ad22a14b30ac880112feb47c123256223222f Mon Sep 17 00:00:00 2001 From: starcat37 Date: Mon, 30 Oct 2023 11:44:16 +0900 Subject: [PATCH 1/3] docs: add issue template --- .github/ISSUE_TEMPLATE.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..5c5064da --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,34 @@ +### Version +Please specify the versions you are using. Exact version numbers are preferred. +- Pymyrepl(e.g. 1.0.2): +- Database(e.g. MySQL 8.2.0): +- OS(e.g. Ubuntu 18.04): + +### System Variables +List relevant system variables using the query `SHOW VARIABLES LIKE '';` +- `log_bin`: +- `binlog_format`: +- `binlog_row_image`: +- `enforce_gtid_consistency`: +- `gtid_mode`: + +If you are using MySQL 8.0.14 or later, please also provide the following variables: +- `binlog_row_metadata`: +- `binlog_row_value_options`: + +### Symptoms + + +### Steps to Reproduce + + +### Expected Outcome + + +### Actual Outcome + + +### Planning to Resolve + +- [ ] I plan to create a pull request to resolve this issue. +- [ ] I don't plan to resolve this myself and would like someone else to address it. From 4d1cb44524a47ebfb54f6cc83e19dc1b4039ad8a Mon Sep 17 00:00:00 2001 From: starcat37 Date: Mon, 30 Oct 2023 11:44:43 +0900 Subject: [PATCH 2/3] docs: add PR template --- .github/PULL_REQUEST_TEMPLATE.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..005d44b8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,21 @@ +### Description + + +### Type of Change +- [ ] Bug fix +- [ ] New feature +- [ ] Documentation update +- [ ] Other (please specify below) + +### Checklist +- [ ] I have read and understood the [CONTRIBUTING.md](https://github.com/julien-duponchelle/python-mysql-replication/blob/main/CONTRIBUTING.md) document. +- [ ] I have checked there aren't any other open [Pull Requests](https://github.com/julien-duponchelle/python-mysql-replication/pulls) for the desired changes. +- [ ] This PR resolves an issue #[Issue Number Here]. + +### Tests +- [ ] All tests have passed. +- [ ] New tests have been added to cover the changes. (describe below if applicable). + +### Additional Information + + From 31bb78d889b58c22f2c65dab936bf8743b55862a Mon Sep 17 00:00:00 2001 From: starcat37 Date: Mon, 30 Oct 2023 19:00:47 +0900 Subject: [PATCH 3/3] docs: add database options --- .github/ISSUE_TEMPLATE.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 5c5064da..b4173717 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,8 +1,11 @@ ### Version Please specify the versions you are using. Exact version numbers are preferred. -- Pymyrepl(e.g. 1.0.2): -- Database(e.g. MySQL 8.2.0): -- OS(e.g. Ubuntu 18.04): +- Pymyrepl (e.g., 1.0.2): +- OS (e.g., Ubuntu 18.04): +- Database and version (Remove unnecessary options): + - MySQL: + - MariaDB: + - Percona: ### System Variables List relevant system variables using the query `SHOW VARIABLES LIKE '';`