Release Notes
11.0.16.9396: May 08 2025
All platforms - Plugin for JetBrains IDEs: Fixed diff operation for unity organizations
We fixed an issue provoking the diff panel to fail loading the content of a remote revision under certain conditions.
Server: Restore cm find ability to return parent changesets along with hidden branches
Let's say we have the following changesets:
cs:41 <--- cs:42 <--- cs:43 (/main)
You could retrieve the parent of the changeset 43 with the following command:
cm find changeset "where changesetid = 43 and returnparent = 'true' on repository 'repo@organization@cloud'" --format="{changesetid}" 42
However, if you hid any other branch in the repository at some point, the same command would wrongly return the grandparent changeset:
cm find changeset "where changesetid = 43 and returnparent = 'true' on repository 'repo@organization@cloud'" --format="{changesetid}" 41
We fixed this error so it works properly no matter what.