Skip to content

Commit

Permalink
Update loan package, protobuf, key access, & Kotest to latest (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatel-figure authored Jun 23, 2022
1 parent a694434 commit 57ed893
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object Versions {

const val Kotlin = "1.6.21"
const val KotlinCoroutines = "1.6.2"
const val Protobuf = "3.18.1"
const val Protobuf = "3.20.1"
const val SpringBoot = "2.5.6"
const val KotlinLogging = "2.0.11"
const val Reactor = "3.4.9"
Expand All @@ -24,7 +24,7 @@ object Versions {
const val Detekt = "1.18.1"
const val Hamkrest = "1.8.0.1"
const val Mockk = "1.12.0"
const val Kotest = "5.2.+"
const val Kotest = "5.3.0"
const val KotestExtensionsArrow = "1.2.+"
const val KotestSpring = "1.1.1"
const val KotlinFaker = "1.7.1"
Expand All @@ -35,8 +35,8 @@ object Versions {
const val ProvenanceHdWallet = "0.1.15"
const val ProvenanceClient = "1.1.1"
const val Unirest = "3.13.6"
const val KeyAccessLib = "0.2.17"
const val LoanPackage = "0.2.0"
const val KeyAccessLib = "0.2.18"
const val LoanPackage = "0.3.1"
const val Grpc = "1.45.0"
const val ProvenanceProto = "1.8.0"
const val Reflections = "0.9.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class EntityManager(
)

val token = fetchToken(config)
return manager.get(args.uuid, VaultSpec(args.uuid, "${config.address}/${args.uuid}", token))
return manager.get(args.uuid.toString(), VaultSpec(args.uuid.toString(), "${config.address}/${args.uuid}", token))
}

fun hydrateKeys(permissions: PermissionInfo?, participants: List<Participant> = emptyList(), keyManagementConfig: KeyManagementConfig? = null): Set<AudienceKeyPair> {
Expand Down

0 comments on commit 57ed893

Please sign in to comment.