-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #613 from viash-io/develop_0_8
Release 0.8.2
- Loading branch information
Showing
42 changed files
with
1,085 additions
and
133 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,106 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[BUG] " | ||
labels: [bug] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you for taking the time to report a bug | ||
Please fill out this form as completely as possible. | ||
- type: input | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: A clear and concise description of what the bug is. | ||
placeholder: e.g., I get the following error when building a component with Viash. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
Contents of `config.vsh.yaml`: | ||
```yaml | ||
... | ||
``` | ||
Contents of `script.py`: | ||
```python | ||
... | ||
``` | ||
Steps to reproduce: | ||
```bash | ||
... | ||
`` | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
placeholder: e.g., The application should save my data and remain stable. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please add any relevant logs or error messages. | ||
placeholder: | | ||
``` | ||
Your log output here. | ||
``` | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: The version of the software where the bug was encountered. | ||
placeholder: | | ||
- OS: [e.g., Ubuntu 20.04] | ||
- Java Version: [e.g., 11] | ||
- Viash Version: [e.g. 0.8.1] | ||
- Python Version: [if applicable, e.g. 3.10] | ||
- R Version: [if applicable, e.g. 4.0] | ||
- Docker Version: [if applicable] | ||
- Nextflow Version: [if applicable] | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: possible-solution | ||
attributes: | ||
label: Possible solution | ||
description: Feel free to suggest a possible solution for the bug. | ||
|
||
|
||
- type: checkboxes | ||
id: confirm | ||
attributes: | ||
label: Confirmation | ||
description: | | ||
Please make sure you have checked the following. | ||
options: | ||
- label: I have searched the existing issues to make sure this is not a duplicate. | ||
required: true | ||
- label: I have provided clear and concise information about the bug. | ||
required: true | ||
|
||
- type: input | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. |
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,70 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[FEATURE] " | ||
labels: [enhancement] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you for your feature request | ||
Please fill out this form to help us understand your idea. | ||
- type: input | ||
id: feature-summary | ||
attributes: | ||
label: Feature summary | ||
description: A brief summary of the feature. | ||
placeholder: e.g., Add a dark mode option. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Feature description | ||
description: A detailed description of the feature. | ||
placeholder: Describe the feature you'd like to see, how it works, and what it would accomplish. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Why is this feature beneficial? | ||
description: Explain why this feature would be useful to the project and its users. | ||
placeholder: e.g., A dark mode would reduce eye strain for users working in low-light conditions. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives-considered | ||
attributes: | ||
label: Alternatives considered | ||
description: Describe any alternative solutions or features you've considered. | ||
placeholder: e.g., Instead of a full dark mode, a feature to adjust screen brightness could be implemented. | ||
|
||
|
||
- type: input | ||
id: possible-solution | ||
attributes: | ||
label: Possible solution | ||
description: Feel free to suggest a possible implementation for the feature. | ||
|
||
- type: checkboxes | ||
id: confirm | ||
attributes: | ||
label: Confirmation | ||
description: | | ||
Please confirm the following before submitting. | ||
options: | ||
- label: I have searched the existing issues to make sure this is not a duplicate request. | ||
required: true | ||
- label: I have provided clear and concise information about the feature. | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
### Thank you for contributing to our project! | ||
Your feature request will be reviewed, and we'll get back to you as soon as possible. |
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 |
---|---|---|
@@ -1,18 +1,45 @@ | ||
## Describe your changes | ||
|
||
## Issue ticket number and link | ||
Closes #xxxx (Replace xxxx with the GitHub issue number) | ||
<!-- | ||
Please include a summary of the change and which issue is fixed. | ||
--> | ||
|
||
## Checklist before requesting a review | ||
- [ ] I have performed a self-review of my code | ||
## Related issue(s) | ||
|
||
- Does this PR contain: | ||
- [ ] Breaking changes | ||
- [ ] New functionality | ||
- [ ] Major changes | ||
- [ ] Minor changes | ||
- [ ] Bug fixes | ||
<!-- Replace xxxx with the GitHub issue number. --> | ||
|
||
- [ ] Proposed changes are described in the CHANGELOG.md | ||
Closes #xxxx | ||
|
||
## Type of Change | ||
|
||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] New functionality (non-breaking change which adds functionality) | ||
- [ ] Major change (non-breaking change which modifies existing functionality) | ||
- [ ] Minor change (non-breaking change which does not modify existing functionality) | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] This change requires a documentation update | ||
|
||
## Checklist | ||
|
||
Requirements: | ||
|
||
- [ ] I have read the [CONTRIBUTING](CONTRIBUTING.md) doc. | ||
- [ ] I have performed a self-review of my code by checking the "Changed Files" tab. | ||
- [ ] My code follows the code style of this project. | ||
|
||
Tests: | ||
|
||
- [ ] I have added tests that prove my fix is effective or that my feature works. | ||
- [ ] New and existing unit tests pass locally with my changes. | ||
|
||
Documentation: | ||
|
||
- [ ] Proposed changes are described in the CHANGELOG.md. | ||
- [ ] I have updated the documentation accordingly. | ||
|
||
## Test Environment | ||
|
||
<!-- | ||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test environment. | ||
--> | ||
|
||
- [ ] Relevant unit tests have been added |
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
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
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
Oops, something went wrong.