- Introduced bug report and feature request templates for better issue tracking. - Added release workflow for automated versioning and package publishing. - Updated dependencies in `pyproject.toml` for improved functionality. - Refactored API endpoints to use `httpx` for better performance and error handling. - Added new methods in `BookController` and `KOMGAPI_REST` for enhanced book and series management. - Updated schemas to include optional fields for better data handling.
34 lines
870 B
YAML
34 lines
870 B
YAML
name: Bug Report
|
|
description: Report a bug in this project
|
|
labels:
|
|
- kind/bug
|
|
- triage
|
|
body:
|
|
|
|
- type: textarea
|
|
id: bug
|
|
attributes:
|
|
label: Describe the bug
|
|
description: |
|
|
A clear and concise description of what the bug is.
|
|
What did you expect to happen? What happened instead?
|
|
Include screenshots if applicable.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: |
|
|
A clear and concise description of how to reproduce the bug.
|
|
Include steps, code snippets, or screenshots if applicable.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: additional-info
|
|
attributes:
|
|
label: Additional information
|
|
description: |
|
|
Add any other context or screenshots about the bug here.
|
|
|
|
|