Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo #14741

Merged
merged 2 commits into from
Nov 24, 2023
Merged

Typo #14741

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace OrchardCore.Documents
/// <summary>
/// Serializes and deserializes an <see cref="IDocument"/> into and from a sequence of bytes.
/// </summary>
public interface IDocumentSerialiser
public interface IDocumentSerializer
{
/// <summary>
/// Serializes an <see cref="IDocument"/> into a sequence of bytes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class DocumentOptionsBase : DistributedCacheEntryOptions
public bool? CheckConcurrency { get; set; }
public bool? CheckConsistency { get; set; }
public TimeSpan? SynchronizationLatency { get; set; }
public IDocumentSerialiser Serializer { get; set; }
public IDocumentSerializer Serializer { get; set; }
public int CompressThreshold { get; set; }

// Only used by an explicit atomic update.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace OrchardCore.Documents
/// <summary>
/// Serializes and deserializes an <see cref="IDocument"/> into and from a sequence of bytes.
/// </summary>
public class DefaultDocumentSerializer : IDocumentSerialiser
public class DefaultDocumentSerializer : IDocumentSerializer
{
public static readonly DefaultDocumentSerializer Instance = new();

Expand Down
2 changes: 2 additions & 0 deletions src/docs/releases/1.8.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Release date: Not yet released

## Breaking Changes

The interface `OrchardCore.Documents.IDocumentSerialiser` has been renamed to `OrchardCore.Documents.IDocumentSerializer`.

### .NET support

This release removes support for `net6.0` and `net7.0`. Only `net8.0` is supported.
Expand Down