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-5921
  Allow setting minimum score of items that OG should retrieve

Released the ability to set the minimum score for the returned search results so that you can limit the number of irrelevant results.

Soon to be 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
AFORM-4039
  Turn Initial Form Focus default value to False

Fixed an issue where the first element of the form was focused by default. Now, the default value is false.

EPiServer.Forms 5.8.2; (Or a related package);
Apr 23, 2024
AFORM-3903
  Remove the autocomplete attribute from hidden input elements

Removed the autocomplete attribute from hidden input elements.

EPiServer.Forms 5.8.2; (Or a related package);
Apr 23, 2024
AFORM-4077
  Form async actors flow don't work as expected

Fixed an issue where users had to wait for async actors to complete execution before the form submitted successfully.

EPiServer.Forms 5.8.2; (Or a related package);
Apr 23, 2024
AFORM-3815
  Render Form XhtmlString after submission

Added a feature that ensures XhtmlString content types render properly in real time.

EPiServer.Forms 5.8.2; (Or a related package);
Apr 23, 2024
AFORM-4068
  Invalid email validator

Fixed an issue where email validation failed and forms submitted successfully with invalid email addresses.

EPiServer.Forms 5.8.2; (Or a related package);
Apr 23, 2024
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);
Apr 16, 2024
1 2 3 4 5 6 Next