From a61fcae8d6083b90452f39a7e162a91592316fe3 Mon Sep 17 00:00:00 2001 From: Matt Fellows Date: Sat, 12 Aug 2017 18:55:37 +1000 Subject: [PATCH] feat(upgrade): update to latest pact standalone v1.4.2 --- examples/gin/provider/user_service_test.go | 1 + scripts/build_standalone_packages.sh | 2 +- scripts/package.sh | 3 --- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/gin/provider/user_service_test.go b/examples/gin/provider/user_service_test.go index fcba89437..444080c1e 100644 --- a/examples/gin/provider/user_service_test.go +++ b/examples/gin/provider/user_service_test.go @@ -24,6 +24,7 @@ func TestPact_Provider(t *testing.T) { ProviderBaseURL: fmt.Sprintf("http://localhost:%d", port), PactURLs: []string{filepath.ToSlash(fmt.Sprintf("%s/billy-bobby.json", pactDir))}, ProviderStatesSetupURL: fmt.Sprintf("http://localhost:%d/setup", port), + Verbose: true, }) if err != nil { diff --git a/scripts/build_standalone_packages.sh b/scripts/build_standalone_packages.sh index 220011c71..468607676 100755 --- a/scripts/build_standalone_packages.sh +++ b/scripts/build_standalone_packages.sh @@ -5,7 +5,7 @@ set -e mkdir -p build cd build -PACT_STANDALONE_VERSION=1.3.1 +PACT_STANDALONE_VERSION=1.4.2 urls=(https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v$PACT_STANDALONE_VERSION/pact-$PACT_STANDALONE_VERSION-linux-x86.tar.gz https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v$PACT_STANDALONE_VERSION/pact-$PACT_STANDALONE_VERSION-linux-x86_64.tar.gz https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v$PACT_STANDALONE_VERSION/pact-$PACT_STANDALONE_VERSION-osx.tar.gz https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v$PACT_STANDALONE_VERSION/pact-$PACT_STANDALONE_VERSION-win32.zip) # Provider Verifier diff --git a/scripts/package.sh b/scripts/package.sh index ed314a670..4880ff051 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -2,9 +2,6 @@ set -e -export PACT_MOCK_SERVICE_VERSION=2.1.0 # Seg faults... -export PACT_PROVIDER_VERIFIER_VERSION=1.3.1-1 - echo "==> Building App" make bin