pact_broker-client 1.27.0 → 1.27.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/trigger_pact_cli_release.yml +15 -0
- data/.github/workflows/trigger_pact_docs_update.yml +21 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile +6 -1
- data/README.md +4 -3
- data/doc/pacts/markdown/Pact Broker Client - Pact Broker.md +10 -10
- data/lib/pact_broker/client/version.rb +1 -1
- data/pact-broker-client.gemspec +3 -4
- data/spec/pacts/pact_broker_client-pact_broker.json +10 -10
- data/spec/service_providers/pact_broker_client_matrix_spec.rb +10 -10
- metadata +16 -28
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15110442c0149360f84a89c2a12ad205a33afba9c8dbfaf825cb018a83a4b834
|
|
4
|
+
data.tar.gz: 18cb7809915309bc9d516cb651a2915d2c8bdc4c6fc979f2e9484551881ab515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 259b7ae16d75c5149ff81e873aaedf831c0bdf9ed71605d15b71fef837d1c59d8243840af66a65c42919304d17b6023ed5da1d4d88d7f6c38cc823594ecc12cd
|
|
7
|
+
data.tar.gz: 4c12f67b07c6738b0ff2774272e7a6587117171444c687aabc1390f2db8c9c667785ba44da7821f99849236879c63e72af31f33181f17cc60b7e268c6bcebd0d
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
name: Trigger release of the pact-cli Docker image
|
|
2
|
+
on:
|
|
3
|
+
release:
|
|
4
|
+
types: [published]
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- name: Repository Dispatch
|
|
11
|
+
uses: peter-evans/repository-dispatch@v1
|
|
12
|
+
with:
|
|
13
|
+
token: ${{ secrets.GHTOKENFORPACTCLIRELEASE }}
|
|
14
|
+
repository: pact-foundation/pact-ruby-cli
|
|
15
|
+
event-type: gem-released
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Trigger update to docs.pact.io
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
paths:
|
|
8
|
+
- '**.md'
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
run:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Trigger docs.pact.io update workflow
|
|
15
|
+
run: |
|
|
16
|
+
curl -X POST https://api.github.com/repos/pact-foundation/docs.pact.io/dispatches \
|
|
17
|
+
-H 'Accept: application/vnd.github.everest-preview+json' \
|
|
18
|
+
-H "Authorization: Bearer $GITHUB_TOKEN" \
|
|
19
|
+
-d '{"event_type": "pact-broker-client-docs-updated"}'
|
|
20
|
+
env:
|
|
21
|
+
GITHUB_TOKEN: ${{ secrets.GHTOKENFORTRIGGERINGPACTDOCSUPDATE }}
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
|
@@ -4,4 +4,9 @@ gemspec
|
|
|
4
4
|
|
|
5
5
|
# Not sure why jruby on Travis fails saying rake is not part of the bundle,
|
|
6
6
|
# even thought it's in the development dependencies. Trying it here.
|
|
7
|
-
gem 'rake', '~>
|
|
7
|
+
gem 'rake', '~> 13.0'
|
|
8
|
+
|
|
9
|
+
if ENV['X_PACT_DEVELOPMENT'] == 'true'
|
|
10
|
+
gem 'pact-mock_service', path: '../pact-mock_service'
|
|
11
|
+
gem 'pact-support', path: '../pact-support'
|
|
12
|
+
end
|
data/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Pact Broker Client
|
|
2
2
|
|
|
3
|
-
A client for the Pact Broker. Publishes
|
|
3
|
+
A client for the Pact Broker. Publishes and retrieves pacts, verification results, pacticipants, pacticipant versions and tags. The functionality is available via a CLI, or via Ruby Rake tasks. You can also use the [Pact CLI Docker image](https://hub.docker.com/r/pactfoundation/pact-cli).
|
|
4
4
|
|
|
5
5
|
[](https://travis-ci.org/pact-foundation/pact_broker-client)
|
|
6
6
|
|
|
7
|
+

|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
### CLI
|
|
@@ -345,6 +347,5 @@ end
|
|
|
345
347
|
bundle exec rake pact:publish
|
|
346
348
|
```
|
|
347
349
|
|
|
348
|
-
[wiki-tags]: https://github.com/pact-foundation/pact_broker/wiki/Using-tags
|
|
349
350
|
[pact-ruby-standalone]: https://github.com/pact-foundation/pact-ruby-standalone/releases
|
|
350
|
-
[docker]: https://
|
|
351
|
+
[docker]: https://hub.docker.com/r/pactfoundation/pact-cli
|
|
@@ -114,7 +114,7 @@ Upon receiving **a request for the compatibility matrix for a pacticipant that d
|
|
|
114
114
|
{
|
|
115
115
|
"method": "get",
|
|
116
116
|
"path": "/matrix",
|
|
117
|
-
"query": "q
|
|
117
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Wiffle&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Meep&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
118
118
|
}
|
|
119
119
|
```
|
|
120
120
|
Pact Broker will respond with:
|
|
@@ -137,7 +137,7 @@ Given **the pact for Foo version 1.2.3 and 1.2.4 has been verified by Bar versio
|
|
|
137
137
|
{
|
|
138
138
|
"method": "get",
|
|
139
139
|
"path": "/matrix",
|
|
140
|
-
"query": "q
|
|
140
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv"
|
|
141
141
|
}
|
|
142
142
|
```
|
|
143
143
|
Pact Broker will respond with:
|
|
@@ -201,7 +201,7 @@ Given **the pact for Foo Thing version 1.2.3 has been verified by Bar version 4.
|
|
|
201
201
|
{
|
|
202
202
|
"method": "get",
|
|
203
203
|
"path": "/matrix",
|
|
204
|
-
"query": "q
|
|
204
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo%20Thing&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
205
205
|
}
|
|
206
206
|
```
|
|
207
207
|
Pact Broker will respond with:
|
|
@@ -249,7 +249,7 @@ Given **the pact for Foo version 1.2.3 has been verified by Bar version 4.5.6**,
|
|
|
249
249
|
{
|
|
250
250
|
"method": "get",
|
|
251
251
|
"path": "/matrix",
|
|
252
|
-
"query": "q
|
|
252
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
253
253
|
}
|
|
254
254
|
```
|
|
255
255
|
Pact Broker will respond with:
|
|
@@ -297,7 +297,7 @@ Given **the pact for Foo version 1.2.3 has been successfully verified by Bar ver
|
|
|
297
297
|
{
|
|
298
298
|
"method": "get",
|
|
299
299
|
"path": "/matrix",
|
|
300
|
-
"query": "q
|
|
300
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&q%5B%5D%5Btag%5D=prod&latestby=cvpv"
|
|
301
301
|
}
|
|
302
302
|
```
|
|
303
303
|
Pact Broker will respond with:
|
|
@@ -345,7 +345,7 @@ Given **the pact for Foo version 1.2.3 has been successfully verified by Bar ver
|
|
|
345
345
|
{
|
|
346
346
|
"method": "get",
|
|
347
347
|
"path": "/matrix",
|
|
348
|
-
"query": "q
|
|
348
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true&tag=prod"
|
|
349
349
|
}
|
|
350
350
|
```
|
|
351
351
|
Pact Broker will respond with:
|
|
@@ -381,7 +381,7 @@ Given **the pact for Foo version 1.2.3 has been successfully verified by Bar ver
|
|
|
381
381
|
{
|
|
382
382
|
"method": "get",
|
|
383
383
|
"path": "/matrix",
|
|
384
|
-
"query": "q
|
|
384
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.4&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&latestby=cvpv"
|
|
385
385
|
}
|
|
386
386
|
```
|
|
387
387
|
Pact Broker will respond with:
|
|
@@ -429,7 +429,7 @@ Given **the pact for Foo version 1.2.3 has been verified by Bar version 4.5.6**,
|
|
|
429
429
|
{
|
|
430
430
|
"method": "get",
|
|
431
431
|
"path": "/matrix",
|
|
432
|
-
"query": "q
|
|
432
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
433
433
|
}
|
|
434
434
|
```
|
|
435
435
|
Pact Broker will respond with:
|
|
@@ -452,7 +452,7 @@ Given **the pact for Foo version 1.2.3 has been verified by Bar version 4.5.6 an
|
|
|
452
452
|
{
|
|
453
453
|
"method": "get",
|
|
454
454
|
"path": "/matrix",
|
|
455
|
-
"query": "q
|
|
455
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true"
|
|
456
456
|
}
|
|
457
457
|
```
|
|
458
458
|
Pact Broker will respond with:
|
|
@@ -703,7 +703,7 @@ Given **the pact for Foo version 1.2.3 has been successfully verified by Bar ver
|
|
|
703
703
|
{
|
|
704
704
|
"method": "get",
|
|
705
705
|
"path": "/matrix",
|
|
706
|
-
"query": "q
|
|
706
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv&success%5B%5D=true"
|
|
707
707
|
}
|
|
708
708
|
```
|
|
709
709
|
Pact Broker will respond with:
|
data/pact-broker-client.gemspec
CHANGED
|
@@ -21,12 +21,11 @@ Gem::Specification.new do |gem|
|
|
|
21
21
|
gem.require_paths = ["lib"]
|
|
22
22
|
gem.license = 'MIT'
|
|
23
23
|
|
|
24
|
-
gem.add_runtime_dependency 'httparty'
|
|
25
|
-
gem.add_runtime_dependency '
|
|
26
|
-
gem.add_runtime_dependency 'term-ansicolor'
|
|
24
|
+
gem.add_runtime_dependency 'httparty', '~>0.18'
|
|
25
|
+
gem.add_runtime_dependency 'term-ansicolor', '~> 1.7'
|
|
27
26
|
gem.add_runtime_dependency 'table_print', '~> 1.5'
|
|
28
27
|
gem.add_runtime_dependency 'thor', '~> 0.20'
|
|
29
|
-
gem.add_runtime_dependency 'rake' #For FileList
|
|
28
|
+
gem.add_runtime_dependency 'rake', '~> 13.0' #For FileList
|
|
30
29
|
|
|
31
30
|
gem.add_development_dependency 'fakefs', '~> 0.4'
|
|
32
31
|
gem.add_development_dependency 'webmock', '~> 3.0'
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"request": {
|
|
193
193
|
"method": "get",
|
|
194
194
|
"path": "/matrix",
|
|
195
|
-
"query": "q
|
|
195
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
196
196
|
},
|
|
197
197
|
"response": {
|
|
198
198
|
"status": 200,
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"request": {
|
|
243
243
|
"method": "get",
|
|
244
244
|
"path": "/matrix",
|
|
245
|
-
"query": "q
|
|
245
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo%20Thing&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
246
246
|
},
|
|
247
247
|
"response": {
|
|
248
248
|
"status": 200,
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
"request": {
|
|
293
293
|
"method": "get",
|
|
294
294
|
"path": "/matrix",
|
|
295
|
-
"query": "q
|
|
295
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true"
|
|
296
296
|
},
|
|
297
297
|
"response": {
|
|
298
298
|
"status": 200,
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
"request": {
|
|
343
343
|
"method": "get",
|
|
344
344
|
"path": "/matrix",
|
|
345
|
-
"query": "q
|
|
345
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
346
346
|
},
|
|
347
347
|
"response": {
|
|
348
348
|
"status": 200,
|
|
@@ -366,7 +366,7 @@
|
|
|
366
366
|
"request": {
|
|
367
367
|
"method": "get",
|
|
368
368
|
"path": "/matrix",
|
|
369
|
-
"query": "q
|
|
369
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Wiffle&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Meep&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
370
370
|
},
|
|
371
371
|
"response": {
|
|
372
372
|
"status": 400,
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
"request": {
|
|
395
395
|
"method": "get",
|
|
396
396
|
"path": "/matrix",
|
|
397
|
-
"query": "q
|
|
397
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv"
|
|
398
398
|
},
|
|
399
399
|
"response": {
|
|
400
400
|
"status": 200,
|
|
@@ -463,7 +463,7 @@
|
|
|
463
463
|
"request": {
|
|
464
464
|
"method": "get",
|
|
465
465
|
"path": "/matrix",
|
|
466
|
-
"query": "q
|
|
466
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv&success%5B%5D=true"
|
|
467
467
|
},
|
|
468
468
|
"response": {
|
|
469
469
|
"status": 200,
|
|
@@ -513,7 +513,7 @@
|
|
|
513
513
|
"request": {
|
|
514
514
|
"method": "get",
|
|
515
515
|
"path": "/matrix",
|
|
516
|
-
"query": "q
|
|
516
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&q%5B%5D%5Btag%5D=prod&latestby=cvpv"
|
|
517
517
|
},
|
|
518
518
|
"response": {
|
|
519
519
|
"status": 200,
|
|
@@ -563,7 +563,7 @@
|
|
|
563
563
|
"request": {
|
|
564
564
|
"method": "get",
|
|
565
565
|
"path": "/matrix",
|
|
566
|
-
"query": "q
|
|
566
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.4&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&latestby=cvpv"
|
|
567
567
|
},
|
|
568
568
|
"response": {
|
|
569
569
|
"status": 200,
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
"request": {
|
|
614
614
|
"method": "get",
|
|
615
615
|
"path": "/matrix",
|
|
616
|
-
"query": "q
|
|
616
|
+
"query": "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true&tag=prod"
|
|
617
617
|
},
|
|
618
618
|
"response": {
|
|
619
619
|
"status": 200,
|
|
@@ -19,7 +19,7 @@ module PactBroker::Client
|
|
|
19
19
|
with(
|
|
20
20
|
method: :get,
|
|
21
21
|
path: "/matrix",
|
|
22
|
-
query: "q
|
|
22
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
23
23
|
).
|
|
24
24
|
will_respond_with(
|
|
25
25
|
status: 200,
|
|
@@ -42,7 +42,7 @@ module PactBroker::Client
|
|
|
42
42
|
with(
|
|
43
43
|
method: :get,
|
|
44
44
|
path: "/matrix",
|
|
45
|
-
query: "q
|
|
45
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo%20Thing&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=4.5.6&latestby=cvpv"
|
|
46
46
|
).
|
|
47
47
|
will_respond_with(
|
|
48
48
|
status: 200,
|
|
@@ -67,7 +67,7 @@ module PactBroker::Client
|
|
|
67
67
|
with(
|
|
68
68
|
method: :get,
|
|
69
69
|
path: "/matrix",
|
|
70
|
-
query: "q
|
|
70
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true"
|
|
71
71
|
).
|
|
72
72
|
will_respond_with(
|
|
73
73
|
status: 200,
|
|
@@ -92,7 +92,7 @@ module PactBroker::Client
|
|
|
92
92
|
with(
|
|
93
93
|
method: :get,
|
|
94
94
|
path: "/matrix",
|
|
95
|
-
query: "q
|
|
95
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
96
96
|
).
|
|
97
97
|
will_respond_with(
|
|
98
98
|
status: 200,
|
|
@@ -119,7 +119,7 @@ module PactBroker::Client
|
|
|
119
119
|
with(
|
|
120
120
|
method: :get,
|
|
121
121
|
path: "/matrix",
|
|
122
|
-
query: "q
|
|
122
|
+
query: "q%5B%5D%5Bpacticipant%5D=Wiffle&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Meep&q%5B%5D%5Bversion%5D=9.9.9&latestby=cvpv"
|
|
123
123
|
).
|
|
124
124
|
will_respond_with(
|
|
125
125
|
status: 400,
|
|
@@ -147,7 +147,7 @@ module PactBroker::Client
|
|
|
147
147
|
with(
|
|
148
148
|
method: :get,
|
|
149
149
|
path: "/matrix",
|
|
150
|
-
query: "q
|
|
150
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv"
|
|
151
151
|
).
|
|
152
152
|
will_respond_with(
|
|
153
153
|
status: 200,
|
|
@@ -174,7 +174,7 @@ module PactBroker::Client
|
|
|
174
174
|
with(
|
|
175
175
|
method: :get,
|
|
176
176
|
path: "/matrix",
|
|
177
|
-
query: "q
|
|
177
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bpacticipant%5D=Bar&latestby=cvpv&success%5B%5D=true"
|
|
178
178
|
).
|
|
179
179
|
will_respond_with(
|
|
180
180
|
status: 200,
|
|
@@ -200,7 +200,7 @@ module PactBroker::Client
|
|
|
200
200
|
with(
|
|
201
201
|
method: :get,
|
|
202
202
|
path: "/matrix",
|
|
203
|
-
query: "q
|
|
203
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&q%5B%5D%5Btag%5D=prod&latestby=cvpv"
|
|
204
204
|
).
|
|
205
205
|
will_respond_with(
|
|
206
206
|
status: 200,
|
|
@@ -226,7 +226,7 @@ module PactBroker::Client
|
|
|
226
226
|
with(
|
|
227
227
|
method: :get,
|
|
228
228
|
path: "/matrix",
|
|
229
|
-
query: "q
|
|
229
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.4&q%5B%5D%5Bpacticipant%5D=Bar&q%5B%5D%5Blatest%5D=true&latestby=cvpv"
|
|
230
230
|
).
|
|
231
231
|
will_respond_with(
|
|
232
232
|
status: 200,
|
|
@@ -252,7 +252,7 @@ module PactBroker::Client
|
|
|
252
252
|
with(
|
|
253
253
|
method: :get,
|
|
254
254
|
path: "/matrix",
|
|
255
|
-
query: "q
|
|
255
|
+
query: "q%5B%5D%5Bpacticipant%5D=Foo&q%5B%5D%5Bversion%5D=1.2.3&latestby=cvp&latest=true&tag=prod"
|
|
256
256
|
).
|
|
257
257
|
will_respond_with(
|
|
258
258
|
status: 200,
|
metadata
CHANGED
|
@@ -1,57 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pact_broker-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.27.
|
|
4
|
+
version: 1.27.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Beth Skurrie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0'
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - ">="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: json
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
17
|
+
- - "~>"
|
|
32
18
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
19
|
+
version: '0.18'
|
|
34
20
|
type: :runtime
|
|
35
21
|
prerelease: false
|
|
36
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
23
|
requirements:
|
|
38
|
-
- - "
|
|
24
|
+
- - "~>"
|
|
39
25
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
26
|
+
version: '0.18'
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: term-ansicolor
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
44
30
|
requirements:
|
|
45
|
-
- - "
|
|
31
|
+
- - "~>"
|
|
46
32
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
33
|
+
version: '1.7'
|
|
48
34
|
type: :runtime
|
|
49
35
|
prerelease: false
|
|
50
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
37
|
requirements:
|
|
52
|
-
- - "
|
|
38
|
+
- - "~>"
|
|
53
39
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
40
|
+
version: '1.7'
|
|
55
41
|
- !ruby/object:Gem::Dependency
|
|
56
42
|
name: table_print
|
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -84,16 +70,16 @@ dependencies:
|
|
|
84
70
|
name: rake
|
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|
|
86
72
|
requirements:
|
|
87
|
-
- - "
|
|
73
|
+
- - "~>"
|
|
88
74
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
75
|
+
version: '13.0'
|
|
90
76
|
type: :runtime
|
|
91
77
|
prerelease: false
|
|
92
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
79
|
requirements:
|
|
94
|
-
- - "
|
|
80
|
+
- - "~>"
|
|
95
81
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0'
|
|
82
|
+
version: '13.0'
|
|
97
83
|
- !ruby/object:Gem::Dependency
|
|
98
84
|
name: fakefs
|
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -173,6 +159,8 @@ executables:
|
|
|
173
159
|
extensions: []
|
|
174
160
|
extra_rdoc_files: []
|
|
175
161
|
files:
|
|
162
|
+
- ".github/workflows/trigger_pact_cli_release.yml"
|
|
163
|
+
- ".github/workflows/trigger_pact_docs_update.yml"
|
|
176
164
|
- ".gitignore"
|
|
177
165
|
- ".rspec"
|
|
178
166
|
- ".travis.yml"
|