Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/keyfactor-starter-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,19 @@ on:

jobs:
call-starter-workflow:
uses: keyfactor/actions/.github/workflows/starter.yml@v3
uses: keyfactor/actions/.github/workflows/starter.yml@v4
permissions:
contents: write # Explicitly grant write permission
with:
command_token_url: ${{ vars.COMMAND_TOKEN_URL }}
command_hostname: ${{ vars.COMMAND_HOSTNAME }}
command_base_api_path: ${{ vars.COMMAND_API_PATH }}
secrets:
token: ${{ secrets.V2BUILDTOKEN}}
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }}
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }}
scan_token: ${{ secrets.SAST_TOKEN }}
entra_username: ${{ secrets.DOCTOOL_ENTRA_USERNAME }}
entra_password: ${{ secrets.DOCTOOL_ENTRA_PASSWD }}
command_client_id: ${{ secrets.COMMAND_CLIENT_ID }}
command_client_secret: ${{ secrets.COMMAND_CLIENT_SECRET }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -353,3 +353,7 @@ MigrationBackup/
/sectigo-metadata-sync/config.json
/sectigo-metadata-sync/config/config.json
/sectigo-metadata-sync/config/config-az.json
/sectigo-metadata-sync/config/fields - Copy (2).json
/sectigo-metadata-sync/config/fields - Copy.json
/sectigo-metadata-sync/config/config-ses.json
/sectigo-metadata-sync/config/config-az.json
25 changes: 23 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# 1.0.0
Initial release
## 1.1.0 - October 15th 2025

### ⚠️ Important Notice
- Added a value truncation setting to config based on Keyfactor and Sectigo field character length limits.
- Setting must be specified for the tool to run - it will exit unless the setting is specified. Please review documentation for the `enableTruncation` setting before using this version!

### Fixed
- Fixed configuration loading and verification.

### Changed
- Improved logging and improved memory consumption.
- Updated nuget packages.
- Improved clients for Sectigo and Keyfactor APIs.
- Improved documentation, added diagrams with clarifications.

### Added
- Added OAuth login support for Keyfactor API.
- Added the ability to limit sync to certificates imported into Keyfactor after a given date via config file.
- **Breaking** Added value truncation setting to config.

## 1.0.0 - June 23rd 2025

- Initial release
260 changes: 168 additions & 92 deletions README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.13.35919.96
VisualStudioVersion = 17.14.36511.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SectigoMetadataSync", "SectigoMetadataSync.csproj", "{12C10854-E2CF-4244-A0D0-6FF1C2102058}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SectigoMetadataSync", "sectigo-metadata-sync\SectigoMetadataSync.csproj", "{8B00BC70-F403-0D2D-2792-3951211C6665}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
ProjectSection(SolutionItems) = preProject
..\docsource\content.md = ..\docsource\content.md
..\integration-manifest.json = ..\integration-manifest.json
CHANGELOG.md = CHANGELOG.md
docsource\content.md = docsource\content.md
docsource\dataflow.png = docsource\dataflow.png
integration-manifest.json = integration-manifest.json
.github\workflows\keyfactor-starter-workflow.yml = .github\workflows\keyfactor-starter-workflow.yml
EndProjectSection
EndProject
Global
Expand All @@ -17,15 +20,15 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{12C10854-E2CF-4244-A0D0-6FF1C2102058}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12C10854-E2CF-4244-A0D0-6FF1C2102058}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12C10854-E2CF-4244-A0D0-6FF1C2102058}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12C10854-E2CF-4244-A0D0-6FF1C2102058}.Release|Any CPU.Build.0 = Release|Any CPU
{8B00BC70-F403-0D2D-2792-3951211C6665}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B00BC70-F403-0D2D-2792-3951211C6665}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B00BC70-F403-0D2D-2792-3951211C6665}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B00BC70-F403-0D2D-2792-3951211C6665}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {94154D4D-3D14-471A-A082-CF4F6D69DC90}
SolutionGuid = {25C852B6-8FAF-4218-B453-6DBB1A896754}
EndGlobalSection
EndGlobal
Loading
Loading