Release notes v10.3.0

Release Details

v10.3.0 - uSync.Complete patch release

This is a minor update of uSync.Complete for Umbraco 10 - it contains some minor fixes and updates to enable the upcoming uSync.CommandLine for uSync.Complete release.

Updates of Note

Skip Report

The new Skip Report option means you can take the 'report' steps out of a deployment, so if you want you can push or pull between servers without having to check what will change.

Skip report option is in the server's advanced settings section

image

When Skip reporting is on, your editors will get a message when the push items.

image

and the report steps will be missed !

Improved Compare

Some tweaks to how our existing compare works, so it looks nicer and it has a button on the compare view to push (so you don't have to go out and back in to push something you know is different!

Combined with Skip report, it makes a super quick way to check and push a page between sites.

compare-push


Fixes

  • Disable the 'Continue' button in push/pull overlay to reduce the chances of "double click" deployments.

Updates

  • Update dependencies (uSync 10.3)
  • One step push/pull (skip the report step)
  • Moved logic from ApiControllers to ActionService and StateService, so we can run actions via a command line
  • Improved error messaging should an item fail to sync
  • Improved Compare remote dialog.

Get uSync.Complete

uSync.Complete can be installed as a NuGet package on your site - you can add the package a number of way:

via dotnet add

via a command line you can add uSync.Complete

dotnet add package uSync.Complete  --version 10.3.0

as a package reference

You can add the dependency directly to your projects .csproj file.

<ItemGroup>
  <PackageReference Include="uSync.Complete" Version="10.3.0" />
</ItemGroup>

via Visual Studio package manager console

If you are old school. install-package still works

install-package uSync.Complete -version 10.3.0