Hi everyone,
I'm facing a versioning deadlock using Power Platform Pipelines with a Platform Host (not a manually created environment).
The issue:
By mistake, a solution was deployed with version 13.0.0 and it was marked as 'Succeeded' in the deployment history. Now, I need to deploy the correct version 1.4.0.0, but the pipeline blocks it with a version validation error because it is lower than the last successful record.
The Root Cause of the Conflict:
The version 13.0.0 was a typographical error; the intended version was 1.3.0.0. However, since the Pipeline successfully registered this 'typo' as a completed deployment, it has now set an impossibly high version ceiling. I am now trying to deploy the correct subsequent version, 1.4.0.0, but I am being blocked by the system's internal validation. I know the solution, move to 14.0.0.0 version, but I don't want to brake SemVer.
What I have tried so far:
-
Deleted the solution in the target environment (Production) to start fresh.
-
ried importing the fixed solution version (1.4.0.0) manually, but the Deployment history still shows 13.0.0 as the latest successful version.
-
Attempted to Redeploy an older successful version (v1.2.2.0) from the history to 'reset' the pointer, based on MS documentation.
-
Tried deploying directly from the Power Apps Solutions interface, but the validation error persists as it checks the Host's history.
-
Looked for the Deployment Stage Run tables to manually delete the v13 record, but since this is a Platform Host (PlatformEnv-europe), these system tables are not accessible/visible.
Environment Details (Redacted):
-
Host Environment Type: Platform-managed Host.
-
Source: Development Environment.
-
Target: Production Environment (currently empty of this solution).
-
Error: 'The version of the solution being deployed is lower than the version of the solution already in the target environment' (even though the target is empty, the Host history says otherwise).
Is there any way to reset or prune the deployment history for a specific solution in a Platform Host without having to increment the version to v14.0.0.0?
Any help from the community or MS staff would be greatly appreciated. Thanks!