Uploaded image for project: 'Magnolia'
  1. Magnolia
  2. MAGNOLIA-8496

Versioned publish doesn't respect modifiedOnly parameter

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Neutral Neutral
    • 6.3.0, 6.2.25
    • 6.2.21
    • None
    • None

      The VersionCommand creates a version for all pages and passes the versionMap to the PublishCommand. The method collectFromVersionMap checks for the parameter modifiedOnly and the activiation status of the node. But all nodes have a modified state because of creating a new version in VersionCommand. The following check in the method collectFromVersionMap is always true.
      See PublicationCommand

      if (!isModifiedOnly() || NodeTypes.Activatable.getActivationStatus(node) != NodeTypes.Activatable.ACTIVATION_STATUS_ACTIVATED) {
          nodes.add(node);
      } 
      

      Reproduce
      Use the recursive publish action from the versioned catalog in the pages-app with the option modifiedOnly.

      publishRecursive:
        icon: icon-publish-incl-sub
        $type: jcrCommandAction
        command: publish
        catalog: versioned
        asynchronous: true
        params:
          modifiedOnly: true
          recursive: true
        availability:
          rules:
            notDeleted: *notDeleted
            hasSubPages:
              $type: jcrHasChildrenRule
            isPublishable: *isPublishable
      

      Note
      Maybe this kind of configuration is not possible? Versioning + modifiedOnly. In such a case maybe this becomes a docu ticket.

        Acceptance criteria

              ajuran Antonín Juran
              rgange Richard Gange
              Nucleus
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

                Created:
                Updated:
                Resolved:

                  Bug DoR
                  Task DoD