Skip to content

Commit f8b29c6

Browse files
authored
Merge pull request #81 from jcdcdev/dev/v17
17.0.0
2 parents 4bff37a + 15e7300 commit f8b29c6

File tree

71 files changed

+1089
-1231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1089
-1231
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Build
10-
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
10+
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
1111
with:
1212
project-name: Umbraco.Community.FileSystemProviders.B2
1313
project-path: src/Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj
14-
umbraco-version: 16
15-
dotnet-version: "9"

.github/workflows/release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 🚀 Release
22
on:
33
workflow_dispatch:
44
pull_request:
5-
types: [ closed ]
5+
types: [closed]
66
jobs:
77
release:
88
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
@@ -13,16 +13,14 @@ jobs:
1313
steps:
1414
- name: Build
1515
id: build
16-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
16+
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
1717
with:
1818
project-name: Umbraco.Community.FileSystemProviders.B2
1919
project-path: src/Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj
20-
umbraco-version: 16
21-
dotnet-version: "9"
2220
- name: Release
23-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
21+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v17
2422
with:
2523
artifact-name: ${{ steps.build.outputs.artifact-name }}
2624
version: ${{ steps.build.outputs.version }}
2725
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
28-
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
github-token: ${{ secrets.GITHUB_TOKEN }}

SECURITY.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ The following table outlines the versions of the project that are currently supp
1010
| Package Version | Umbraco Version | Security Phase Start | End of Life |
1111
| ---------------------------------------------------------------------------------- | --------------- | -------------------- | ----------- |
1212
| [13.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v13) | 13 | 2025-12-14 | 2026-12-14 |
13-
| [15.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v15) | 15 | 2025-08-14 | 2025-11-14 |
14-
| [16.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v16) | 16 | 2026-03-12 | 2026-06-12 |
13+
| [16.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v16) | 16 | 2026-03-12 | 2026-06-12 |
14+
| [17.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v17) | 17 | 2027-11-27 | 2028-11-27 |
1515
## Unsupported Versions
1616

1717
| Package Version | Umbraco Version | End of Life |
1818
| ---------------------------------------------------------------------------------- | --------------- | ----------- |
1919
| [10.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v10) | 10 | 2025-06-16 |
2020
| [12.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v12) | 12 | 2024-06-29 |
2121
| [14.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v14) | 14 | 2025-05-30 |
22+
| [15.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v15) | 15 | 2025-11-14 |
2223

2324

2425
## Future Support

src/Umbraco.Community.FileSystemProviders.B2.TestSite/Program.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using Umbraco.Cms.Core.DependencyInjection;
2-
using Umbraco.Extensions;
3-
41
var builder = WebApplication.CreateBuilder(args);
52

63
builder.CreateUmbracoBuilder()

src/Umbraco.Community.FileSystemProviders.B2.TestSite/Umbraco.Community.FileSystemProviders.B2.TestSite.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Umbraco.Cms" Version="16.1.1"/>
10-
<PackageReference Include="uSync" Version="16.0.0"/>
9+
<PackageReference Include="Umbraco.Cms" Version="17.0.0" />
10+
<PackageReference Include="uSync" Version="17.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<ProjectReference Include="../Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj"/>
14+
<ProjectReference Include="../Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj" />
1515
</ItemGroup>
1616

1717
<ItemGroup>
1818
<!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms -->
19-
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3"/>
20-
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))"/>
19+
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
20+
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
2121
</ItemGroup>
2222

2323
<PropertyGroup>

0 commit comments

Comments
 (0)