Skip to content

Commit

Permalink
1.1.0 (#24)
Browse files Browse the repository at this point in the history
* Deprecate prefetch-src

* db updates
  • Loading branch information
MarkStega authored Jun 7, 2023
1 parent 22e51d3 commit 3599317
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GithubActionsRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
persist-credentials: false

- name: Use dotnet
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
include-prerelease: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/GithubActionsWIP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
persist-credentials: false

- name: Use dotnet
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
include-prerelease: true
Expand Down
31 changes: 0 additions & 31 deletions HttpSecurity.AspNet/ContentSecurityPolicies/PrefetchSrc.cs

This file was deleted.

2 changes: 1 addition & 1 deletion HttpSecurity.AspNet/HttpSecurity.AspNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion HttpSecurity.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
.AddSchemeSource(SchemeSource.Data, "w3.org/svg/2000"))
.AddManifestSrc(o => o.AddSelf())
.AddMediaSrc(o => o.AddSelf())
.AddPrefetchSrc(o => o.AddSelf())
.AddObjectSrc(o => o.AddNone())
.AddReportUri(o => o.AddUri((baseUri, baseDomain) => $"https://{baseUri}/api/CspReporting/UriReport"))
.AddScriptSrc(o => o
Expand Down
14 changes: 14 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ title: ReleaseNotes
---
# Release Notes

#### [1.1.0](https://github.com/Material-Blazor/HttpSecurity.AspNet/tree/1.1.0)

Released 2023-06-07

**Updates**

Removed deprecated prefetch-src headers.

**Breaking Changes**

**Known issues**

<br />

#### [1.0.0](https://github.com/Material-Blazor/HttpSecurity.AspNet/tree/1.0.0)

Released 2023-01-19
Expand Down
2 changes: 1 addition & 1 deletion SourceGenerator/SourceGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.6.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="6.0.0-preview.4.21253.7" />
</ItemGroup>

Expand Down

0 comments on commit 3599317

Please sign in to comment.