Skip to content

Commit

Permalink
Merge pull request #45 from damienbod/dev_small_changes
Browse files Browse the repository at this point in the history
Updates, release 1.07
  • Loading branch information
damienbod authored Jan 16, 2022
2 parents a26c9d5 + 1eb99bc commit ea82aa3
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 23 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Certificate Manager change log

<a name="2022-01-16"></a>
## 2022-01-16 version 1.0.7
* Improved support for chained certificates
* Added new methods to support creating RSA Device Chained Certificates
* Updated packages

<a name="2020-11-21"></a>
## 2020-11-21 version 1.0.6
* Add support for all SubjectAlternativeName properties
Expand Down
2 changes: 1 addition & 1 deletion Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Certificate Manager is a package which makes it easy to create certificates (cha
Add the NuGet package to the your project file

```
<PackageReference Include="CertificateManager" Version="1.0.6" />
<PackageReference Include="CertificateManager" Version="1.0.7" />
```

The NuGet packages uses dependency injection to setup. In a console application initialize the package as follows:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 damienbod
Copyright (c) 2022 damienbod

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Add the NuGet package to the your project file

```
<PackageReference Include="CertificateManager" Version="1.0.6" />
<PackageReference Include="CertificateManager" Version="1.0.7" />
```

The NuGet packages uses dependency injection to setup. In a console application initialize the package as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

<footer class="border-top footer text-muted">
<div class="container">
&copy; 2019 - AspNetCoreCertificateAuth - <a asp-area="" asp-page="/Privacy">Privacy</a>
&copy; 2022 - AspNetCoreCertificateAuth - <a asp-area="" asp-page="/Privacy">Privacy</a>
</div>
</footer>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.21" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.1" />
<PackageReference Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.AzureKeyVault" Version="3.1.22" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="3.1.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.40.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.0" />
<PackageReference Include="Grpc.AspNetCore" Version="2.41.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.1" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="3.1.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.0" />
<PackageReference Include="Google.Protobuf" Version="3.19.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.40.0" />
<PackageReference Include="Grpc.Tools" Version="2.42.0">
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.1" />
<PackageReference Include="Google.Protobuf" Version="3.19.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.41.0" />
<PackageReference Include="Grpc.Tools" Version="2.43.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
14 changes: 7 additions & 7 deletions src/CertificateManager/CertificateManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@
<Description>Certificate Manager is a package which makes it easy to create certificates (chained and self signed) which can be used to in client server authentication and IoT Devices like Azure IoT Hub
</Description>
<PackageTags>certificate authentication mtls pfx cer pem cert crt</PackageTags>
<PackageReleaseNotes>bug fix Subject Key Identifier</PackageReleaseNotes>
<Copyright>2021 damienbod</Copyright>
<PackageReleaseNotes>Added new methods to support creating RSA Device Chained Certificates</PackageReleaseNotes>
<Copyright>2022 damienbod</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>damienbod</Authors>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>


<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.9" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/CertificateManagerTests/CertificateManagerTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="System.Security.Cryptography.X509Certificates" Version="4.3.2" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down

0 comments on commit ea82aa3

Please sign in to comment.