Changes 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Revision history for Disk-SMART
  2. 0.08 2014-10-16
  3. Corrected test data var name in new();
  4. 0.07 2014-10-15
  5. Implemented dummy testing in unit tests to bypass the need for smokers having smartctl installed
  6. Regex and function cleanups
  7. Added run_short_test() to run the SMART short self test and unit tests for it
  8. 0.06 2014-10-09
  9. Fixed issue with N/A disk temp not returning correctly and causing failure
  10. 0.05 2014-10-08
  11. Separated out data processing from the getter methods. Getter methods now only return hash data.
  12. 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.
  13. Updated MANIFEST to include LICENSE file
  14. Changes to satisfy perl critic
  15. Simplified get_disk_temp with substr to read the disk temp
  16. 0.04 2014-10-06
  17. Updated Makefile.PL to better interact with Meta::CPAN
  18. Updated pod for clarity
  19. 0.03 2014-10-04
  20. Added Math::Round to dependency list in Makefile.PL. Credit - Syohei YOSHIDA.
  21. Refactored methods to return N/A first before any further proessing is done
  22. Cleaned up unit tests
  23. get_disk_model() only outputs just the model information now.
  24. Added get_disk_errors()
  25. Methods now validate the device passed to it, to ensure smartctl has already read it
  26. Added unit tests to test passing invalid device to methods
  27. Changed to croak() as I didn't feel a trace was necessary with proper error returning
  28. 0.02 2014-10-03
  29. Added confess to new() in case smartctl cannot find the specified device
  30. 0.01 2014-10-03
  31. First version, released on an unsuspecting world.