New releases on Enonic Market

We are happy to announce two new releases on Enonic Market:

  • Version 3.0.0 of the Router library provides support for multiple URL patterns and solves the issue with ignored trailing slash
  • Version 1.0.1 of Open ID Connect ID provider solves conflicts with session replication

Let us know what you think and continue enjoying the summer! :sunglasses:

1 Like

@ase I was looking at the release notes for the RouterLibrary. Am I right that there are no breaking changes, unless you are using some really weird characters in your paths?

So the changes in [email protected] are:

  • The syntax for the string parameter pattern is changed
  • pattern can also be an Array of strings

That is it right?

The (potentially) breaking change is that trailing slash used to be discarded, ie lib-router.get('myurl/') was treated like lib-router.get('myurl'). This is now fixed and you can have two different handlers for lib-router.get('myurl/') and lib-router.get('myurl').

1 Like