-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: blagoev <[email protected]>
- Loading branch information
Showing
3 changed files
with
110 additions
and
0 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,77 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: [Bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Repro steps | ||
description: If you can reproduce the issue, please provide detailed repro steps here or provide a link to a repro project. | ||
placeholder: 1. X, 2. Y, 3. Crash! | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of the Dart/Flutter SDK are you using? | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: flavour | ||
attributes: | ||
label: What Realm SDK flavor are you using? | ||
options: | ||
- MongoDB Atlas (i.e. Sync, auth, functions) | ||
- Local Database only | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: app-type | ||
attributes: | ||
label: What type of application is this? | ||
options: | ||
- Flutter Application | ||
- Dart standalone application | ||
- Other | ||
validations: | ||
required: true | ||
- type: input | ||
id: client-platforms | ||
attributes: | ||
label: Client OS and version | ||
description: What Client OS and version are you seeing the issue on? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code-snippets | ||
attributes: | ||
label: Code snippets | ||
description: Please provide a code sample or test case that highlights the issue. If relevant, include your model definitions. | ||
placeholder: Your code here | ||
- type: textarea | ||
id: stacktrace | ||
attributes: | ||
label: Stacktrace of the exception/crash you're getting | ||
description: If you're getting an exception or a crash, please paste the stacktrace here. | ||
render: shell | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. | ||
render: shell |
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,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: General Questions and Inquiries | ||
url: https://www.mongodb.com/community/forums/tags/c/atlas-app-services-realm/realm/58/flutter | ||
about: Please ask general design/architecture questions in the community forums. | ||
- name: MongoDB Atlas (Device Sync) Production Issues | ||
url: https://support.mongodb.com/ | ||
about: Please report urgent production issues to the support portal directly. |
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,25 @@ | ||
name: Feature Request | ||
description: Request a new feature or enhancement | ||
labels: [Enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to suggest improvements to the Realm Flutter and Dart SDK! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Tell us, what you would like to improve? | ||
placeholder: Describe your improvement... | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: importance | ||
attributes: | ||
label: How important is this improvement for you? | ||
options: | ||
- Dealbreaker | ||
- Would be a major improvement | ||
- I'd like to see it, but have a workaround | ||
- Fairly niche, but nice to have anyway |