From 31fe4ce9489107257149575840d14ede8c7ae79d Mon Sep 17 00:00:00 2001 From: Matt Fellows Date: Thu, 1 Jun 2017 13:18:27 +1000 Subject: [PATCH] chore(release): release v1.1.0 --- CHANGELOG.md | 6 ++++++ README.md | 18 ++---------------- lib/pact/provider_verifier/version.rb | 2 +- 3 files changed, 9 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f60833..5a6d01b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ Do this to generate your change history git log --pretty=format:' * %h - %s (%an, %ad)' vX.Y.Z..HEAD +### 1.1.0 (01 June 2017) +* 7106832 - chore(docs): update docs for provider states URL (Matt Fellows, Fri May 26 22:45:09 2017 +1000) +* 8f787e6 - Add deprecation warning for --provider-states-url (Beth Skurrie, Fri May 26 20:51:48 2017 +1000) +* 982ba7c - Remove need for provider-states-url by dynamically calling the set up code during test execution (Beth Skurrie, Fri May 26 16:30:14 2017 +1000) +* f055375 - Turn silent mode on for zip task in rake package (Beth Skurrie, Tue May 23 09:34:51 2017 +1000) + ### 1.0.2 (23 May 2017) * 33f0811 - Upgrade rspec version to ~>3.5 to fix #11 (Beth Skurrie, Tue May 23 09:01:07 2017 +1000) diff --git a/README.md b/README.md index 8793a54..48a0163 100644 --- a/README.md +++ b/README.md @@ -53,20 +53,7 @@ bundle install Execute pact provider verification against a provider which implements the following: -* an http get endpoint (`--provider-states-url`) which returns the available [Provider States](https://docs.pact.io/documentation/provider_states.html), grouped by consumer and returning an HTTP `200`: - - { - "SomeUI": [ - "customer A is logged in", - "customer A has a million dollars" - ], - "BackendAPI": [ - "customer A is logged in", - "there are no customers" - ] - } - -* an http post endpoint (`--provider-states-setup-url`) which sets the active pact consumer and provider state accepting two parameters: `consumer` and `state` and returns an HTTP `200` eg. +* an http POST endpoint (`--provider-states-setup-url`) which sets the active pact consumer and provider state accepting two parameters: `consumer` and `state` and returns an HTTP `200` eg. consumer=web&state=customer%20is%20logged%20in @@ -74,7 +61,6 @@ The following flags are required: * `--pact-urls` - a comma delimited list of pact file urls * `--provider-base-url` - the base url of the pact provider -* `--provider-states-url` - the full url of the endpoint which returns provider states by consumer * `--provider-states-setup-url` - the full url of the endpoint which sets the active pact consumer and provider state ### Using the Pact Broker with Basic authentication @@ -84,7 +70,7 @@ The following flags are required to use basic authentication with a Pact Broker: * `--broker-user` - the Username for Pact Broker basic authentication. * `--broker-password` - the Password for Pact Broker basic authentication. -NOTE: the `http://user:password@host` format for basic HTTP auth is not supported. +NOTE: the `http://user:password@host` format for basic HTTP auth is not supported. ## Contributing diff --git a/lib/pact/provider_verifier/version.rb b/lib/pact/provider_verifier/version.rb index 769b072..6e88af4 100644 --- a/lib/pact/provider_verifier/version.rb +++ b/lib/pact/provider_verifier/version.rb @@ -1,5 +1,5 @@ module Pact module ProviderVerifier - VERSION = "1.0.2" + VERSION = "1.1.0" end end