Changes 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. Net::ZooKeeper - Perl extension for Apache ZooKeeper
  2. Revision history
  3. ================
  4. 0.01 Dec 5, 2008
  5. - initial version
  6. 0.02 Dec 16, 2008
  7. - support connection to ZooKeeper and get() method
  8. 0.03 Jan 9, 2009
  9. - implemented watch mechanism for get()
  10. 0.04 Jan 15, 2009
  11. - all basic ZooKeeper methods supported
  12. 0.05 Jan 21, 2009
  13. - converted from T_PTROBJ to T_ZK_HASH with PERL_MAGIC_ext,
  14. allows DESTROY() to be called repeatedly
  15. 0.06 Jan 27, 2009
  16. - converted from attribute accessor methods to inner and outer hashes
  17. with PERL_MAGIC_tied
  18. 0.07 Jan 29, 2009
  19. - all tied hash methods completed
  20. 0.08 Jan 30, 2009
  21. - simple thread safety enforced with CLONE_SKIP
  22. 0.09 Feb 12, 2009
  23. - ACL constants
  24. 0.10 Feb 18, 2009
  25. - ACL support
  26. 0.11 Feb 21, 2009
  27. - ZooKeeper version check
  28. 0.20 Feb 25, 2009
  29. - refactored watches as subclass
  30. 0.30 Feb 27, 2009
  31. - refactored stats as subclass
  32. 0.31 Mar 6, 2009
  33. - test suite completed
  34. 0.32 Mar 25, 2009
  35. - initial documentation completed, first public release
  36. 0.33 Apr 20, 2009
  37. - copyright donated to ASF
  38. 0.34 Jul 14, 2009
  39. - support ZooKeeper 3.2.0 release
  40. 0.35 Jul 15, 2009
  41. - support multiple include and library locations
  42. 0.36 Mar 27, 2011
  43. - Fix zookeeper version check, but only warn since we haven't been enforcing it in a while
  44. - Look for zookeeper includes in some sane places by default