Try our conversational search powered by Generative AI!

Packages [expand] [collapse]

Release notes for Optimizely CMS and Customized 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.
  • 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
HAPI-2512
  Inconsistency when create old and new ContentReferenceList

Fixed an issue where when you created a ContentReferenceBlock with old and new ContentReferenceList items, an inconsistent behavior occurred.

EPiServer.ContentDeliveryApi 3.11.0; (Or a related package);
Soon to be 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
CMS-27863
  "Edit link" should not mean that editing the linked page

Fixed an issue where when you clicked ... > Edit from the Create Link window, it resulted in editing the page you linked to. Now, you can click Edit Link and simply edit the link you entered. Or you can click Edit Content and edit the content of the page you linked to. 

EPiServer.CMS.UI 12.29.1; (Or a related package);
Apr 30, 2024
CMS-33726
  A custom registered IContentRenderer isn't always called when it should

Fixed an issue where the breakpoint was hit only once: when the contentarea rendered. Now, the breakpoint also hits when the xhtmlstring renders.

EPiServer.CMS.Core 12.21.3; (Or a related package);
Apr 30, 2024
CMS-31656
  TagHelper should omit html tag in viewmode when link property is empty

Fixed an issue with tag helpers where even if the link property was null, <ul> html tag was included in the view mode rendering.

Previous output (view mode):

<div>   
   <ul></ul>
</div>

Current output (view mode):

<div>
</div>

This applies to ContentReference, ContentReferenceList, LinkItem, LinkItemCollection, and URL property.

EPiServer.CMS.Core 12.21.3; (Or a related package);
Apr 30, 2024
CMS-33790
  System.ObjectDisposedException in the BackgroundContextFactory.Create()

Fixed an issue where BackgroundContextFactory.Create() threw a System.ObjectDisposedExceptionexception when the current scope was disposed. 

EPiServer.CMS.Core 12.21.3; (Or a related package);
Apr 30, 2024
CMS-33720
  Error when renaming block used in IList

Fixed an issue where after you changed the name of a block and then edited content with that block type as one of its properties, it caused an error.

EPiServer.CMS.Core 12.21.3; (Or a related package);
Apr 30, 2024
CMS-33330
  UserProfileCriterion is migrated incorrectly

Fixed an issue where when you upgraded from CMS 11 to CMS 12, the UserProfileCriterion did not migrate correctly and caused an error when saving any visitor group with that criterion.

EPiServer.CMS.Core 12.21.3; (Or a related package);
Apr 30, 2024
CMS-31798
  Property validation error does not disappear after correcting the error

Fixed an issue where when you used a custom property validator to validate a property, the warning notification did not disappear after fixing the incorrect property.

EPiServer.CMS.UI 12.29.1; (Or a related package);
Apr 30, 2024
1 2 3 4 5 6 Next