Merge remote-tracking branch 'origin/v9/dev' into v10/dev
# Conflicts: # build/azure-pipelines.yml # src/Umbraco.Core/Routing/DefaultUrlProvider.cs # src/Umbraco.Core/Routing/UrlProviderExtensions.cs # src/Umbraco.Infrastructure/Migrations/Install/DatabaseSchemaCreator.cs # src/Umbraco.Infrastructure/Persistence/Repositories/Implement/DocumentRepository.cs # src/Umbraco.Infrastructure/Services/Implement/ContentService.cs # src/Umbraco.PublishedCache.NuCache/DataSource/BTree.ContentDataSerializer.cs # src/Umbraco.PublishedCache.NuCache/Persistence/NuCacheContentRepository.cs # src/Umbraco.Web.UI.Client/package-lock.json # tests/Umbraco.Tests.AcceptanceTest/package-lock.json # tests/Umbraco.Tests.AcceptanceTest/package.json # tests/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentServiceTests.cs
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
using Umbraco.Extensions;
|
||||
|
||||
namespace Umbraco.Cms.Core.PublishedCache.Internal
|
||||
{
|
||||
|
||||
// TODO: Only used in unit tests, needs to be moved to test project
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public sealed class InternalPublishedContent : IPublishedContent
|
||||
{
|
||||
public InternalPublishedContent(IPublishedContentType contentType)
|
||||
|
||||
@@ -1,11 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
using Umbraco.Cms.Core.Xml;
|
||||
|
||||
namespace Umbraco.Cms.Core.PublishedCache.Internal
|
||||
{
|
||||
// TODO: Only used in unit tests, needs to be moved to test project
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public sealed class InternalPublishedContentCache : PublishedCacheBase, IPublishedContentCache, IPublishedMediaCache
|
||||
{
|
||||
private readonly Dictionary<int, IPublishedContent> _content = new Dictionary<int, IPublishedContent>();
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
using System.ComponentModel;
|
||||
using Umbraco.Cms.Core.Models.PublishedContent;
|
||||
|
||||
namespace Umbraco.Cms.Core.PublishedCache.Internal
|
||||
{
|
||||
// TODO: Only used in unit tests, needs to be moved to test project
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public class InternalPublishedProperty : IPublishedProperty
|
||||
{
|
||||
public IPublishedPropertyType PropertyType { get; set; }
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using Umbraco.Cms.Core.Cache;
|
||||
|
||||
namespace Umbraco.Cms.Core.PublishedCache.Internal
|
||||
{
|
||||
|
||||
// TODO: Only used in unit tests, needs to be moved to test project
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public sealed class InternalPublishedSnapshot : IPublishedSnapshot
|
||||
{
|
||||
public InternalPublishedContentCache InnerContentCache { get; } = new InternalPublishedContentCache();
|
||||
|
||||
@@ -1,10 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Threading.Tasks;
|
||||
using Umbraco.Cms.Core.Cache;
|
||||
using Umbraco.Extensions;
|
||||
|
||||
namespace Umbraco.Cms.Core.PublishedCache.Internal
|
||||
{
|
||||
// TODO: Only used in unit tests, needs to be moved to test project
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public class InternalPublishedSnapshotService : IPublishedSnapshotService
|
||||
{
|
||||
private InternalPublishedSnapshot _snapshot;
|
||||
|
||||
Reference in New Issue
Block a user