Skip to content

Commit d95e00f

Browse files
Implement endpoint permission specs
Implement additional tests for ApiMethods and Resource Action definitions Update build version Package updates Refresh hub api client
1 parent 699a027 commit d95e00f

File tree

17 files changed

+889
-118
lines changed

17 files changed

+889
-118
lines changed

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>7.0.2.26</Version>
4-
<AssemblyVersion>7.0.2.26</AssemblyVersion>
3+
<Version>7.0.3.1</Version>
4+
<AssemblyVersion>7.0.3.1</AssemblyVersion>
55
<Authors>Webprofusion Pty Ltd</Authors>
66
<Company>Webprofusion Pty Ltd</Company>
77
<Product>Certify Certificate Manager - Community Edition [dev version via github]</Product>

src/Certify.Client/Certify.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="9.0.6" />
1313
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.12.0" />
1414
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
15-
<PackageReference Include="Polly" Version="8.6.0" />
15+
<PackageReference Include="Polly" Version="8.6.1" />
1616
<PackageReference Include="System.Net.Http" Version="4.3.4" />
1717
</ItemGroup>
1818

src/Certify.Core/Certify.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</PropertyGroup>
4646
<ItemGroup>
4747
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.12.0" />
48-
<PackageReference Include="Polly" Version="8.6.0" />
48+
<PackageReference Include="Polly" Version="8.6.1" />
4949
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
5050
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
5151
</ItemGroup>

src/Certify.Models/Certify.Models.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,7 @@
2222
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0|AnyCPU'">
2323
<NoWarn>1701;1702;CA1864</NoWarn>
2424
</PropertyGroup>
25-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
26-
<NoWarn>1701;1702;CA1864</NoWarn>
27-
</PropertyGroup>
28-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'">
29-
<NoWarn>1701;1702;CA1864</NoWarn>
30-
</PropertyGroup>
31-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|AnyCPU'">
32-
<NoWarn>1701;1702;CA1864</NoWarn>
33-
</PropertyGroup>
25+
3426
<ItemGroup>
3527
<PackageReference Include="Fody" Version="6.9.2">
3628
<PrivateAssets>all</PrivateAssets>

src/Certify.Models/Hub/AccessControlConfig.cs

Lines changed: 167 additions & 16 deletions
Large diffs are not rendered by default.

src/Certify.Providers/DNS/AWSRoute53/Plugin.DNS.AWSRoute53.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="AWSSDK.Route53" Version="4.0.1.2" />
10+
<PackageReference Include="AWSSDK.Route53" Version="4.0.1.4" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/Certify.Server/Certify.Server.Core/Certify.Server.Core/Certify.Server.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.6" />
1313
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="9.0.6" />
1414
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.6" />
15-
<PackageReference Include="Polly" Version="8.6.0" />
15+
<PackageReference Include="Polly" Version="8.6.1" />
1616
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="9.0.6" />
1717
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.2" />
1818
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="9.0.6" />
@@ -22,7 +22,7 @@
2222
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.6" />
2323

2424
<!-- only include swashbuckle in debug build -->
25-
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Swashbuckle.AspNetCore" Version="8.1.4" />
25+
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Swashbuckle.AspNetCore" Version="9.0.1" />
2626
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.6" />
2727

2828
</ItemGroup>

src/Certify.Server/Certify.Server.Hub.Api.Client/Certify.Server.Hub.Api.Client.cs

Lines changed: 432 additions & 0 deletions
Large diffs are not rendered by default.

src/Certify.Server/Certify.Server.Hub.Api/Certify.Server.Hub.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.6" />
2323
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" />
2424
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.2" />
25-
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
25+
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.1" />
2626
</ItemGroup>
2727
<ItemGroup>
2828
<ProjectReference Include="..\..\..\..\certify\src\Certify.SourceGenerators\Certify.SourceGenerators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />

src/Certify.Server/Certify.Server.HubService/Certify.Server.HubService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" />
18-
<PackageReference Include="Scalar.AspNetCore" Version="2.4.13" />
18+
<PackageReference Include="Scalar.AspNetCore" Version="2.4.17" />
1919
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
2020

2121
<!-- included to prevent conflict with older versions in plugins-->

0 commit comments

Comments
 (0)