0.9.6.rst 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ========================
  2. Salt 0.9.6 Release Notes
  3. ========================
  4. :release: 2012-01-21
  5. Salt 0.9.6 is a release targeting a few bugs and changes. This is primarily
  6. targeting an issue found in the names declaration in the state system. But a
  7. few other bugs were also repaired, like missing support for grains in extmods.
  8. Due to a conflict in distribution packaging msgpack will no longer be bundled
  9. with Salt, and is required as a dependency.
  10. New Features
  11. ============
  12. HTTP and ftp support in files.managed
  13. -------------------------------------
  14. Now under the source option in the file.managed state a HTTP or ftp address
  15. can be used instead of a file located on the salt master.
  16. Allow Multiple Returners
  17. ------------------------
  18. Now the returner interface can define multiple returners, and will also return
  19. data back to the master, making the process less ambiguous.
  20. Minion Memory Improvements
  21. --------------------------
  22. A number of modules have been taken out of the minion if the underlying
  23. systems required by said modules are not present on the minion system.
  24. A number of other modules need to be stripped out in this same way which
  25. should continue to make the minion more efficient.
  26. Minions Can Locally Cache Return Data
  27. -------------------------------------
  28. A new option, cache_jobs, has been added to the minion to allow for all of the
  29. historically run jobs to cache on the minion, allowing for looking up historic
  30. returns. By default cache_jobs is set to False.
  31. Pure Python Template Support For file.managed
  32. ---------------------------------------------
  33. Templates in the file.managed state can now be defined in a Python script.
  34. This script needs to have a run function that returns the string that needs to
  35. be in the named file.