Changes 4.9 KB

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