-
Notifications
You must be signed in to change notification settings - Fork 583
Remove deprecated hash function #1320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
hash is a functionBreaking changes to this file MAY impact these 29 modules (near match):
This module is declared in 318 of 580 indexed public
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id562cf4aa8cae94ae537ff239fac946884940082
* Update puppet-horizon from branch 'master' to 439ce39e1a8e8592a2930931e162deff7a1ee0f7 - Replace stdlib hash function by the built-in Puppet one The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id562cf4aa8cae94ae537ff239fac946884940082
* Update puppet-openstacklib from branch 'master' to e05c8e739ba4a509ad48905f5f575e344fcc2658 - Replace stdlib hash function by the built-in Puppet one The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id6e2b70cd1a4472caee324e94a674cfe24cd6a9e
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id6e2b70cd1a4472caee324e94a674cfe24cd6a9e
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id6e2b70cd1a4472caee324e94a674cfe24cd6a9e
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id6e2b70cd1a4472caee324e94a674cfe24cd6a9e
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id562cf4aa8cae94ae537ff239fac946884940082
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id562cf4aa8cae94ae537ff239fac946884940082
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id6e2b70cd1a4472caee324e94a674cfe24cd6a9e
The upstream patch [1] removed the hash stdlib function which was deprecated since a while. We should now use the Puppet built-in function Hash(). [1] puppetlabs/puppetlabs-stdlib#1320 Change-Id: Id562cf4aa8cae94ae537ff239fac946884940082
Note: This function has been replaced with the built-in ability to create a new value of almost any
data type - see the built-in
Hash.new
functionin Puppet.
This example shows the equivalent expression in the Puppet language:
Hash(['a',1,'b',2,'c',3]) Hash([['a',1],['b',2],['c',3]])