Just a heads up, there appears to have been a breaking change in the Contour code at some point between the shared source being released and the latest version of Contour.
If you are finding that the workflow is NOT saving to a new node, you've been hot by this issue. Open up the CS file, and change line 58 from:
Recompile and upload, and it should publish again. I'm going to mention this to the core team to see if this is a permanent change, and if so, get them to update the shared source. Once I know, I'll update this package.
Breaking Change in Contour
Just a heads up, there appears to have been a breaking change in the Contour code at some point between the shared source being released and the latest version of Contour.
If you are finding that the workflow is NOT saving to a new node, you've been hot by this issue. Open up the CS file, and change line 58 from:
mapping = Services.WorkflowService.parseAttribute(e.Context, record, a[1]);
to:
mapping = Umbraco.Forms.Core.Services.WorkflowService._parseAttribute(e.Context, record, a[1]);
Recompile and upload, and it should publish again. I'm going to mention this to the core team to see if this is a permanent change, and if so, get them to update the shared source. Once I know, I'll update this package.
Hey Tim
Thanks for the heads-up, will make sure that we include the deprecated methods in a maintenance release ASAP.
On that note, the reason it was renamed was part of a process of moving this method to a more logical place, so you now find it at:
/Per
Thanks Per! I'll update my code to use the newer method.
:)
is working on a reply...