Skip to content

Commit 166ac23

Browse files
authored
Merge pull request #6 from Keyfactor/release-1.1-pre
prepare 1.1 for release
2 parents ccaaf6f + 75a2152 commit 166ac23

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed

.github/workflows/keyfactor-extension-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,7 @@ jobs:
113113
run: |
114114
md ${{ github.workspace }}\zip\Keyfactor
115115
Compress-Archive -Path `
116-
${{ env.SOLUTION_FOLDER }}\${{ env.PROJECT_FOLDER }}\bin\Release\netcoreapp3.1\*, `
117-
${{ env.SOLUTION_FOLDER }}\integration-manifest.json `
116+
${{ env.SOLUTION_FOLDER }}\${{ env.PROJECT_FOLDER }}\bin\Release\netcoreapp3.1\* `
118117
-DestinationPath ${{ github.workspace }}\zip\Keyfactor\$Env:REPO_NAME.zip -Force
119118
120119
- name: Upload Release Asset (x64)

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
1.0.2
2-
* Remove dependnce on Windows.Web.Administration on the orchestrator server. The agent will now use the local version on the managed server via remote powershell
3-
* add support for the IncludePortInSPN flag
4-
* add support to use credentials from Keyfactor for Add/Remove/Inventory jobs.
1+
1.1.0
2+
* Migrate to .NET Core
3+
* Perform Renewals using RenewalThumbprint
54

65
1.0.3
76
* Add support for the SNI Flags when creating new bindings. Supported flags include:
87
* 0 No SNI
98
* 1 SNI Enabled
109
* 2 Non SNI binding which uses Central Certificate Store
11-
* 3 SNI binding which uses Central Certificate Store
10+
* 3 SNI binding which uses Central Certificate Store
11+
12+
1.0.2
13+
* Remove dependnce on Windows.Web.Administration on the orchestrator server. The agent will now use the local version on the managed server via remote powershell
14+
* add support for the IncludePortInSPN flag
15+
* add support to use credentials from Keyfactor for Add/Remove/Inventory jobs.

IISWithBindings/IISWithBindings.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@
1414
<ItemGroup>
1515
<PackageReference Include="Keyfactor.Logging" Version="1.1.1" />
1616
<PackageReference Include="Keyfactor.Orchestrators.IOrchestratorJobExtensions" Version="0.6.0" />
17-
<PackageReference Include="Keyfactor.Orchestrators.IOrchestratorRegistrationUpdater" Version="1.0.3" />
18-
<PackageReference Include="Keyfactor.Orchestrators.ISslJobExtension" Version="1.0.3" />
19-
<PackageReference Include="Keyfactor.Platform.IOrchestratorRegistrationHandler" Version="2.0.0" />
20-
<PackageReference Include="Microsoft.Web.Administration" Version="11.1.0" />
2117
<PackageReference Include="System.Management.Automation" Version="7.0.5" />
2218
</ItemGroup>
2319

20+
<ItemGroup>
21+
<None Update="manifest.json">
22+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
23+
</None>
24+
</ItemGroup>
25+
2426
</Project>

IISWithBindings/manifest.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extensions": {
3+
"Keyfactor.Orchestrators.Extensions.IOrchestratorJobExtension": {
4+
"CertStores.IISBindings.Inventory": {
5+
"assemblypath": "IISWithBindings.dll",
6+
"TypeFullName": "Keyfactor.Extensions.Orchestrator.IISWithBinding.Jobs.Inventory"
7+
},
8+
"CertStores.IISBindings.Management": {
9+
"assemblypath": "IISWithBindings.dll",
10+
"TypeFullName": "Keyfactor.Extensions.Orchestrator.IISWithBinding.Jobs.Management"
11+
}
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)