Packages [expand] [collapse]
Released in version
12.17.1
12.17.0
12.16.1
12.16.0
12.15.0
12.14.0
12.13.2
12.13.1
12.13.0
12.12.0
12.11.0
12.10.0
12.9.0
12.8.0
12.7.0
12.6.0
12.5.0
12.4.0
12.3.2
12.3.1
12.3.0
12.2.1
12.2.0
12.1.0
12.0.3
12.0.2
11.36.11
11.36.10
11.36.9
11.36.8
11.36.7
11.36.6
11.36.5
11.36.4
11.36.3
11.36.2
11.36.1
11.36.0
11.35.3
11.35.2
11.35.1
11.35.0
11.34.1
11.34.0
11.33.0
11.32.1
11.32.0
11.31.0
11.30.1
11.30.0
11.29.0
11.28.0
11.27.0
11.26.0
11.25.0
11.24.2
11.24.1
11.24.0
11.23.8
11.23.7
11.23.6
11.23.5
11.23.4
11.23.3
11.23.2
11.23.1
11.23.0
11.22.1
11.22.0
11.21.7
11.21.6
11.21.5
11.21.4
11.21.3
11.21.2
11.21.1
11.21.0
11.20.1
11.19.2
11.19.1
11.19.0
11.18.0
11.17.1
11.17.0
11.16.0
11.15.0
11.14.1
11.14.0
11.13.2
11.13.1
11.13.0
11.12.1
11.12.0
11.11.0
11.10.0
11.9.1
11.9.0
11.8.0
11.7.0
11.6.0
11.5.4
11.5.3
11.5.2
11.5.1
11.5.0
11.4.8
11.4.7
11.4.6
11.4.5
11.4.4
11.4.3
11.4.2
11.4.1
11.4.0
11.3.1
11.3.0
11.2.6
11.2.5
11.2.4
11.2.3
11.2.2
11.2.1
11.2.0
11.1.1
11.1.0
10.12.8
10.12.7
10.12.6
10.12.5
10.12.4
10.12.3
10.12.2
10.12.1
10.12.0
10.11.1
10.11.0
10.10.6
10.10.5
10.10.4
10.10.3
10.10.2
10.10.1
10.10.0
10.9.6
10.9.5
10.9.4
10.9.3
10.9.2
10.9.1
10.9.0
10.8.0
10.7.1
10.7.0
10.6.1
10.6.0
10.5.1
10.5.0
10.4.0
10.3.1
10.3.0
10.2.0
10.1.1
10.1.0
10.0.2
9.9.2
9.9.1
9.9.0
9.8.4
9.8.3
9.8.2
9.8.1
9.8.0
9.7.1
9.7.0
9.6.2
9.6.1
9.6.0
9.5.0
9.4.4
9.4.3
9.4.2
9.4.1
9.4.0
9.3.8
9.3.7
9.3.6
9.3.5
9.3.4
9.3.3
9.3.2
9.3.1
9.3.0
9.2.0
9.1.0
9.0.1
9.0.0
8.6.2
8.6.1
8.6.0
8.5.1
8.5.0
8.4.0
8.3.0
8.2.2
8.2.1
8.2.0
8.1.0
8.0.2
8.0.1
8.0.0
7.19.5
7.19.4
7.19.3
7.19.2
7.19.1
7.19.0
7.18.2
7.18.1
7.18.0
7.17.0
7.16.0
7.15.1
7.15.0
7.14.0
7.13.0
7.12.1
7.12.0
7.11.1
7.11.0
7.10.0
7.9.1
7.9.0
7.8.3
7.8.2
7.8.0
7.7.0
7.6.4
7.6.3
7.6.2
7.6.1
7.6.0
7.5.446.0
7.5.440.0
7.5.409.0
7.5.402.0
7.5.394.2

Release notes for Optimizely CMS and Commerce updates

This topic lists Optimizely updates, delivered as NuGet packages and services. You decide which updates apply to your project.

Select a product, package, or service in the left menu, and then select one of the following filters from Item type and click Filter.

  • Bug. Display bug fixes.
  • Critical bug. Display only critical bug fixes.
  • Feature. Display only new features (all features).
  • UI Feature. Display only end-user (user interface) features.

Note: NuGet packages listed here may not be immediately available in the Optimizely NuGet feed.

Latest changes

Item type
Filter on date
Items/Page
Area ID Type Description Released
CMS-25912
  Html.CreatePlatformNavigationMenu() not working for Razor Pages

Handle the case that a menu item of Global Menu Navigation is redirected from a Razor page endpoint, Html.CreatePlatformNavigationMenu() was not working correctly in this case.

EPiServer.CMS.UI 12.18.0;
Soon to be released
CMS-26595
  Rounding issue in RangeAttribute

The Range attribute on double type properties does not let you control how many decimals are being displayed in the UI.

As a workaround, you should omit the use of the Range attribute.

 

EPiServer.CMS.UI 12.18.0;
Soon to be released
CMS-26268
  Improve adding new Razor views

The current menu implementation now supports the code example in Highlight parent menu items.

 

EPiServer.CMS.UI 12.18.0;
Soon to be released
CMS-25555
  Property lists in edit mode

Built-in support for list properties on content models was limited to primitive types such as string, number, and ContentReference. List properties are now supported as individual properties (such as int, string, XhtmlString and so on) including Block types. You can now define properties on content models like:

public virtual IList<string> MyStrings {get; set;}
public virtual IList<TeaserBlock> MyTeasers {get; set;} 

where TeaserBlock in example above is a defined block in CMS, like:

[ContentType]
public class TeaserBlock : BlockData
{...}
  • Track usage (soft link indexing) for items that can reference content (such as IList<ContentReference>). 
  • Import and export list definitions and data.
EPiServer.CMS.UI 12.18.0;
Soon to be released
CMS-26547
  Manage Websites, Wrong site's start page is marked as selected when editing website in admin

When handling multiple sites in Admin > Manage Websites the wrong start page might be highlighted when moving among sites.

Workaround: Reload the page by pressing Ctrl+F5 to select the appropriate start page.

EPiServer.CMS.UI 12.18.0;
Soon to be released
CMS-26903
  Breaking change in SelectMany props

When addressing the issue in CMS-23405, a breaking change was introduced in how the values for string properties using SelectManyAttribute and ISelectionFactory are stored in the database. A change was made to serialize the selected options as JSON instead of comma separated strings. This change was reverted back to the original format. Make sure to verify that any values stored for properties using SelectManyAttribute are correct. Rechecking them in the UI and saving will save in the correct comma-separated format. Items saved in the JSON format introduced by 12.17.0 will not be selected correctly in the UI, so any updated properties needs to be verified.

EPiServer.CMS.UI 12.17.1;
Mar 06, 2023
CMS-23835
  Select Content feature is missing translation

Fixed an issue in Select Content that was missing translations.

EPiServer.CMS.UI 12.17.0;
Feb 14, 2023
CMS-25192
  Improve Scheduled jobs List UI

The scheduled jobs UI was updated using Axiom components to modernize the UI and implement new features in the Scheduled Jobs page that enhances the serviceability of the page as a whole.

  • The Next Run column indicates the next time that specific job will be executed.
  • The Start/Stop button lets you manage your jobs directly from the Scheduled Jobs page. (Previously, you went to the details page of each individual job to then execute the job.)
  • The detail segment of each scheduled job is now in three tabs.
    • Details – Displays the name, description, next run time and status of the job. You also can start and stop the job.
    • History – Displays information about previous runs of the specific job.
    • Settings – Lets you schedule the next run on a specific time and date.
EPiServer.CMS.UI 12.17.0;
Feb 14, 2023
CMS-26492
  Categories – Incorrect Swedish Translation

Fixed an issue where Display Name for Categories were incorrectly translated for Danish and Swedish.

EPiServer.CMS.UI 12.17.0;
Feb 14, 2023
CMS-23428
  Collection Editor always raised change event when initialized

Fixed an issue with the Collection editor that raised a change event whenever it initialized data, causing the content to change the state to draft when changes were published.

EPiServer.CMS.UI 12.17.0;
Feb 14, 2023
1 2 3 4 5 6 Next