Pact FFI Tracking Issue
JP-Ellis opened this issue ยท 2 comments
๐ Background
Pact Python at present makes use of the Ruby executables. The main functionality of the Ruby executables has been replaced by a core library written in Rust (pact-foundation/pact-reference). This library exposes a foreign function interface which other languages can leverage without the need to re-implement a lot of the logic. The core library helps to maintain parity across the different clients and helps with the adoption of new features.
โคด๏ธ Migration Plan
This change will introduce some breaking changes where needed, but it will be done in a staged manner to give everyone the opportunity to migrate.
๐ง Stage 1 (from v2.2
)
- The main Pact Python library remains the same. Bugs and minor features will continue to be added to the existing library, but no new major features will be added as the focus will be on the new library.
- The new library is exposed within
pact.v3
and can be used alongside the existing library. During this stage, no guarantees are made about the stability of thepact.v3
module. - Users are not recommended to use the new library in any production critical code at this stage, but are encouraged to try it out and provide feedback.
- The existing library will raise
PendingDeprecationWarning
warnings when it is used (if these warnings are enabled).
๐ ๏ธ Stage 2 (from v2.3
, tbc)
- The library within
pact.v3
is considered generally stable and users are encouraged to start migrating to it. - A detailed migration guide will be provided.
- The existing library will raise
DeprecationWarning
warnings when it is used to help raise awareness of the upcoming change. - This stage will likely last a few months to give everyone the opportunity to migrate.
๐ Stage 3 (from v3
)
- The
pact.v3
module is renamed topact
- People who have previously migrated to
pact.v3
should be able to do as/pact.v3/pact/
and have everything work. - If the previous stage identifies any breaking changes as necessary, they will be made at this point and a detailed migration guide will be provided.
- People who have previously migrated to
- The existing library is moved to the
pact.v2
scope.โผ๏ธ This will be a very major and breaking change. Previous code running againstv2
of Pact Python will not work againstv3
of Pact Python.- Users still wanting to use the
v2
library will need to update their code to use the newpact.v2
module. As/pact/pact.v2/
should be sufficient. - The
pact.v2
module will be considered deprecated, and will eventually be removed in a future release. No new features and only critical bug fixes will be made to this part of the library.
โ Tasks
- #384
- #397
- #399
- #382
- #420
- #381
- #421
- #380
- #379
- #378
- #746
- #747
- #748
- #749
- #377
This may be covered in HTTP consumer/provider implementation above - #376
- #375
- #374
- #373
- Implement synchronous message compatibility suite:
- #372
- Stabilise and announce
pact.v3
, releasev2.3
of Pact Python- Replace
PendingDeprecationWarning
withDeprecationWarning
- Replace
- #383
- Document migration to
v3
of Pact Python - Release Pact Python
v3
๐ Prior/Related Work
This change has been a long time coming:
-
These PRs are all quite large, especially the last with 177 commits and 6.7k lines added. These PRs form the prior attempts to migrate Pact Python to make use of Rust library. While I would have loved to take #367 on and add to it, I think there's too much in there for a single PR.
Having said that, a lot of the work done will be re-used in the tasks above.
-
Migrating away from the Ruby executable will resolve this issue.
-
Supplanted by this issue
-
Additional (and very early) PRs with some work on implementing the FFI.
-
A very early issue detailing the need to implement the FFI core.
๐ Hi! The 'smartbear-supported' label has just been added to this issue, which will create an internal tracking ticket in PactFlow's Jira (PACT-1353). We will use this to prioritise and assign a team member to this task. All activity will be public on this ticket. For now, sit tight and we'll update this ticket once we have more information on the next steps.
See our documentation for more information.
This issue has been linked to a Canny post: Pact V3 Specification for Python ๐