mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
* Using Orchard.Mvc.FormValueRequiredAttribute instead of the FormValueRequiredAttribute class of the AdminController in the Orchard.Core.Contents namespace. * Removing obsoleted Spam value from the Orchard.Comments.Models.CommentStatus enum. * Removing the obsolete AddFilters method of the IFilterProvider interface in the Orchard.Mvc.Filters namespace. * Removing the obsolete LazyField<T> class from the Orchard.Core.Common.Utilities namespace. * Removing obsolete methods from OrchardLog4netLogger. * Removing obsolete Loader(Func<T, T> loader) method from LazyField.cs in the Orchard.ContentManagement.Utilities namespace. * Removing obsoleted ContentShapeResult ContentShape(IShape shape) method from ContentPartDriver. * Removing obsoleted ISessionLocator interface. * Removing obsoleted ContentFieldTemplate methods from ContentFieldDriver<TField>. * Removing obsoleted IMessagingChannel and IMessageManager interfaces, along with the migration step that updates the existing Send Email activities to use the new Message Queueing functionality. * Removing obsoleted CustomStepsStep. Don't need the CustomStepsStep RecipeBuilderStep because you can implement IRecipeBuilderStep and IRecipeExecutionStep instead of implementing custom export steps. * Removing obsoleted CustomPropertiesPart. It used to be necessary for the List feature (also obsolete) to be able to sort on custom data. * Removing the obsoleted ITaskLeaseService with its default implementation. Removing deprecated Orchard.TaskLease module because it only contains this interface with its default implementation. Use Orchard.Tasks.Locking.IDistributedLockService instead. * Removing LegacyRulesEvaluator. This condition provider was there for backwards compatibility during the deprecation period. * Removing IRuleManager with its default implementation. Use Orchard.Conditions.Services.ConditionManager instead. * Removing unused RequiresOwnership permission. * Reverting unnecessary sln file changes * Resolving IMessageChannelSelector instead of IMessageManager in editor templates * Removing commented out code from ContentPartDriverCoordinatorTests * Removing Orchard.jQuery too since its quite outdated and Orchard.Resources has been available since 1.9 * Readding the migration step that updates the existing Send Email activities --------- Co-authored-by: Benedek Farkas <benedek.farkas@lombiq.com>