Skip to content

Commit

Permalink
Bump version to 7.9.0 by Chef Expeditor
Browse files Browse the repository at this point in the history
Obvious fix; these changes are the result of automation not creative thinking.
  • Loading branch information
chef-ci committed Mar 8, 2021
1 parent f549ffc commit 21da68c
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 23 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Cookstyle Changelog

<!-- latest_release 7.8.5 -->
## [v7.8.5](https://github.com/chef/cookstyle/tree/v7.8.5) (2021-03-08)
<!-- latest_release 7.9.0 -->
## [v7.9.0](https://github.com/chef/cookstyle/tree/v7.9.0) (2021-03-08)

#### Merged Pull Requests
- Add a spelling check [#831](https://github.com/chef/cookstyle/pull/831) ([tas50](https://github.com/tas50))
- Improve resource docs [#838](https://github.com/chef/cookstyle/pull/838) ([tas50](https://github.com/tas50))
<!-- latest_release -->

<!-- release_rollup since=7.8.3 -->
### Changes not yet released to rubygems.org

#### Merged Pull Requests
- Improve resource docs [#838](https://github.com/chef/cookstyle/pull/838) ([tas50](https://github.com/tas50)) <!-- 7.9.0 -->
- Add a spelling check [#831](https://github.com/chef/cookstyle/pull/831) ([tas50](https://github.com/tas50)) <!-- 7.8.5 -->
- Update RuboCop engine to 1.11 [#837](https://github.com/chef/cookstyle/pull/837) ([tas50](https://github.com/tas50)) <!-- 7.8.4 -->
<!-- release_rollup -->
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.5
7.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ short_name: BlockGuardWithOnlyString
full_name: Chef/Correctness/BlockGuardWithOnlyString
department: Chef/Correctness
description: A resource guard (not_if/only_if) that is a string should not be wrapped
in {}. Wrapping a guard string in {} causes it to be executed as Ruby code which
in `{}`. Wrapping a guard string in {} causes it to be executed as Ruby code which
will always returns true instead of a shell command that will actually run.
autocorrection: true
target_chef_version: All Versions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
short_name: ChefApplicationFatal
full_name: Chef/Correctness/ChefApplicationFatal
department: Chef/Correctness
description: Use raise to force Chef Infra Client to fail instead of using Chef::Application.fatal,
description: Use `raise` to force Chef Infra Client to fail instead of using `Chef::Application.fatal`,
which masks the full stack trace of the failure and makes debugging difficult.
autocorrection: true
target_chef_version: All Versions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
short_name: ConditionalRubyShellout
full_name: Chef/Correctness/ConditionalRubyShellout
department: Chef/Correctness
description: Don't use Ruby to shellout in a only_if / not_if conditional when you
can just shellout directly. Any string value used with only_if / not_if is executed
in your system's shell and the return code of the command is the result for the
not_if / only_if determination.
description: Don't use Ruby to shellout in a `only_if` / `not_if` conditional. Any
string value used in an `only_if` / `not_if` is executed in your system's shell
and the return code of the command is the result for the `not_if` / `only_if` determination.
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
short_name: DnfPackageAllowDowngrades
full_name: Chef/Correctness/DnfPackageAllowDowngrades
department: Chef/Correctness
description: dnf_package does not support the allow_downgrades property
description: The `dnf_package` resource does not support the `allow_downgrades` property.
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
short_name: IncorrectLibraryInjection
full_name: Chef/Correctness/IncorrectLibraryInjection
department: Chef/Correctness
description: Libraries should be injected into the Chef::DSL::Recipe class and not
Chef::Recipe or Chef::Provider classes directly.
description: Libraries should be injected into the `Chef::DSL::Recipe` class and not
`Chef::Recipe` or `Chef::Provider` classes directly.
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
short_name: InvalidNotificationTiming
full_name: Chef/Correctness/InvalidNotificationTiming
department: Chef/Correctness
description: Valid notification timings are :immediately, :immediate (alias for :immediately),
:delayed, and :before.
description: Valid notification timings are `:immediately`, `:immediate` (alias for
:immediately), `:delayed`, and `:before`.
autocorrection: false
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformFamilyHelper
full_name: Chef/Correctness/InvalidPlatformFamilyHelper
department: Chef/Correctness
description: Pass valid platform families to the platform_family? helper.
description: 'Pass valid platform families to the `platform_family?` helper. See [Infra
Language: Platform Family](https://docs.chef.io/infra_language/checking_platforms/#platform_family-values)
for a complete list of platform families.'
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformFamilyInCase
full_name: Chef/Correctness/InvalidPlatformFamilyInCase
department: Chef/Correctness
description: Use valid platform family values in case statements.
description: 'Use valid platform family values in case statements. See [Infra Language:
Platform Family](https://docs.chef.io/infra_language/checking_platforms/#platform_family-values)
for a complete list of platform families.'
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformHelper
full_name: Chef/Correctness/InvalidPlatformHelper
department: Chef/Correctness
description: Pass valid platforms to the platform? helper.
description: 'Pass valid platforms to the `platform?` helper. See [Infra Language:
Platform](https://docs.chef.io/infra_language/checking_platforms/#platform-values)
for a list of many common platform values.'
autocorrection: false
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
short_name: InvalidPlatformInCase
full_name: Chef/Correctness/InvalidPlatformInCase
department: Chef/Correctness
description: Use valid platform values in case statements.
description: 'Use valid platform values in case statements. See [Infra Language: Platform](https://docs.chef.io/infra_language/checking_platforms/#platform-values)
for a list of many common platform values.'
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformMetadata
full_name: Chef/Correctness/InvalidPlatformMetadata
department: Chef/Correctness
description: metadata.rb supports methods should contain valid platforms.
description: 'metadata.rb supports methods should contain valid platforms. See [Infra
Language: Platform](https://docs.chef.io/infra_language/checking_platforms/#platform-values)
for a list of many common platform values.'
autocorrection: true
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformValueForPlatformFamilyHelper
full_name: Chef/Correctness/InvalidPlatformValueForPlatformFamilyHelper
department: Chef/Correctness
description: Pass valid platforms families to the value_for_platform_family helper.
description: 'Pass valid platforms families to the value_for_platform_family helper.
See [Infra Language: Platform Family](https://docs.chef.io/infra_language/checking_platforms/#platform_family-values)
for a complete list of platform families.'
autocorrection: false
target_chef_version: All Versions
examples: |2-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
short_name: InvalidPlatformValueForPlatformHelper
full_name: Chef/Correctness/InvalidPlatformValueForPlatformHelper
department: Chef/Correctness
description: Pass valid platforms to the value_for_platform helper.
description: 'Pass valid platforms to the value_for_platform helper. See [Infra Language:
Platform](https://docs.chef.io/infra_language/checking_platforms/#platform-values)
for a list of many common platform values.'
autocorrection: false
target_chef_version: All Versions
examples: |2-
Expand Down
2 changes: 1 addition & 1 deletion lib/cookstyle/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Cookstyle
VERSION = "7.8.5" # rubocop: disable Style/StringLiterals
VERSION = "7.9.0" # rubocop: disable Style/StringLiterals
RUBOCOP_VERSION = '1.11.0'
end

0 comments on commit 21da68c

Please sign in to comment.