external help file | Module Name | online version | schema |
---|---|---|---|
ChangelogManagement-help.xml |
ChangelogManagement |
2.0.0 |
Adds an item to a changelog file in Keep a Changelog 1.0.0 format.
Add-ChangelogData [[-Path] <String>] [[-OutputPath] <String>] [-Type] <String> [-Data] <String>
[<CommonParameters>]
This cmdlet adds new Added/Changed/Deprecated/Removed/Fixed/Security items to the Unreleased section of a changelog in Keep a Changelog 1.0.0 format.
Add-ChangelogData -Type "Added" -Data "Spanish language translation"
Does not generate output, but adds a new Added change into changelog at .\CHANGELOG.md.
Add-ChangelogData -Type "Removed" -Data "TLS 1.0 support" -Path project\CHANGELOG.md
Does not generate output, but adds a new Security change into changelog at project\CHANGELOG.md.
The path to the source changelog file; defaults to .\CHANGELOG.md
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: CHANGELOG.md
Accept pipeline input: False
Accept wildcard characters: False
The path to the output changelog file; defaults to the same path as the source file
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: $Path
Accept pipeline input: False
Accept wildcard characters: False
Type of change to add to the changelog (Added, Changed, Deprecated, Removed, Fixed, or Security)
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The value of the change you are adding to the changelog
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.