November Happy Hour will be moved to Thursday December 5th.

Chris Banner
Jun 5, 2017
  2768
(3 votes)

What's new in Episerver Social 1.4?

Episerver Social 1.4 releases this week. Below you'll find the highlights of what's new in this release. (For an individual breakdown of changes, check out the release notes.)

Enhanced expression library

Episerver Social emphasizes the ability to model your social content to meet the needs of your application. Supporting that flexibility, the Episerver Social framework allows you to define completely custom filters for your content using its expression library. With the release of version 1.4, the library of expressions has grown to include two new ones.

ContainsExpression
Apply the ContainsExpression to contruct a filter matching content where a collection field (an array, list, etc.) contains a specific value.

Consider an example where I wish to match Comments, which have been extended to include an accompanying Tags array, by a specific tag value. I can construct a correponding filter using the ContainsExpression as demonstrated below.

var containsSportsTag = FilterExpressionBuilder<MyCommentExtension>.Field(d => d.Tags).Contains("sports");

OrExpression 
The framework, which previously included the ability to logically AND filters together, now also includes the ability to logically OR your filters.

Consider an example where I wish to match Comments, which have been extended to include an accompanying LuckyNumber field, by those that equal 2 or 7. I can construct a corresponding filter using the OrExpression as demonstrated below.

var luckyNumberField = FilterExpressionBuilder<MyCommentExtension>.Field(d => d.LuckyNumber);
var luckyNumberOf2Or7 = FilterExpressionBuilder<MyCommentExtension>.Or(
    luckyNumberField.EqualTo(2),
    luckyNumberField.EqualTo(7)
);

These expressions, like the others in the library, can be applied in all of the Episerver Social features. (You can find a full overview of filtering by extension fields in the developer guide.)

Sorting by mean

Episerver Social's Ratings feature automatically tabulates statistics for ratings that have been contributed. We're focused on progressively enhancing this feature over the coming months. In this release, a Mean property has been introduced on the RatingStatistics model. Additionally, statistical data can now be sorted by the mean value in either ascending or descending order.

Performance enhancements for filtering

We're perpetually focused on improving performance within the platform. Among the more prominent performance enhancements in this release are improvements in the filtering of your extension data.

Authentication troubleshooting

A failure to authenticate with Episerver Social is unlikely if your application is configured with the appropriate credentials. However, there are times when environmental factors (such as firewalls or proxies) might interfere, preventing your application from connecting with Episerver Social. Such scenarios may result in unexpected behavior. With that in mind, the SocialAuthenticationException has been enhanced with supplementary information to aid in the troubleshooting of your situation.

Jun 05, 2017

Comments

192.168.l.254 192.168.1.254
192.168.l.254 192.168.1.254 Sep 7, 2018 05:28 PM

192.168.l.254

Please login to comment.
Latest blogs
Set Default Culture in Optimizely CMS 12

Take control over culture-specific operations like date and time formatting.

Tomas Hensrud Gulla | Nov 15, 2024 | Syndicated blog

I'm running Optimizely CMS on .NET 9!

It works 🎉

Tomas Hensrud Gulla | Nov 12, 2024 | Syndicated blog

Recraft's image generation with AI-Assistant for Optimizely

Recraft V3 model is outperforming all other models in the image generation space and we are happy to share: Recraft's new model is now available fo...

Luc Gosso (MVP) | Nov 8, 2024 | Syndicated blog

ExcludeDeleted(): Prevent Trashed Content from Appearing in Search Results

Introduction In Optimizely CMS, content that is moved to the trash can still appear in search results if it’s not explicitly excluded using the...

Ashish Rasal | Nov 7, 2024

CMS + CMP + Graph integration

We have just released a new package https://nuget.optimizely.com/package/?id=EPiServer.Cms.WelcomeIntegration.Graph which changes the way CMS fetch...

Bartosz Sekula | Nov 5, 2024

Block type selection doesn't work

Imagine you're trying to create a new block in a specific content area. You click the "Create" link, expecting to see a CMS modal with a list of...

Damian Smutek | Nov 4, 2024 | Syndicated blog