Jack Wheatley

Results 20 comments of Jack Wheatley

sure it would be something like: ```scala trait DoobieStrictEnum[A def pgEnumTypeName: String implicit def meta: Meta[A] = pgEnumString(pgEnumTypeName, this.withName(_), _.entryName) } ``` then user implementation would be like: ```scala sealed...

Actually I came to the same realization yesterday when I started having a closer look at this 😁 I don't think (2) is that worthwhile unless there was substantially more...

When I was experiencing it, it was only cropping up when calling 3rd party APIs - so it was hard to reproduce by any means other than firing a load...

[fs2-rabbit](https://github.com/profunktor/fs2-rabbit) has a CE/FS2 3.0 [branch](https://github.com/profunktor/fs2-rabbit/tree/ce3) with all tests green

the solution I'm using is using this instead: ``` lazy val crossRunTest: ReleaseStep = ReleaseStep( action = { st: State => if (!st.get(skipTests).getOrElse(false)) { releaseStepCommandAndRemaining("+test")(st) } else st }, enableCrossBuild...

Seconding @agustafson, would also like to offer to help out!

Hi! Yes, the docs do need updating. As to your particular concern, scala-pact does default to not allowing publishing versions with `SNAPSHOT` in them. I am not sure whether this...

Looking at the pact-broker docs I think the logic around snapshot versions in scala-pact is no longer applicable https://docs.pact.io/getting_started/versioning_in_the_pact_broker. Pacts in the broker are organised by creation date, not by...

Hi @Liorba. Path matching as you've described isn't supported by scala-pact, as we currently follow the v2 pact spec where paths must be an exact string match. I would suggest...