Changes 1.7 KB

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