diff options
author | Thom May <thom@may.lt> | 2016-11-16 17:28:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 17:28:07 +0000 |
commit | af1332711139cade37104169e943e290c6c00362 (patch) | |
tree | c1cebd27481cc2f2944e8d731140ed32924f9ab8 /lib/chef/cookbook_version.rb | |
parent | 02968423cb2da19b34c8ec0f69df39bff74eabb3 (diff) | |
parent | 64b8b0efd90e59ad609ba30fe4bc7ff19e70e940 (diff) | |
download | chef-af1332711139cade37104169e943e290c6c00362.tar.gz |
Merge pull request #5460 from chef/tm/deprecation_with_url
Core: Structure deprecations with additional metadata
Diffstat (limited to 'lib/chef/cookbook_version.rb')
-rw-r--r-- | lib/chef/cookbook_version.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/cookbook_version.rb b/lib/chef/cookbook_version.rb index 8de9cb26dd..33226a7de5 100644 --- a/lib/chef/cookbook_version.rb +++ b/lib/chef/cookbook_version.rb @@ -54,12 +54,12 @@ class Chef attr_accessor :metadata_filenames def status=(new_status) - Chef.log_deprecation("Deprecated method `status' called. This method will be removed.") + Chef.deprecated(:internal_api, "Deprecated method `status' called. This method will be removed.") @status = new_status end def status - Chef.log_deprecation("Deprecated method `status' called. This method will be removed.") + Chef.deprecated(:internal_api, "Deprecated method `status' called. This method will be removed.") @status end @@ -485,7 +485,7 @@ class Chef end def self.json_create(o) - Chef.log_deprecation("Auto inflation of JSON data is deprecated. Please use Chef::CookbookVersion#from_hash") + Chef.deprecated(:json_auto_inflate, "Auto inflation of JSON data is deprecated. Please use Chef::CookbookVersion#from_hash") from_hash(o) end @@ -496,7 +496,7 @@ class Chef # @deprecated This method was used by the Ruby Chef Server and is no longer # needed. There is no replacement. def generate_manifest_with_urls - Chef.log_deprecation("Deprecated method #generate_manifest_with_urls.") + Chef.deprecated(:internal_api, "Deprecated method #generate_manifest_with_urls.") rendered_manifest = manifest.dup COOKBOOK_SEGMENTS.each do |segment| |