Skip to content

Latest commit

 

History

History
75 lines (45 loc) · 4.05 KB

CHANGELOG.md

File metadata and controls

75 lines (45 loc) · 4.05 KB

Overall

2.0.0 (2016-12-02)

New features

Kentico.Web.Mvc

2.0.0 (2016-12-02)

Breaking changes

  • The Kentico.Web.Mvc integration package's logic for generating preview URLs, working with attachments, and managing media library files was transferred to a new Kentico.Content.Web.Mvc integration package. To continue using this functionality, you have to install the Kentico.Content.Web.Mvc integration package into your MVC solution.

1.0.1 (2015-12-14)

Fixed

  • Fix an exception when invoking an asynchronous action if using global handling of the "Not found" status. #1

Kentico.Search

2.0.0 (2016-12-02)

Breaking changes

  • The search result item class (SearchResultItem) is generic (with a constraint to the BaseInfo class). General fields of full-text search results are encapsulated in the GeneralFields property.

  • The search service (SearchService) accepts search parameters and returns search results in the following format: SearchResult Search(SearchOptions options)

    • Note: The SearchOptions.PageNumber property accepts one-based page numbers (i.e., numbers starting from 1 instead of 0).

1.0.1 (2016-02-23)

Fixed

  • Fix searching in non-page search indexes. Search service no longer causes an exception for non-page search indexes. #11

Kentico.Newsletter

2.0.0 (2016-12-02)

Breaking changes

  • Methods of the newsletter subscription service (NewsletterSubscriptionService) were changed:
    • Removed the Subscribe methods accepting an email or SubscriberInfo parameters. Use Subscribe(ContactInfo contact, NewsletterInfo newsletter, NewsletterSubscriptionSettings subscriptionSettings) instead.
    • The return value of the Subscribe method now indicates whether a new subscription was created, or had already existed.
    • The ConfirmSubscription method was added to simplify the use of the double opt-in feature.
    • The return type of the Unsubscribe and UnsubscribeFromAll methods is void.

Kentico.Newsletter.Web.Mvc

1.0.1 (2016-12-19)

Fixed

  • Fix NuGet dependency typo in Kentico.Newsletter.Web.Mvc package. This package could not be installed separately into projects with NuGet dependencies specified in the project.json file. #16

test