0.9.2.rst 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ========================
  2. Salt 0.9.2 Release Notes
  3. ========================
  4. :release: 2011-09-17
  5. Salt 0.9.2 has arrived! 0.9.2 is primarily a bugfix release, the exciting
  6. component in 0.9.2 is greatly improved support for salt states. All of the
  7. salt states interfaces have been more thoroughly tested and the new salt-states
  8. git repo is growing with example of how to use states.
  9. This release introduces salt states for early developers and testers to start
  10. helping us clean up the states interface and make it ready for the world!
  11. 0.9.2 also fixes a number of bugs found on Python 2.6.
  12. Download!
  13. ---------
  14. The Salt source can be downloaded from PyPI:
  15. https://pypi.python.org/packages/source/s/salt/salt-0.9.2.tar.gz
  16. For instructions on how to set up Salt please see the :ref:`installation`
  17. instructions.
  18. New Features
  19. ------------
  20. Salt-Call Additions
  21. ````````````````````
  22. The salt-call command has received an overhaul, it now hooks into the outputter
  23. system so command output looks clean, and the logging system has been hooked
  24. into salt-call, so the -l option allows the logging output from salt minion
  25. functions to be displayed.
  26. The end result is that the salt-call command can execute the state system and
  27. return clean output:
  28. .. code-block:: bash
  29. # salt-call state.highstate
  30. State System Fixes
  31. ```````````````````
  32. The state system has been tested and better refined. As of this release the
  33. state system is ready for early testers to start playing with. If you are
  34. interested in working with the state system please check out the (still very
  35. small) salt-states GitHub repo:
  36. https://github.com/saltstack/salt-states
  37. This git repo is the active development branch for determining how a clean
  38. salt-state database should look and act. Since the salt state system is still
  39. very young a lot of help is still needed here. Please fork the salt-states
  40. repo and help us develop a truly large and scalable system for configuration
  41. management!
  42. Notable Bug Fixes
  43. -----------------
  44. Python 2.6 String Formatting
  45. ````````````````````````````
  46. Python 2.6 does not support format strings without an index identifier, all of
  47. them have been repaired.
  48. Cython Loading Disabled by Default
  49. ``````````````````````````````````
  50. Cython loading requires a development tool chain to be installed on the minion,
  51. requiring this by default can cause problems for most Salt deployments. If
  52. Cython auto loading is desired it will need to be turned on in the minion
  53. config.