A new parameter has been added to the CreateDocument method.
Previously, this method signature looked like the following:
C#IDocument CreateDocument(string documentType, object parameter = null, object parentViewModel = null);
The current signature is as follows:
C#IDocument CreateDocument(string documentType, object parameter = null, object parentViewModel = null, bool useParameterAsViewModel = false);
As a result of this change, only custom implementations of the IDocument interface need to be changed.