diff --git a/.github/ISSUE_TEMPLATE/FORM-NAME.yml b/.github/ISSUE_TEMPLATE/FORM-NAME.yml new file mode 100644 index 00000000000..ba8cdfe72b0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FORM-NAME.yml @@ -0,0 +1,62 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug", "triage"] +assignees: + - octocat +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: reportstream@cdc.gov + validations: + required: false + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of our software are you running? + options: + - 1.0.2 (Default) + - 1.0.3 (Edge) + validations: + required: true + - type: dropdown + id: browsers + attributes: + label: What browsers are you seeing the problem on? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Microsoft Edge + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com) + options: + - label: I agree to follow this project's Code of Conduct + required: true diff --git a/prime-router/build.gradle.kts b/prime-router/build.gradle.kts index ef6567d34c2..6f84035063f 100644 --- a/prime-router/build.gradle.kts +++ b/prime-router/build.gradle.kts @@ -28,7 +28,7 @@ import java.util.Properties plugins { kotlin("jvm") version "1.6.0" - id("org.flywaydb.flyway") version "8.0.4" + id("org.flywaydb.flyway") version "8.2.0" id("nu.studer.jooq") version "6.0.1" id("com.github.johnrengelman.shadow") version "7.1.0" id("com.microsoft.azure.azurefunctions") version "1.8.1" @@ -90,7 +90,7 @@ fun addVaultValuesToEnv(env: MutableMap) { defaultTasks("package") -val ktorVersion = "1.6.4" +val ktorVersion = "1.6.7" val kotlinVersion = "1.6.0" jacoco.toolVersion = "0.8.7" @@ -574,7 +574,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2") implementation("com.microsoft.azure.functions:azure-functions-java-library:1.4.2") - implementation("com.azure:azure-core:1.22.0") + implementation("com.azure:azure-core:1.23.1") implementation("com.azure:azure-core-http-netty:1.11.2") implementation("com.azure:azure-storage-blob:12.14.1") { exclude(group = "com.azure", module = "azure-core") @@ -605,7 +605,7 @@ dependencies { implementation("ca.uhn.hapi:hapi-base:2.3") implementation("ca.uhn.hapi:hapi-structures-v251:2.3") implementation("com.googlecode.libphonenumber:libphonenumber:8.12.38") - implementation("org.thymeleaf:thymeleaf:3.0.12.RELEASE") + implementation("org.thymeleaf:thymeleaf:3.0.14.RELEASE") implementation("com.sendgrid:sendgrid-java:4.8.0") implementation("com.okta.jwt:okta-jwt-verifier:0.5.1") implementation("com.github.kittinunf.fuel:fuel:2.3.1") { @@ -660,7 +660,7 @@ dependencies { testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2") testImplementation("com.github.KennethWussmann:mock-fuel:1.3.0") testImplementation("io.mockk:mockk:1.12.1") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2") testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25") testImplementation("io.ktor:ktor-client-mock:$ktorVersion") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")