Skip to content

Commit 52e6b39

Browse files
Merge pull request #67 from umbraco/feature/v14
Update to CMS 14.0.0-rc2
2 parents 7db0211 + 7b98636 commit 52e6b39

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
</PropertyGroup>
55
<ItemGroup>
66
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" />
7-
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
7+
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
88
<GlobalPackageReference Include="Umbraco.Code" Version="2.1.0" />
99
<GlobalPackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" />
1010
</ItemGroup>
1111
<PropertyGroup>
12-
<UmbracoCmsPackageVersion>[13.0.0, 14)</UmbracoCmsPackageVersion>
12+
<UmbracoCmsPackageVersion>[14.0.0-rc2, 15)</UmbracoCmsPackageVersion>
1313
</PropertyGroup>
1414
<ItemGroup>
1515
<PackageVersion Include="Azure.Storage.Blobs" Version="12.19.1" />
16-
<PackageVersion Include="SixLabors.ImageSharp.Web.Providers.Azure" Version="3.1.0" />
16+
<PackageVersion Include="SixLabors.ImageSharp.Web.Providers.Azure" Version="3.1.2" />
1717
<PackageVersion Include="Umbraco.Cms.Imaging.ImageSharp" Version="$(UmbracoCmsPackageVersion)" />
1818
<PackageVersion Include="Umbraco.Cms.Web.Common" Version="$(UmbracoCmsPackageVersion)" />
1919
</ItemGroup>
20-
</Project>
20+
</Project>

examples/Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
<PropertyGroup>
33
<IsPackable>false</IsPackable>
44
<EnablePackageValidation>false</EnablePackageValidation>
5+
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
56
</PropertyGroup>
67
</Project>

examples/Umbraco.StorageProviders.AzureBlob.TestSite/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
appsettings-schema.json
77
appsettings-schema.*.json
88

9+
# JSON schema file for umbraco-package.json
10+
umbraco-package-schema.json
11+
912
# Packages created from the backoffice (package.xml/package.zip)
1013
/umbraco/Data/CreatedPackages/
1114

examples/Umbraco.StorageProviders.AzureBlob.TestSite/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
})
2020
.WithEndpoints(u =>
2121
{
22-
u.UseInstallerEndpoints();
2322
u.UseBackOfficeEndpoints();
2423
u.UseWebsiteEndpoints();
2524
});

examples/Umbraco.StorageProviders.AzureBlob.TestSite/Umbraco.StorageProviders.AzureBlob.TestSite.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Umbraco.Cms" Version="13.0.0" />
10-
<PackageReference Include="Umbraco.TheStarterKit" Version="13.0.0-rc" />
9+
<PackageReference Include="Umbraco.Cms" Version="14.0.0-rc2" />
10+
<!--<PackageReference Include="Umbraco.TheStarterKit" Version="13.0.0" />-->
1111
</ItemGroup>
1212

1313
<Import Project="..\..\src\Umbraco.StorageProviders\buildTransitive\Umbraco.StorageProviders.props" />

examples/Umbraco.StorageProviders.AzureBlob.TestSite/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
},
1313
"ConnectionStrings": {
14-
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco-13.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
14+
"umbracoDbDSN": "Data Source=|DataDirectory|/Umbraco-14.sqlite.db;Cache=Shared;Foreign Keys=True;Pooling=True",
1515
"umbracoDbDSN_ProviderName": "Microsoft.Data.Sqlite"
1616
},
1717
"Umbraco": {

src/Umbraco.StorageProviders/CdnMediaUrlProvider.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@ public sealed class CdnMediaUrlProvider : DefaultMediaUrlProvider
1919
private string _mediaPath;
2020

2121
/// <summary>
22-
/// Initializes a new instance of the <see cref="CdnMediaUrlProvider"/> class.
22+
/// Initializes a new instance of the <see cref="CdnMediaUrlProvider" /> class.
2323
/// </summary>
2424
/// <param name="options">The options.</param>
2525
/// <param name="globalSettings">The global settings.</param>
2626
/// <param name="hostingEnvironment">The hosting environment.</param>
2727
/// <param name="mediaPathGenerators">The media path generators.</param>
2828
/// <param name="uriUtility">The URI utility.</param>
29-
/// <exception cref="ArgumentNullException"><paramref name="options"/> is <c>null</c>.</exception>
30-
/// <exception cref="ArgumentNullException"><paramref name="globalSettings"/> is <c>null</c>.</exception>
31-
/// <exception cref="ArgumentNullException"><paramref name="hostingEnvironment"/> is <c>null</c>.</exception>
32-
public CdnMediaUrlProvider(IOptionsMonitor<CdnMediaUrlProviderOptions> options, IOptionsMonitor<GlobalSettings> globalSettings, IHostingEnvironment hostingEnvironment, MediaUrlGeneratorCollection mediaPathGenerators, UriUtility uriUtility)
33-
: base(mediaPathGenerators, uriUtility)
29+
/// <param name="urlAssembler">The URL assembler.</param>
30+
public CdnMediaUrlProvider(IOptionsMonitor<CdnMediaUrlProviderOptions> options, IOptionsMonitor<GlobalSettings> globalSettings, IHostingEnvironment hostingEnvironment, MediaUrlGeneratorCollection mediaPathGenerators, UriUtility uriUtility, IUrlAssembler urlAssembler)
31+
: base(mediaPathGenerators, uriUtility, urlAssembler)
3432
{
3533
ArgumentNullException.ThrowIfNull(options);
3634
ArgumentNullException.ThrowIfNull(globalSettings);

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "13.0.2-alpha",
3+
"version": "14.0.0-rc1",
44
"assemblyVersion": {
55
"precision": "build"
66
},

0 commit comments

Comments
 (0)