Skip to content

Commit

Permalink
update pact-jvm to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbwheatley committed Nov 20, 2022
1 parent 3437dfc commit 11cafc8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/resources/pacts/munit-consumer-munit-provider.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
],
"metadata": {
"pact-jvm": {
"version": "4.3.15"
"version": "4.4.0"
},
"pactSpecification": {
"version": "3.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
],
"metadata": {
"pact-jvm": {
"version": "4.3.15"
"version": "4.4.0"
},
"pactSpecification": {
"version": "3.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ final class ProviderInfoBuilder private (
case Right(_) =>
val pactJvmAuth: Auth = p.auth match {
case None => Auth.None.INSTANCE
case Some(TokenAuth(token)) => new Auth.BearerAuthentication(token)
case Some(TokenAuth(token)) => new Auth.BearerAuthentication(token, Auth.DEFAULT_AUTH_HEADER)
case Some(BasicAuth(user, pass)) => new Auth.BasicAuthentication(user, pass)
}
val brokerOptions: PactBrokerOptions = new PactBrokerOptions(
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Dependencies {

val mockito = "4.9.0"

val pactJvm = "4.3.16"
val pactJvm = "4.4.0"

val http4s = "1.0.0-M30"

Expand Down

0 comments on commit 11cafc8

Please sign in to comment.