From 743e71157f22050f5ed99de7e7c259386bba03cd Mon Sep 17 00:00:00 2001 From: creeper123123321 <7974274+creeper123123321@users.noreply.github.com> Date: Wed, 26 Oct 2022 19:20:18 -0300 Subject: [PATCH] issue template (#220) --- .github/ISSUE_TEMPLATE/bug_report.yml | 92 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 ++ .github/ISSUE_TEMPLATE/feature_request.yml | 38 +++++++++ build.gradle.kts | 4 +- 4 files changed, 140 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..aeb9f27 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,92 @@ +name: Bug Report +description: Report a bug or console error +labels: [bug] + +body: + - type: markdown + attributes: + value: | + **Before reporting a bug, please see if using latest build fixes your issue.** + Whenever you see fit, you can upload images or videos to any of the text fields. + + - type: input + attributes: + label: "`viaversion dump` Output" + description: | + Run `viaversion dump` in the console, then copy and paste the given link here. + placeholder: | + https://dump.viaversion.com/... + validations: + required: true + + - type: textarea + attributes: + label: Console Error + description: | + If you encounter warnings/errors in your console, **paste them with https://paste.gg/ and put the paste link here**. + If the error is small/less than 10 lines, you may put it directly into this field. + value: | + ``` + Put the paste.gg link or text here. + ``` + placeholder: Please do not remove the grave accents; simply replace the line of text in the middle. + validations: + required: false + + - type: textarea + attributes: + label: Bug Description + description: | + Describe the unexpected behavior. + If you want to attach screenshots, use the comment field at the bottom of the page. + placeholder: | + Example: "Placing signs on 1.13.2 causes text to disappear." + validations: + required: true + + - type: textarea + attributes: + label: Steps to Reproduce + description: | + List the steps on how we can reproduce the issue. Make sure we can easily understand what you mean with each step. + placeholder: | + Example: + 1. Login with a 1.13.2 client + 2. Place a sign + 3. The sign text is displayed wrong + validations: + required: true + + - type: textarea + attributes: + label: Expected Behavior + description: | + Describe what exactly you expected to happen. + placeholder: | + Example: "Placed sign text should not disappear." + validations: + required: true + + - type: textarea + attributes: + label: Additional Server Info + description: | + Does the backend server use a proxy (eg. BungeeCord)? What software are used and what plugins/mods (Check with F3 debug menu)? + placeholder: | + Example: "I also use BungeeCord with the following plugins: x, y, z" + validations: + required: false + + - type: checkboxes + attributes: + label: Checklist + description: Make sure you have followed each of the steps outlined here. + options: + - label: I have checked if this is specific to VIAaaS platform, and doesn't happen when running it on other platforms (Paper/Sponge/Velocity/Waterfall). + required: false + - label: I have included a ViaVersion dump. + required: true + - label: If applicable, I have included a paste (**not a screenshot**) of the error. + required: true + - label: I have tried the latest build(s) and the issue still persists. + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ab6b4b0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: Latest build + url: https://github.com/ViaVersion/VIAaaS/actions + about: Before reporting a bug, please check if using latest from our ci fixes your issue. + - name: ViaVersion Discord + url: https://discord.gg/viaversion + about: For smaller issues or questions, you can also join our Discord server. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..0f1eb56 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,38 @@ +name: Feature Request +description: Suggest a feature to be added +labels: [Feature Request] + +body: + - type: textarea + attributes: + label: Problem Description + description: | + Describe the issue you are facing or why you need the feature to be added. + placeholder: | + I am always frustrated with... + validations: + required: true + + - type: textarea + attributes: + label: Solution Description + description: | + Describe the solution you would like to see. + validations: + required: true + + - type: textarea + attributes: + label: Alternatives + description: | + Describe alternatives you have considered. + validations: + required: false + + - type: textarea + attributes: + label: Additional Info + description: | + Does the feature apply to any specific version or environment? + validations: + required: false diff --git a/build.gradle.kts b/build.gradle.kts index 8aa8f97..470cc71 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -66,7 +66,7 @@ dependencies { implementation("com.viaversion:viabackwards:$vbVer") { isTransitive = false } implementation("com.github.ViaVersion.ViaRewind:viarewind-all:$vrVer") { isTransitive = false } - val nettyVer = "4.1.82.Final" + val nettyVer = "4.1.84.Final" implementation("io.netty:netty-handler-proxy:$nettyVer") implementation("io.netty:netty-resolver-dns:$nettyVer") implementation("io.netty:netty-transport-native-epoll:$nettyVer:linux-aarch_64") @@ -111,7 +111,7 @@ dependencies { implementation("io.ktor:ktor-client-logging-jvm:$ktorVersion") testImplementation("io.ktor:ktor-server-test-host-jvm:$ktorVersion") - implementation("com.auth0:java-jwt:4.0.0") + implementation("com.auth0:java-jwt:4.1.0") } val run: JavaExec by tasks