pact-provider-verifier 1.16.0 → 1.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6aaa2449696ee3831573ec483077f0b8262e54c24a8d98dc2bf9333ff32d916e
4
- data.tar.gz: c5c723af674ded08ccc2577828c19c3156574d3521d5022d0de87deb738e5297
3
+ metadata.gz: e8f2845cce38788cc0241f33bd904fe6450116e71105e40e6c63f0fa577f4e6d
4
+ data.tar.gz: 8e9a4f0d417052fb57cb9986c105990b39cad6a94f4501bd6e5f0f673c6bf608
5
5
  SHA512:
6
- metadata.gz: 037c6cefcc939635ab745c594ea1512aaca1683986a2f75d80b984f0b6f19d294b42d6a6a29b9f8566457f0ab256d0dce0822208f05870227761233ca5ab36b9
7
- data.tar.gz: 38f4a53c8a6013026b8f1b108e326f536ed05cda4e919a8cdd7fdc0950345d0ca1b0ed93e5cd07961eaca45fca8106e30ee36a60e39e2b47a1d4a7411d779043
6
+ metadata.gz: 0bcbd0c5c3e3578546644fcf8ac957244c64dec810d5bb9ef2a9d4e5a064c9ab5694a6c4bd3bebf15e575070fd57ae42411917e5d7b8f002143058f7391e3e9a
7
+ data.tar.gz: 54b83559ebf1ec81157cd1733f32c550b3d4cbcb6093c911c066cc68b91e5f2c36a6331aeaac568bd8d9ff4cec16f4b823f51ac6826689858b03a07d4c835b57
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ <a name="v1.16.1-1"></a>
2
+ ### v1.16.1-1 (2018-09-05)
3
+
4
+
5
+ #### Features
6
+
7
+ * **cli**
8
+ * update help text ([740dc4b](/../../commit/740dc4b))
9
+
10
+
1
11
  <a name="v1.16.0-1"></a>
2
12
  ### v1.16.0-1 (2018-07-24)
3
13
 
data/README.md CHANGED
@@ -40,16 +40,34 @@ Usage:
40
40
  pact-provider-verifier PACT_URL ... -h, --provider-base-url=PROVIDER_BASE_URL
41
41
 
42
42
  Options:
43
- -h, --provider-base-url=PROVIDER_BASE_URL # Provider host URL
44
- -c, [--provider-states-setup-url=PROVIDER_STATES_SETUP_URL] # Base URL to setup the provider states at
45
- -a, [--provider-app-version=PROVIDER_APP_VERSION] # Provider application version, required when publishing verification results
46
- -r, [--publish-verification-results=PUBLISH_VERIFICATION_RESULTS] # Publish verification results to the broker
47
- -n, [--broker-username=BROKER_USERNAME] # Pact Broker basic auth username
48
- -p, [--broker-password=BROKER_PASSWORD] # Pact Broker basic auth password
49
- [--custom-provider-header=CUSTOM_PROVIDER_HEADER] # Header to add to provider state set up and pact verification requests. eg 'Authorization: Basic cGFjdDpwYWN0'. May be specified multiple times.
50
- -v, [--verbose=VERBOSE] # Verbose output
51
- -f, [--format=FORMATTER] # RSpec formatter. Defaults to custom Pact formatter. json and RspecJunitFormatter may also be used.
52
- -u, [--pact-urls=PACT_URLS] # DEPRECATED. Please provide as space separated arguments.
43
+ -h, --provider-base-url=PROVIDER_BASE_URL
44
+ # Provider host URL
45
+ -c, [--provider-states-setup-url=PROVIDER_STATES_SETUP_URL]
46
+ # Base URL to setup the provider states at
47
+ [--pact-broker-base-url=PACT_BROKER_BASE_URL]
48
+ # Base URL of the Pact Broker from which to retrieve the pacts.
49
+ -n, [--broker-username=BROKER_USERNAME]
50
+ # Pact Broker basic auth username
51
+ -p, [--broker-password=BROKER_PASSWORD]
52
+ # Pact Broker basic auth password
53
+ [--provider=PROVIDER]
54
+ [--consumer-version-tag=TAG]
55
+ # Retrieve the latest pacts with this consumer version tag.
56
+ Used in conjuction with --provider. May be specified multiple times.
57
+ -a, [--provider-app-version=PROVIDER_APP_VERSION]
58
+ # Provider application version, required when publishing verification results
59
+ -r, [--publish-verification-results=PUBLISH_VERIFICATION_RESULTS]
60
+ # Publish verification results to the broker
61
+ [--custom-provider-header=CUSTOM_PROVIDER_HEADER]
62
+ # Header to add to provider state set up and pact verification requests.
63
+ eg 'Authorization: Basic cGFjdDpwYWN0'. May be specified multiple times.
64
+ -v, [--verbose=VERBOSE]
65
+ # Verbose output
66
+ -f, [--format=FORMATTER]
67
+ # RSpec formatter. Defaults to custom Pact formatter. Other options are
68
+ json and RspecJunitFormatter (which outputs xml).
69
+ -o, [--out=FILE]
70
+ # Write output to a file instead of $stdout.
53
71
 
54
72
  Verify pact(s) against a provider. Supports local and networked (http-based) files.
55
73
  ```
@@ -17,7 +17,7 @@ module Pact
17
17
  method_option :broker_username, aliases: "-n", desc: "Pact Broker basic auth username", :required => false
18
18
  method_option :broker_password, aliases: "-p", desc: "Pact Broker basic auth password", :required => false
19
19
  method_option :provider, required: false
20
- method_option :consumer_version_tag, type: :array, desc: "Retrieve the latest pacts with this consumer version tag. Used in conjuction with --provider.", :required => false
20
+ method_option :consumer_version_tag, type: :array, banner: "TAG", desc: "Retrieve the latest pacts with this consumer version tag. Used in conjuction with --provider. May be specified multiple times.", :required => false
21
21
  method_option :provider_app_version, aliases: "-a", desc: "Provider application version, required when publishing verification results", :required => false
22
22
  method_option :publish_verification_results, aliases: "-r", desc: "Publish verification results to the broker", required: false
23
23
  method_option :custom_provider_header, type: :array, banner: 'CUSTOM_PROVIDER_HEADER', desc: "Header to add to provider state set up and pact verification requests. eg 'Authorization: Basic cGFjdDpwYWN0'. May be specified multiple times.", :required => false
@@ -1,5 +1,5 @@
1
1
  module Pact
2
2
  module ProviderVerifier
3
- VERSION = "1.16.0"
3
+ VERSION = "1.16.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact-provider-verifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Fellows