Skip to content

Commit a600757

Browse files
authored
Merge pull request #24 from jcdcdev/dev/v15
15.0.0
2 parents 09459c6 + 2fe04eb commit a600757

File tree

98 files changed

+3135
-3125
lines changed

Some content is hidden

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

98 files changed

+3135
-3125
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ jobs:
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: 14
14+
umbraco-version: 15
15+
dotnet-version: "9"

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
with:
1717
project-name: Umbraco.Community.FileSystemProviders.B2
1818
project-path: src/Umbraco.Community.FileSystemProviders.B2/Umbraco.Community.FileSystemProviders.B2.csproj
19-
umbraco-version: 14
19+
umbraco-version: 15
20+
dotnet-version: "9"
2021
- name: Release
2122
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
2223
with:

SECURITY.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
The following table outlines the versions of the project that are currently supported with security updates:
6+
7+
| Version | Supported | Umbraco Version |
8+
| ------------------------------------------------------- | --------- | --------------- |
9+
| [15.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v15) || 15 |
10+
| [14.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v14) || 14 |
11+
| [13.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v13) || 13 |
12+
| [10.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v10) || 10 |
13+
| [12.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/v12) || 12 |
14+
| [0.1.x](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/tree/main) || 11 |
15+
16+
17+
## Future Support
18+
19+
Project maintainers plan to support all STS (Short-Term Support) and LTS (Long-Term Support) versions of Umbraco. However, exact release dates cannot be guaranteed.
20+
21+
> [!NOTE]
22+
> Visit [jcdc.dev/blog/umbraco-version-information](https://jcdc.dev/blog/umbraco-version-information) for more information on Umbraco versions.
23+
24+
## Reporting a Vulnerability
25+
26+
If you discover a vulnerability in this project, please follow one of these steps to report it:
27+
28+
- Create an [issue](https://github.com/jcdcdev/Umbraco.Community.FileSystemProviders.B2/security/advisories/new)
29+
- Contact the project author privately at [jcdc.dev/contact](https://jcdc.dev/contact)
30+
31+
### Details
32+
33+
Include as much information as possible about the vulnerability, including:
34+
35+
- Steps to reproduce
36+
- Potential impact
37+
- Any suggested fixes
38+
39+
40+
### Acknowledgment
41+
42+
You will receive an acknowledgment of your report as soon as possible.
43+
44+
> [!NOTE]
45+
> Response times may vary depending on other commitments.
46+
47+
### Resolution
48+
49+
Once the vulnerability is confirmed, project maintainers will work to resolve it as quickly as possible.
50+
51+
You will be notified once the issue has been resolved or rejected.
52+
53+
> [!TIP]
54+
> If the vulnerability is accepted, you will receive credit in the release notes.
55+
56+
Thank you for helping to keep this project secure!

src/TestSite.14/.gitignore renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/.gitignore

File renamed without changes.

src/TestSite.14/Program.cs renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Program.cs

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

36
builder.CreateUmbracoBuilder()

src/TestSite.14/Properties/launchSettings.json renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Properties/launchSettings.json

File renamed without changes.

src/TestSite.14/TestSite.14.csproj renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Umbraco.Community.FileSystemProviders.B2.TestSite.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<RootNamespace>TestSite.Fourteen</RootNamespace>
76
</PropertyGroup>
87

98
<ItemGroup>
10-
<PackageReference Include="Umbraco.Cms" Version="14.2.0"/>
11-
<PackageReference Include="uSync" Version="14.0.0"/>
9+
<PackageReference Include="Umbraco.Cms" Version="[15.0.0,16.0.0)" />
10+
<PackageReference Include="uSync" Version="15.0.1"/>
1211
</ItemGroup>
1312

1413
<ItemGroup>

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoHeadlineBlock.cshtml renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoHeadlineBlock.cshtml

File renamed without changes.

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoImageBlock.cshtml renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoImageBlock.cshtml

File renamed without changes.

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoRichTextBlock.cshtml renamed to src/Umbraco.Community.FileSystemProviders.B2.TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoRichTextBlock.cshtml

File renamed without changes.

0 commit comments

Comments
 (0)