Skip to content
Open
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- SqlServerDsc
- Added adapted resource manifest generation to the build pipeline.
Comment on lines +10 to +11
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Add an issue reference to this Unreleased entry.

Please append the related issue using the required format, e.g.
([issue #2461](https://github.com/dsccommunity/SqlServerDsc/issues/2461)).

As per coding guidelines: "Reference issues using format issue #<issue_number> in CHANGELOG.md".

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@CHANGELOG.md` around lines 10 - 11, Update the Unreleased CHANGELOG.md entry
for "SqlServerDsc" by appending the related issue reference in the required
Markdown format; modify the entry "- Added adapted resource manifest generation
to the build pipeline." to include the issue link like "([issue
#<number>](https://github.com/dsccommunity/SqlServerDsc/issues/<number>))" so
the line reads with the issue reference at the end.


### Fixed

- SqlScript
Expand Down
8 changes: 8 additions & 0 deletions RequiredModules.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,12 @@

# For development
'Viscalyx.Common' = 'latest' # Invoke-PesterJob to run tests

# For producing Microsoft DSC resource manifests
'DscResource.Authoring' = @{
Version = 'latest'
Parameters = @{
AllowPrerelease = $true
}
}
}
3 changes: 3 additions & 0 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ BuildWorkflow:
- Build_Module_ModuleBuilder
- Build_NestedModules_ModuleBuilder
- Create_Changelog_Release_Output
- Create_DscAdaptedResourceManifests

docs:
- Clean_WikiContent_Folder
Expand Down Expand Up @@ -84,6 +85,8 @@ ModuleBuildTasks:
- 'Task.*'
DscResource.Test:
- 'Task.*'
DscResource.Authoring:
- '*.ib.tasks'

TaskHeader: |
param($Path)
Expand Down