Try our conversational search powered by Generative AI!

Packages [expand] [collapse]

Release notes for Optimizely CMS and Customized Commerce updates

Important

Release notes are moving to a new location. Starting May 15th, the release notes on the World site will no longer receive updates. See the Release notes by product at its new location.

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.
  • Security - Display only security updates.

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
CG-5748
  IList property doesn't work in several layers

Add the following classes to the solution.

  • FooterCategory
    [ContentType]
    public class FooterCategory : BlockData
    {
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Titel",
        Description = "Titel för kategori",
        Order = 100)]
        public virtual string? Title { get; set; }
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Sektioner",
        Description = "Dela upp kategorin i flera sektioner",
        Order = 120)]
        public virtual IList<FooterSection>? Sections { get; set; }
    }


  • FooterSection
    [ContentType]
    public class FooterSection : BlockData
    {
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Titel",
        Description = "Titel för sektion (valfri)",
        Order = 100)]
        public virtual string? Title { get; set; }
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Rader",
        Description = "Rader",
        Order = 120)]
        public virtual IList<FooterRow>? Rows { get; set; }
    }


  • FooterRow
    [ContentType]
    public class FooterRow : BlockData
    {
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Titel",
        Description = "",
        Order = 100)]
        public virtual string? Title { get; set; }
        [Display(
        GroupName = SystemTabNames.Content,
        Name = "Url",
        Description = "",
        Order = 120)]
        public virtual Url? Url { get; set; }
    }


 

Add the following to a page type

[Display(
Name = "Kategorer i sidfot",
GroupName = TabNames.Footer,
Order = 310)]
public virtual IList<FooterCategory>? FooterCategories { get; set; }


Try to use the GraphQL API to get the properties "Title" and "Rows" inside "Section"

{
  SiteConfigurationPage(locale: sv) {
    items {
      Name
      FooterCategories {
        Title
        Sections {
          Title
        }
      }
    }
  }
}

 

CMS-32559
  CMS DAM connector - wrong alt text

Fixed an issue where images added from the CMP DAM to the contentArea in CMS carried the incorrect alternative text. 

EPiServer.Cms.WelcomeIntegration 1.3.8; (Or a related package);
Soon to be released
MAI-2190
  Marketing Automation Connectors Scheduled Job: Improve error handling CMS 11

Improved error handling and logging.

EPiServer.ConnectForMarketingAutomation 5.7.2; (Or a related package);
May 14, 2024
CMS-27598
  Sorting by start publish date does not use language version date

Fixed an issue where sorting subpages by start publish dates caused them to be sorted according to the master language start publish date instead of the language version start publish date. 

EPiServer.CMS.Core 12.21.4; (Or a related package);
May 14, 2024
CMS-33788
  ApiVersioning is not working

Fixed an issue where adding AddApiVersioning() to an application broke content routing.

EPiServer.CMS.Core 12.21.4; (Or a related package);
May 14, 2024
MAI-2191
  Marketing Automation Connectors Scheduled Job: Improve error handling CMS 12

Improved error handling and logging.

EPiServer.ConnectForMarketingAutomation 6.1.5; (Or a related package);
May 14, 2024
CMS-30446
  UrlResolver.Route cannot resolve simple address on unpublished pages

Fixed an issue where the public virtual IContent Route(UrlBuilder urlBuilder) function did not resolve simple address URLs on unpublished pages and returned null.

EPiServer.CMS.Core 12.21.4; (Or a related package);
May 14, 2024
COM-17332
  Move to Archive

Added the ability to archive catalog items to prevent accidental deletion.

EPiServer.Commerce 14.21.0; (Or a related package);
May 07, 2024
COM-17334
  Restore content in Archive

Added the ability to restore any archived catalog items.

EPiServer.Commerce 14.21.0; (Or a related package);
May 07, 2024
COM-17333
  View Archive

Added the ability to view archived catalog items with options to restore or permanently delete.

EPiServer.Commerce 14.21.0; (Or a related package);
May 07, 2024
1 2 3 4 5 6 Next