Fix issue with nested artboards not updating follow path constraints.

🤦🏼 https://2dimensions.slack.com/archives/CHMAP278R/p1691779191117059

Diffs=
e71ae68ba  Fix issue with nested artboards not updating follow path constraints. (#5810)

Co-authored-by: Luigi Rosso <luigi-rosso@users.noreply.github.com>
diff --git a/.rive_head b/.rive_head
index 1e45a30..4b1e608 100644
--- a/.rive_head
+++ b/.rive_head
@@ -1 +1 @@
-cbc6ba291319eb8c3f05894c859dfc86cc4dddea
+e71ae68ba09767f246bf3d779f38bb731cf7da9a
diff --git a/src/shapes/path_composer.cpp b/src/shapes/path_composer.cpp
index 4025606..096848c 100644
--- a/src/shapes/path_composer.cpp
+++ b/src/shapes/path_composer.cpp
@@ -24,7 +24,10 @@
 {
     if (m_deferredPathDirt)
     {
-        addDirt(ComponentDirt::Path);
+        // We'd deferred the update, let's make sure the rest of our
+        // dependencies update too. Constraints need to update too, stroke
+        // effects, etc.
+        m_Shape->pathChanged();
     }
 }