Skip to content

Releases: KevinJump/uSync

v10.7.0 - Minor release - Trees and Blocks

25 Sep 10:59
3b7cb1e
Compare
Choose a tag to compare

This is a minor release of uSync v10, for Umbraco v10 - it contains some minor fixed and a change to how usync renders extensions (hence the minor version bumb).

What's Changed

  • Fix - Uploading a zip file containing PublicAccess files reports a clash with content when there isn't one.
  • V12/Include properties - Include any property names if a publish fails for with a message
  • V12/generic hub by @KevinJump in #535
  • Readme said Eleven instead of Twelve by @nul800sebastiaan in #536
  • V12/tree nodes by @KevinJump in #537
  • V12/block grid independence by @KevinJump in #539
  • V12/tree nodes - Part 2 by @KevinJump in #540
  • Spelling: "loose"->"lose" by @jacksorjacksor in #544

New Contributors

Full Changelog: v12.1.0...v10.7.0

v10.6.2 - August Patch release

10 Aug 07:07
Compare
Choose a tag to compare

This is a patch release for uSync v10.x for Umbraco v10.x - it contains fixes for reported issues.

Fixes

  • #508 Update the logic for repeatable strings. by @KevinJump in #508
  • #512 - Include the language name when syncing languages.
  • #523 Capture renames of containers so - doctype,datatype,etc update when their folder is renamed
  • #511 - prevent content loss from deleted and renamed datatypes by moving datatype deletes to the end.

Full Changelog: v10.6.1...v10.6.2

v8.11.7 - occasional patch release

10 Aug 07:15
Compare
Choose a tag to compare

This is a patch release for Umbraco 8. it contains a fix for a reported issue with renaming/deleting datatypes and a new mapper for the Our.Umbraco.Tables package.

What's Changed

New Contributors

Full Changelog: v8.11.6...v8.11.7

v12.1.0 - Aug 2023 patch release

10 Aug 07:05
Compare
Choose a tag to compare

This is the august patch release (like we have a monthly schedule 😆) containing fixes for reported issues,

Compatible with all versions of Umbraco 12.x

What's Changed

New Contributors

Full Changelog: v12.0.2...v12.1.0

v12.0.2 - Addendum release

29 Jun 23:14
Compare
Choose a tag to compare

Doh!

Since the release of uSync v12. we had had a couple of issues with the notification caching. these are mainly because we didn't quite impliment it correctly 😢 we saw two issues

  • items would be added but then not published in the cache
  • on firstboot / startup items would not actually be imported.

We have quickly released updates(s) to fix this:

  • We thought we fixed these issues with v12.0.1 - by chaning the defauts for how usync uses the new notification feature.
  • but we missed the fisrtboot element and have had to release v12.0.2.

Everything else is the same between v12.0.0 and v12.0.2 - we just do a little less notification caching for now. We will take a look and get this feature working prop-properly soon.

thanks to #509 @nikcio for reporting the fastboot issue, and giving us a great way to test it with the tests in his Nikcio.UHeadless repo.

v12.0.0 - Hello Twelve - goodbye eleven 👋

28 Jun 12:55
Compare
Choose a tag to compare

This is the v12 release of uSync for Umbraco v12 🎉

(following the Umbraco Support Lifecycle - uSync v11 shall now only be receiving bug fixes until 1st September 2023, and will fall end of life Dec 1st 2023)

There is very little Backoffice change between Umbraco v11/12 but we are taking advantage of a few updates to improve the performance of content imports.

What's new

  • #507 - updates to package info (so the version shows in the package dashboard)
  • #506 - Deserialize user information (optional) - allows uSync.Complete to push the actually creator, writer details between sites.
  • Notification suppression (as per umbraco/Umbraco-CMS#14332) speedier content imports ahoy!

Full Changelog: v11.2.1...v12.0.0


One-two-three-four-five..

*(the tune is in your head now isn't it)

v11.2.1 - Media path updates.

07 Jun 08:23
Compare
Choose a tag to compare

This is a minor patch release of uSync. addressing some minor issues.

What's Changed

  • Fix #501 - Download fails when root folder is outside of site root. by @KevinJump in #502
  • Add Publisher dependency flag (so we can choose to check dependencies on saved or published items)
  • Fix - Media path should be generic when UmbracoMediaPath is used.

Full Changelog: v11.2.0...v11.2.1

v10.6.1 - Media path updates.

07 Jun 08:28
Compare
Choose a tag to compare

This is a minor patch release of uSync. addressing some minor issues.

What's Changed

  • Add Publisher dependency flag (so we can choose to check dependencies on saved or published items)
  • Fix - Media path should be generic when UmbracoMediaPath is used.

Full Changelog: v10.6.0...v10.6.1

v11.2.0 - Do Not Serialize patterns.

11 May 09:46
a2a4d5a
Compare
Choose a tag to compare

Thisi s a minor patch release of uSync for Umbraco 11. it contains some small patch fixes and an update for RegEx based DoNotSerializePatterns HT @mayhammf

DoNotSerializePattern

This release intriduces a new setting that allows you to tell uSync to exclude properties when serializing content and media based on regex patterns.

previously (its still there) the only way to exclude properties from serialization was to list them in a DoNotSerialize property

  "uSync": {
    "Sets" : {
      "Default": {
        "HandlerDefaults" : {
          "Settings": {
            "DoNotSerialize": "HeroBackgroundImage,heroCTACaption,heroDescription,heroHeader"
          }
        }
      }
    }
  }

Now wiit hthis update you can use regEx in the DoNotSerializePattern property

  "uSync": {
    "Sets" : {
      "Default": {
        "HandlerDefaults" : {
          "Settings": {
            "DoNotSerializePattern": "(?i)^(hero)+"
          }
        }
      }
    }
  }

What's Changed

  • Ensure all dashboard urls open with rel="noopener"
  • Improved reporting on Publish Failed messages (more of the property errors get passed through)
  • Fix: Blueprints are sometimes treated as content
  • Update NoNodes.cshtml by @mistyn8 in #491
  • Reintroduces an updated Danish language file #161 by @jannikanker in #494
  • #483 Support DoNoSerialize by pattern by @mayhammf in #496
  • v11 / .net 7 build config. by @KevinJump in #499
  • Update README.md by @KevinJump in #500

New Contributors

Full Changelog: v11.1.0...v11.2.0

v10.6.0 - DoNotSerializePattern.

11 May 10:15
Compare
Choose a tag to compare

This is the v10 release of uSync containing the do not serialize patterns (as in v11).

this version is still compatible with all versions of Umbraco 10.x

See v11.2 release for more details : https://github.com/KevinJump/uSync/releases/tag/v11.2.

Included in this release :

  • Ensure all dashboard urls open with rel="noopener"
  • Fix: Blueprints are sometimes treated as content
  • Update NoNodes.cshtml by @mistyn8 in #491
  • Reintroduces an updated Danish language file #161 by @jannikanker in #494
  • #483 Support DoNoSerialize by pattern by @mayhammf in #496
  • v10 / .net 6 build config. by @KevinJump

Full Changelog: v10.5.0...v10.6.0