Viktoriia Vlasiuk
01/10/2023, 8:53 AMAnandhi Muthukumarasamy
01/10/2023, 8:12 PMSiddharth Gupta
01/11/2023, 9:20 AMLaurence Cruz
01/12/2023, 7:08 PMYusuf Azam
01/17/2023, 12:29 PMRichard McCann
01/17/2023, 3:11 PMkomathypriya
01/17/2023, 5:32 PMkomathypriya
01/17/2023, 5:34 PMkomathypriya
01/17/2023, 5:35 PMkomathypriya
01/17/2023, 5:35 PMNick Meyer
01/17/2023, 5:49 PM{"deployedOrReleased": true}
as we deploy to staging upon merge to main (assuming tests pass). Since we don’t have the provider in place yet, there’s no consumer test deployed against it. Unfortunately, running a can-i-deploy
check fails with
Computer says no ¯_(ツ)_/¯
No pacts or verifications have been published for version XXX of XXX
To me, this shouldn’t be a failure. Am I missing something?Hunter
01/17/2023, 9:18 PMJean Paiva
01/18/2023, 6:41 PMmessages
. Would I be able to use it in a scenario like this?Hazem Borham
01/18/2023, 10:02 PMoneof
? Curious if anyone has any matching examples for the following
message FooResponse {
string description = 1;
repeated Field fields = 2;
}
message Field {
string id = 1
oneof field_data {
TextField textInput = 6;
ChoiceField choiceInput = 7;
}
}
example json to match on
{
"description": "foo",
"fields": [
{
"id": "123",
"textInput": {}
},
{
"id": "123",
"choice": {}
}
]
}
davT
01/20/2023, 3:07 PMNuno Frias
01/24/2023, 10:44 AMAuthorization
header in the response matches a jwt regex.
However when the provider test runs, it seems to be overriding the regex match and doing an exact match.
Is there a different behaviour for the Authorization
header ?Yousaf Nabi (pactflow.io)
Tatiana
01/26/2023, 6:26 PM--consumer-version-tags="main"
for provider verification job but then the first scenario won’t work, the provider will always take the contract with main
tag which is assigned after merge to the main branch.
Also, I can create two verification jobs for provider, one will be triggered by webhook only, another one will run when merge request is opened from provider. But it doesn’t look great.
Do you have any ideas how I can achieve my desired result described above? Maybe I can play with tags somehow or pass something to my webhook? Please advice 🙂Mark Wilson
01/27/2023, 12:41 PMpactflow publish-provider-contract
using pact_broker-client-1.66.1 locally. I know the broker-base-url and broker-token are fine as I can publish the consumer contract just fine. Any ideas?Shawn Erquhart
01/27/2023, 7:08 PMYair Shkedi
01/30/2023, 8:39 AMUlises Cervino
01/30/2023, 2:28 PMUlises Cervino
01/30/2023, 2:29 PMUlises Cervino
01/30/2023, 7:39 PMUlises Cervino
01/30/2023, 7:39 PMJay Li
01/31/2023, 2:36 AMBhavyashree R
02/01/2023, 8:52 AMGustavo Souza
02/01/2023, 3:17 PMBasu Silviu
02/01/2023, 4:43 PMEddie Stanley
02/01/2023, 10:47 PMproviderState
key? Should the verifier still make a call to the provider-states endpoint or should it skip doing that and go directly to making the request defined by the interaction?
See related question in #C9UTHV2AD.