Skip to content
Merged
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
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Build
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
with:
project-name: Umbraco.Community.DataProtection
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
umbraco-version: 16
dotnet-version: "9"
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 🚀 Release
on:
workflow_dispatch:
pull_request:
types: [ closed ]
types: [closed]
jobs:
release:
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
Expand All @@ -13,16 +13,14 @@ jobs:
steps:
- name: Build
id: build
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
with:
project-name: Umbraco.Community.DataProtection
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
umbraco-version: 16
dotnet-version: "9"
- name: Release
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v17
with:
artifact-name: ${{ steps.build.outputs.artifact-name }}
version: ${{ steps.build.outputs.version }}
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ The following table outlines the versions of the project that are currently supp
| Package Version | Umbraco Version | Security Phase Start | End of Life |
| ---------------------------------------------------------------------------------- | --------------- | -------------------- | ----------- |
| [13.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v13) | 13 | 2025-12-14 | 2026-12-14 |
| [15.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v15) | 15 | 2025-08-14 | 2025-11-14 |
| [16.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v16) | 16 | 2026-03-12 | 2026-06-12 |
| [16.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v16) | 16 | 2026-03-12 | 2026-06-12 |
| [17.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v17) | 17 | 2027-11-27 | 2028-11-27 |
## Unsupported Versions

| Package Version | Umbraco Version | End of Life |
| ---------------------------------------------------------------------------------- | --------------- | ----------- |
| [10.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v10) | 10 | 2025-06-16 |
| [12.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v12) | 12 | 2024-06-29 |
| [14.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v14) | 14 | 2025-05-30 |
| [15.x](https://github.com/jcdcdev/Umbraco.Community.DataProtection/tree/v15) | 15 | 2025-11-14 |


## Future Support
Expand Down
3 changes: 0 additions & 3 deletions src/Umbraco.Community.DataProtection.TestSite/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
using Umbraco.Cms.Core.DependencyInjection;
using Umbraco.Extensions;

var builder = WebApplication.CreateBuilder(args);

builder.CreateUmbracoBuilder()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="16.1.1"/>
<PackageReference Include="uSync" Version="16.0.0"/>
<PackageReference Include="Umbraco.Cms" Version="17.0.0" />
<PackageReference Include="uSync" Version="17.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj"/>
<ProjectReference Include="../Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj" />
</ItemGroup>

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

<PropertyGroup>
Expand Down
Loading
Loading