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.
Note: NuGet packages listed here may not be immediately available in the Optimizely NuGet feed.
Latest changes
Fixed an issue where the link validation job failed for relative links when no wildcard host was defined.
Fixed an issue that threw an SQL exception in SPROC netApprovalAdd when you requested an approval on a content item with an anonymous user. The SPROC expected that the parameter @StartedBy is not null.
HttpContext.User.Identity.Name has changed from "" (empty string) to null between .NET Framework and ASP.NET Core.
Fixed an issue where you could not have the same segment for a "simple address segment" in a multisite scenario. An error stated that the same address segment was already being used.
Fixed an issue where a trailing slash was added to external URLs, even though they were specified without one.
When you added a link to an internal page and added a query string in the Remaining URL field, the Remaining URL was not saved. If you added the query string without the question mark, it was saved, but was still cut off in the request.
Fixed an issue where custom configurations of the tab mapping in the property setting were lost when the app pool was recycled; the configuration values were reset to the state defined in the code.
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 (like int, string, XhtmlString etc) 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 {...}
Fixed an issue that changed a content link to an external link but with an internal format. This happened if you chose a page type that had an XhtmlString field and added a content link with the Remaining URL.
Fixed an issue where saved property configuration changes were lost after you ran App Pool Recycle of CMS web application pool (or ran iisreset).
Fixed an issue where UrlResolver.GetUrl() failed when content had an invalid URL segment.