Changes 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Revision history for Disk-SMART
  2. 0.09 2014-10-17
  3. Minor changes to get unit tests to pass on smokers
  4. Added testing of env parameter for smartctl path, which will enable multi OS support
  5. Added COMPATABILITY pod section
  6. 0.08 2014-10-16
  7. Corrected test data var name in new();
  8. 0.07 2014-10-15
  9. Implemented dummy testing in unit tests to bypass the need for smokers having smartctl installed
  10. Regex and function cleanups
  11. Added run_short_test() to run the SMART short self test and unit tests for it
  12. 0.06 2014-10-09
  13. Fixed issue with N/A disk temp not returning correctly and causing failure
  14. 0.05 2014-10-08
  15. Separated out data processing from the getter methods. Getter methods now only return hash data.
  16. Added methods and unit tests for update_data() and get_disk_attributes(). update_data() can be called at any point in a calling script to update the drive data. This makes it where Disk::SMART can be used in a script called by cron, or a continuously running daemon.
  17. Updated MANIFEST to include LICENSE file
  18. Changes to satisfy perl critic
  19. Simplified get_disk_temp with substr to read the disk temp
  20. 0.04 2014-10-06
  21. Updated Makefile.PL to better interact with Meta::CPAN
  22. Updated pod for clarity
  23. 0.03 2014-10-04
  24. Added Math::Round to dependency list in Makefile.PL. Credit - Syohei YOSHIDA.
  25. Refactored methods to return N/A first before any further proessing is done
  26. Cleaned up unit tests
  27. get_disk_model() only outputs just the model information now.
  28. Added get_disk_errors()
  29. Methods now validate the device passed to it, to ensure smartctl has already read it
  30. Added unit tests to test passing invalid device to methods
  31. Changed to croak() as I didn't feel a trace was necessary with proper error returning
  32. 0.02 2014-10-03
  33. Added confess to new() in case smartctl cannot find the specified device
  34. 0.01 2014-10-03
  35. First version, released on an unsuspecting world.