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.

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
COM-17776
  [Order Management] - Cannot search with + character

Fixed an issue where you could not search for an order with the "+" character.

EPiServer.Commerce 14.20.0; (Or a related package);
Soon to be released
LM-530
  Revamp the translation/duplicate configuration process UI

Options display in a window (instead of in appsettings.json).

  • Translate subpages (descendants)
  • Translate related content, which includes content in ContentArea, ContentReference, IList<ContentReference>, XhtmlString, and  IList<XhtmlString>
  • Publish the added content (but do not include the root page)
EPiServer.Labs.LanguageManager 5.3.0; (Or a related package);
Apr 09, 2024
AFORM-4075
  Update SkiaSharp.NativeAssets.Linux.NoDependencies to version 2.88.6

Security is enhanced when you update to this dependency package: SkiaSharp.NativeAssets.Linux.NoDependencies 2.88.6.

EPiServer.Forms 5.8.1; (Or a related package);
Apr 09, 2024
LM-519
  Add option to publish the children content or not

You now have the option to publish descendant content (child content).

EPiServer.Labs.LanguageManager 5.3.0; (Or a related package);
Apr 09, 2024
CMS-32095
  Excessive amount of WebSocketException logging

Fixed an issue where the WebSocket handler threw an exception for early termination because the remote party closed the WebSocket connection without completing the closing handshake.

EPiServer.CMS.UI 12.29.0; (Or a related package);
Apr 02, 2024
FIND-12436
  ContentEventIndexer should load content with short cache expiration time

Fixed an issue where ContentEventIndexer loaded content with a default content cache expiration time of twelve hours. This caused content to remain in memory for longer than necessary.

EPiServer.Find 16.2.0; (Or a related package);
Apr 02, 2024
CMS-33300
  Update EPiServer.ImageLibrary.ImageSharp dependency

Updated EPiServer.ImageLibrary.ImageSharp dependency to 1.0.1 which contains a vulnerability fix.

EPiServer.CMS.UI 12.29.0; (Or a related package);
Apr 02, 2024
CMS-30860
  Include preview token in preview url for On Page Edit

UIOptions now includes the UsePreviewTokens. Use this to configure an alternative approach to interact in On Page Edit between the Content Management System (CMS) and the delivery site. The new option appends PreviewUrl to the new preview token.

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