Skip to content

Commit

Permalink
Merge branch 'master' into bg-3362-nullcheckincliaForOutofState
Browse files Browse the repository at this point in the history
  • Loading branch information
brick-green committed Dec 10, 2021
2 parents fa454a1 + e72a8b1 commit dda7ee1
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 5 deletions.
62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/FORM-NAME.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
10 changes: 5 additions & 5 deletions prime-router/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -90,7 +90,7 @@ fun addVaultValuesToEnv(env: MutableMap<String, Any>) {

defaultTasks("package")

val ktorVersion = "1.6.4"
val ktorVersion = "1.6.7"
val kotlinVersion = "1.6.0"
jacoco.toolVersion = "0.8.7"

Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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") {
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit dda7ee1

Please sign in to comment.