Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
This commit is contained in:
commit
75812807d1
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
42
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,42 +0,0 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve phpMyAdmin
|
||||
|
||||
---
|
||||
|
||||
### Describe the bug
|
||||
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
### To Reproduce
|
||||
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
### Expected behavior
|
||||
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
### Screenshots
|
||||
|
||||
If applicable, add screenshots to help explain the bug.
|
||||
|
||||
### Server configuration
|
||||
|
||||
- Operating system:
|
||||
- Web server:
|
||||
- Database version:
|
||||
- PHP version:
|
||||
- phpMyAdmin version:
|
||||
|
||||
### Client configuration
|
||||
|
||||
- Browser:
|
||||
- Operating system:
|
||||
|
||||
### Additional context
|
||||
|
||||
Add any other context about the bug here.
|
||||
89
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
89
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
name: Bug report
|
||||
description: Create a report to help us improve phpMyAdmin
|
||||
title: "[Bug]: "
|
||||
labels: ["Bug"]
|
||||
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Describe the bug
|
||||
description: A clear and concise description of what the bug is.
|
||||
placeholder: When ...
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: how-to-reproduce
|
||||
attributes:
|
||||
label: How to Reproduce
|
||||
description: Give us the steps to reproduce the bug on our side.
|
||||
placeholder: |
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: Expected behavior
|
||||
description: A clear and concise description of what you expected to happen.
|
||||
placeholder: I expected ...
|
||||
- type: textarea
|
||||
id: screenshots
|
||||
attributes:
|
||||
label: Screenshots
|
||||
description: If applicable, add screenshots to help explain the bug.
|
||||
- type: dropdown
|
||||
id: operating-systems
|
||||
attributes:
|
||||
label: Operating System
|
||||
description: In which operating system this bug appears?
|
||||
multiple: true
|
||||
options:
|
||||
- Linux
|
||||
- macOS
|
||||
- Windows
|
||||
- type: input
|
||||
id: web-server
|
||||
attributes:
|
||||
label: Web Server
|
||||
placeholder: Apache/2.4.63
|
||||
- type: dropdown
|
||||
id: database-server
|
||||
attributes:
|
||||
label: Database Server
|
||||
description: In which database server this bug appears?
|
||||
multiple: true
|
||||
options:
|
||||
- MySQL
|
||||
- MariaDB
|
||||
- PerconaDB
|
||||
- AuroraDB (by AWS)
|
||||
- Other
|
||||
- type: input
|
||||
id: database-version
|
||||
attributes:
|
||||
label: Database version
|
||||
placeholder: SELECT @@version;
|
||||
- type: input
|
||||
id: php-version
|
||||
attributes:
|
||||
label: PHP version
|
||||
placeholder: 8.3.1
|
||||
- type: input
|
||||
id: phpmyadmin-version
|
||||
attributes:
|
||||
label: phpMyAdmin version
|
||||
placeholder: 5.2.1
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: browser
|
||||
attributes:
|
||||
label: browser
|
||||
placeholder: Firefox v136.0.2
|
||||
- type: textarea
|
||||
id: additional-context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: Add any other context about the bug here.
|
||||
23
.github/ISSUE_TEMPLATE/feature_request.md
vendored
23
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,23 +0,0 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for phpMyAdmin
|
||||
|
||||
---
|
||||
|
||||
### Is your feature request related to a problem? Please describe.
|
||||
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
### Describe the solution you'd like
|
||||
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
### Describe alternatives you've considered
|
||||
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
### Additional context
|
||||
|
||||
- phpMyAdmin version:
|
||||
|
||||
Add any other context or screenshots about the feature request here.
|
||||
45
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
45
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Feature request
|
||||
description: Suggest an idea for phpMyAdmin
|
||||
title: "[Feat]: "
|
||||
labels: ["Enhancement"]
|
||||
|
||||
body:
|
||||
- type: input
|
||||
id: phpmyadmin-version
|
||||
attributes:
|
||||
label: phpMyAdmin version
|
||||
placeholder: 5.2.1
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: feat-description
|
||||
attributes:
|
||||
label: Describe the feature
|
||||
description: Is your feature request related to a problem? Please describe.
|
||||
placeholder: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: solution-description
|
||||
attributes:
|
||||
label: Describe the solution
|
||||
description: Describe the solution you'd like
|
||||
placeholder: A clear and concise description of what you want to happen.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: alternatives-description
|
||||
attributes:
|
||||
label: Describe the alternatives
|
||||
description: Describe alternatives you've considered
|
||||
placeholder: A clear and concise description of any alternative solutions or features you've considered.
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: additional-context
|
||||
attributes:
|
||||
label: Additional context
|
||||
description: Add additional context here
|
||||
placeholder: Add any other context or screenshots about the feature request here.
|
||||
validations:
|
||||
required: false
|
||||
11
.github/ISSUE_TEMPLATE/security_report.md
vendored
11
.github/ISSUE_TEMPLATE/security_report.md
vendored
@ -1,11 +0,0 @@
|
||||
---
|
||||
name: Security report
|
||||
about: Disclose a security vulnerability responsibly by first reporting it to us privately
|
||||
|
||||
---
|
||||
|
||||
Security problems should not be reported here.
|
||||
|
||||
See our security page: https://www.phpmyadmin.net/security/
|
||||
|
||||
Thanks for your help!
|
||||
18
.github/ISSUE_TEMPLATE/security_report.yml
vendored
Normal file
18
.github/ISSUE_TEMPLATE/security_report.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Security report
|
||||
description: Disclose a security vulnerability responsibly by first reporting it to us privately
|
||||
title: "[Security]: "
|
||||
labels: ["Bug"]
|
||||
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: DON'T REPORT IN HERE
|
||||
placeholder: |
|
||||
Security problems should not be reported here.
|
||||
|
||||
See our security page: https://www.phpmyadmin.net/security/
|
||||
|
||||
Thanks for your help!
|
||||
validations:
|
||||
required: true
|
||||
Loading…
Reference in New Issue
Block a user