ansible/changelogs/fragments/vm_fix.yml
Toshio Kuratomi 33f0c1ce22 FactCache changes
* Fix FactCache to conform to the dict API
  * update needs to take a dict rather than a key and a value
  * __init__ needs to allow for setting the intial dictionary
* Remove unneeded _display and _cache attributes
* Move ansible.plugins.cache.FactCache to
  ansible.vars.fact_cache.FactCache because this isn't part of the cache
  plugin API.
* Add backwards compatibility when calling update on the new FactCache
* Remove code for calling old FactCache. There's no way to call the old
  FactCache so there's no need for backwards compatible code for calling
  code.  Backwards compatibility is handling things which are calling
  the new FactCache.
* Port our code to the new FactCache location.
2018-12-05 12:33:27 -08:00

6 lines
257 B
YAML

bugfixes:
- fix FactCache.update() to conform to the dict API.
minor_changes:
- Moved the FactCache code from ansible.plugins.cache.FactCache to
ansible.vars.fact_cache.FactCache as it is not meant to be used to
implement cache plugins.