6.1 KiB
author | discussion |
---|---|
BernieWhite | false |
Deprecations
Deprecations for v3
Execution options
PSRule provides a number of execution options that control logging of certain events. In many cases these options turn a warning on or off.
These options are deprecated but replaced to provide more choice to when configuring logging options. Now you can configure the following:
Ignore
(1) - Continue to execute silently.Warn
(2) - Continue to execute but log a warning. This is the default.Error
(3) - Abort and throw an error.Debug
(4) - Continue to execute but log a debug message.
The following execution options have been deprecated and will be removed from v3.
Execution.SuppressedRuleWarning
is replaced withExecution.RuleSuppressed
. SetExecution.RuleSuppressed
toWarn
to log a warning from v2.8.0. If both options are set,Execution.SuppressedRuleWarning
takes precedence until v3.Execution.AliasReferenceWarning
is replaced withExecution.AliasReference
. SetExecution.AliasReference
toWarn
to log a warning from v2.9.0. If both options are set,Execution.AliasReferenceWarning
takes precedence until v3.Execution.InconclusiveWarning
is replaced withExecution.RuleInconclusive
. SetExecution.RuleInconclusive
toWarn
to log a warning from v2.9.0. If both options are set,Execution.InconclusiveWarning
takes precedence until v3.Execution.InvariantCultureWarning
is replaced withExecution.InvariantCulture
. SetExecution.InvariantCulture
toWarn
to log a warning from v2.9.0. If both options are set,Execution.InvariantCultureWarning
takes precedence until v3.Execution.NotProcessedWarning
is replaced withExecution.UnprocessedObject
. SetExecution.UnprocessedObject
toWarn
to log a warning from v2.9.0. If both options are set,Execution.NotProcessedWarning
takes precedence until v3.
!!! Tip You do not need to configure both options. If you have the deprecated option configured, switch to the new option.
Git Head input object
Previously when the Input.Format
option was set to File
the .git/HEAD
file was emitted as an input object.
The original purpose of this feature was to allow conventions to run once against the root of the repository.
Subsequent changes to PSRule have made this feature redundant by adding support for the -Initialize
block.
From v3 the .git/HEAD
file will no longer be emitted as an input object.
Consider adding or updating a convention that uses the -Initialize
block to emit run initialization logic.
Yon can also use the -Initialize
block to emit a custom object to the pipeline by using the $PSRule.ImportWithType
method.
Rule output object
Several properties of the rule object have been renamed to improve consistency with other objects.
Previously rules returned by Get-PSRule
returned a rule object which included the following properties:
RuleId
RuleName
Description
ModuleName
SourcePath
These have been replaced with the following properties:
Id
instead ofRuleId
.Name
instead ofRuleName
.Synopsis
instead ofDescription
.Source.Module
instead ofModuleName
.Source.Path
instead ofSourcePath
.
The changes apply from v2.1.0, however the old properties are still available for backwards compatibility. From v3 these properties will be removed. These changes do not affect normal usage of PSRule. Supporting scripts that directly use the old names may not work correctly until you update these names.
Language block interface
Several properties of Baselines and Selectors have been renamed to improve consistency.
ModuleName
SourcePath
These have been replaced with the following properties:
Source.Module
instead ofModuleName
.Source.Path
instead ofSourcePath
.
The changes apply from v2.1.0, however the old properties are still available for backwards compatibility. From v3 these properties will be removed. These changes do not affect normal usage of PSRule. Supporting scripts that directly use the old names may not work correctly until you update these names.
Binding configuration in baselines
Prior to v3, a baseline could configure a binding configuration to modify how objects are recognized by name, type, and scope. This existed to support scenarios before a module configuration and language scopes where core to how PSRule operates.
- Rules within a module will automatically use binding configuration from the module configuration. If no binding configuration is set, the configuration of the workspace will be used.
- Rules within the workspace will automatically use the binding configuration from options (
ps-rule.yaml
).
Configuring binding configuration on a baseline is removed from PSRule v3.
Binding hooks
Prior to v3, a custom binding PowerShell script block could be used to perform custom binding inline. This feature was hard to use and obsolete for most common use cases.
Alternatively, configure Binding.TargetName
and Binding.TargetType
options to use the built-in binder.
Deprecations for v2
Default baseline by module manifest
When packaging baselines in a module, you may want to specify a default baseline. PSRule v1.9.0 added support for setting the default baseline in a module configuration.
Previously a default baseline could be set by specifying the baseline in the module manifest. From v1.9.0 this is deprecated and will be removed from v2.
For details on how to migrate to the new default baseline option, continue reading the upgrade notes.
Resources without an API version
When creating YAML and JSON resources you define a resource by specifying the apiVersion
and kind
.
To allow new schema versions for resources to be introduced in the future, an apiVersion
was introduced.
For backwards compatibility, resources without an apiVersion
deprecated but supported.
From v2 resources without an apiVersion
will be ignored.
For details on how to add an apiVersion
to a resource, continue reading the upgrade notes.