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
9 changes: 9 additions & 0 deletions .github/workflows/createRelease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Workflow caller - create release
on:
pull_request:
types: [closed]

jobs:
verify-changelog:
if: github.event.pull_request.merged == true
uses: Tools4everBV/.github/.github/workflows/createRelease.yaml@main
8 changes: 8 additions & 0 deletions .github/workflows/verifyChangelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Workflow caller - verify changelog updated
on:
pull_request:
types: [opened, synchronize]

jobs:
verify-changelog:
uses: Tools4everBV/.github/.github/workflows/verifyChangelog.yaml@main
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Change Log

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).

## [2.0.0] - 2026-06-04

Reworked release of _HelloID-Conn-Prov-Target-DynamicsEmpire_ .

### Added

- Updated documentation and connector metadata for the V2 target connector structure.

### Changed

- Reworked provisioning implementation to align with HelloID PowerShell V2 conventions.
- Updated field mapping to match current repository behavior for create flow.
- Updated README content to reflect current connector scope and configuration.

### Deprecated

### Removed

- Legacy template placeholders and outdated references from documentation.

## [1.0.0] - 2026-06-04

Initial (legacy) release line of _HelloID-Conn-Prov-Target-DynamicsEmpire_ before the PowerShell V2 rework.

### Added

- Initial connector implementation and base project files.

### Changed

- No further changes recorded for this legacy baseline.

### Deprecated

- Legacy implementation line, superseded by 2.0.0.

### Removed

- Not applicable.
Binary file added Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 38 additions & 38 deletions configuration.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
[
{
"key": "NavAdminToolsFile",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "NavAdminToolsFile",
"description": "The full path to the NavAdminToolsFile *.ps1 file",
"required": true
}
{
"defaultValue": "",
"key": "Applicationserver",
"templateOptions": {
"description": "Server containing NAV module",
"label": "Applicationserver",
"required": true
},
{
"key": "ServerInstance",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "ServerInstance",
"description": "The name of the Dynamics Nav server instance.",
"required": true
}
"type": "input"
},
{
"defaultValue": "C:\\Program Files\\Microsoft Dynamics 365 Business Central\\Service\\navadmintool.ps1",
"key": "PSModulePath",
"templateOptions": {
"description": "Path to powershell NavAdminTools module",
"label": "Powershell module path",
"required": true
},
{
"key": "Tenant",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Tenant",
"description": "The ID of the Dynamics Nav tenant.",
"required": true
}
"type": "input"
},
{
"defaultValue": "DEERP",
"key": "NavServerInstanceName",
"templateOptions": {
"description": "NavServer Instance Name",
"label": "NavServer Instance Name",
"required": true
},
{
"key": "IsDebug",
"type": "checkbox",
"defaultValue": true,
"templateOptions": {
"label": "Toggle debug logging",
"description": "When toggled, debug logging will be displayed",
"required": false
}
}
]
"type": "input"
},
{
"defaultValue": "Default",
"key": "Tenant",
"templateOptions": {
"description": "Business Central Tenant, usually default",
"label": "Tenant",
"required": true
},
"type": "input"
}
]
Loading
Loading