Changes 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Revision history for Perl module TestRail::API
  2. 0.021 2015-04-08 TEODESIAN
  3. - Fix issue where getChildRuns did not return anything past first run
  4. - Fix issue where getChildRunByName did not perform configuration filtering correctly
  5. - Add ability to filter by test status and assignedto id to getTests
  6. - Add bin/testrail-tests and bin/testrail-runs
  7. - Add statusNamesToIds and userNamesToIds convenience methods to TestRail::API
  8. - Add getRunSummary to TestRail::API
  9. - Minimum perl version now 5.14
  10. 0.020 2015-03-25 TEODESIAN
  11. - Add getRunsPaginated and getPlansPaginated to get around 250 hardlimit in TR results
  12. - Modify getRuns and getPlans to use the above to actually get all runs/plans
  13. - Fix various defective pod surrounding those methods
  14. - Fix minor incorrectness in testrail-report POD
  15. 0.019 2015-03-18 TEODESIAN
  16. - Add createRunInPlan method to TestRail::API
  17. - Add translateConfigNamesToIds method to TestRail::API
  18. - Modified getConfigurations, and added GetConfigurationGroups for clarity
  19. - Add ability to spawn runs to App::Prove::TestRail and testrail-report
  20. - Stricter checking that passed configurations passed exist in Test::Rail::Parser
  21. - Require minimum version of JSON::Maybe::XS to resolve smoker failures.
  22. 0.018 2015-01-29 TEODESIAN
  23. - Better finding of $HOME in testrail-report and the prove plugin for cross-platform usage
  24. - Track elapsed time of tests when run as prove plugin, and report this to testrail
  25. 0.017 2015-01-29 TEODESIAN
  26. - Explicitly import List::Util in TestRail::API, this causes issues on some perls
  27. - Require minimum version of Term::ANSIColor
  28. - Fix bad regex for finding filename in testrail_report
  29. 0.016 2015-01-26 TEODESIAN
  30. - Use correct perl when invoking scripts to fix cpantesters failures.
  31. - Use parent instead of base, this confuses older perls
  32. 0.015 2015-01-25 TEODESIAN
  33. - Remove all usage of IO::Capture for more concise verbose test output. Makes cpantesters/travis wig out?
  34. 0.014 2015-01-23 TEODESIAN
  35. - Fixed issue where testrail-report would not parse the results of multiple tests in a TAP file or stream.
  36. - Fixed issue where testrail-report would erroneously attempt to report the results of subtests.
  37. - Parse TODO/SKIP messages correctly, add todo reason to the test notes
  38. - Set SKIP_ALL tests status correctly
  39. - Add TestRail::API::getConfigurations method
  40. - Add TestRail::API::getChildRuns and getChildRunByName methods to extract runs from plans when passed names
  41. - Add ability to pass version to testrail-report & App::Prove::Plugin::TestRail
  42. 0.013 2015-01-04 TEODESIAN
  43. - Remove usage of Types::Serialiser, and use JSON::MaybeXS (odd intermittent errors on testers)
  44. - Remove checking of user being in getUsers, this won't work with external (LDAP) auth
  45. 0.012 2014-12-30 TEODESIAN
  46. - DZIL tidying
  47. - Re-enabled some of the critic tests, fixed a few related issues
  48. - Improve safety of constructor, try to die with helpful messages as soon as possible
  49. - Add class usage checks and test for that as author tests
  50. - Add tests for the server going away, and fix issues encountered therein.
  51. - Add fatal type checking of inputs for all methods, add test to make sure exceptions thrown correctly
  52. - Add offset argument to getTestResults call.
  53. - Add (auto-generated) mock class so we don't have to skip practically all of TestRail-API.t
  54. - Add getTestResultFieldByName method and relevant tests
  55. - Add Test::Rail::Parser and App::Prove::Plugin::TestRail so you can upload results
  56. - Add testrail-report binary for those who want to run on static TAP rather than 'do it live' with prove -P
  57. 0.011 2014-12-04 TEODESIAN
  58. - Converted to using dzil, and testing using TestingMania
  59. - Fixed spelling errors thanks to more extensive testing so enabled
  60. - Started signing the module
  61. 0.010 2014-12-03 TEODESIAN
  62. - Dist name was being set to TestRail::API instead of TestRail-API
  63. - Reformatted this file as per CPAN::Changes::Spec
  64. - Added "use 5.010" to the module, to match min perl in metadata
  65. - Made URL in SEE ALSO a hyperlink with L<...>
  66. - Added link to github repo in pod
  67. 0.009 2014-11-28 TEODESIAN
  68. - Oops, forgot my Test deps
  69. 0.008 2014-11-28 TEODESIAN
  70. - Explicitly include Types::Serialiser, correct some POD issues
  71. 0.007 2014-08-17 TEODESIAN
  72. - 0.002 to this release: More or less the pursuit of Kwalitee
  73. 0.001 2014-07-25 TEODESIAN
  74. - First release to CPAN