Skip to content

Commit

Permalink
Release 2.5 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
leefine02 authored Jun 24, 2022
1 parent 63bf001 commit 5a49f57
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/keyfactor-starter-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }}
release_url: ${{ needs.call-create-github-release-workflow.outputs.release_url }}
release_dir: JavaKeyStoreSSH/bin/Release/netcoreapp3.1
release_dir: JavaKeyStoreSSH/bin/Release
secrets:
token: ${{ secrets.PRIVATE_PACKAGE_ACCESS }}

Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
v2.5
- Bug fixes for installation on Linux hosted Universal Orchestrator

v2.4
- Add new config.json setting DefaultLinuxPermissionsOnStoreCreation, and certificate store type custom parameter linuxFilePermissionsOnStoreCreation
- Add ability to use client machine credentials for WinRM Windows servers rather than always using the Keyfactor service account


v2.3
- Limit the valid characters that can be used for store paths to protect against command injection.

Expand Down
Binary file removed Images/Image1d.png
Binary file not shown.
4 changes: 2 additions & 2 deletions JavaKeyStoreSSH/ApplicationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public static void Initialize(string currLocation)
string configContents = string.Empty;
string currDir = Path.GetDirectoryName(currLocation);

if (!File.Exists($@"{currDir}\config.json"))
if (!File.Exists($@"{currDir}{Path.DirectorySeparatorChar}config.json"))
throw new JKSException($"config.json file does not exist in {currDir}");

using (StreamReader sr = new StreamReader($@"{currDir}\config.json"))
using (StreamReader sr = new StreamReader($@"{currDir}{Path.DirectorySeparatorChar}config.json"))
{
configContents = sr.ReadToEnd();
}
Expand Down
2 changes: 1 addition & 1 deletion JavaKeyStoreSSH/JavaKeyStoreSSH.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TargetFramework>netcoreapp3.1</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Version>2.1.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The Universal Orchestrator is the successor to the Windows Orchestrator. This Ca




---

<!-- add integration specific information below -->
Expand Down

0 comments on commit 5a49f57

Please sign in to comment.