Changes 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. Revision history for Playwright
  2. 1.251 2022-08-21 TEODESIAN
  3. - Fix some undef value warnings in odd situations when using the --port option.
  4. 1.250 2022-08-14 TEODESIAN
  5. - Update for playwright v1.25
  6. - Added ability to pass --port to spawn OR use existing pw server on provided port.
  7. 1.210 2022-05-11 TEODESIAN
  8. - Update for playwright v1.21
  9. - Changed versioning to match the version of playwright it's tested against
  10. 0.019 2022-02-22 TEODESIAN
  11. - Update for playwright v1.19
  12. 0.018 2022-01-20 TEODESIAN
  13. - Update for playwright v1.18
  14. 0.017 2021-10-10 TEODESIAN
  15. - Adjust to handle _request() becoming request()
  16. - Document perl equivalents for playwright-test
  17. 0.016 2021-09-16 TEODESIAN
  18. - Prevent deep recursion due to playwright using the _request name for methods too
  19. - Actually support getting FetchRequest objects via the _request() method
  20. 0.015 2021-09-13 TEODESIAN
  21. - Add a note on proper usage of Download classes to the POD.
  22. 0.014 2021-09-09 TEODESIAN
  23. - Add cleanup option to Playwright::new, and bin/reap_playwright_servers to assist in cleanup when doing manual investigations.
  24. - Fix issue with reference to eval() rather than evaluate()
  25. - Launch via browserServerLaunch so we can interrogate playwright for the browser PID
  26. 0.013 2021-08-31 TEODESIAN
  27. - Statically generate playwright subclasses so that callers can easily wrap them with MOPs.
  28. - allow evaluate() to be called on ElementHandles
  29. 0.012 2021-08-03 TEODESIAN
  30. - Automatically translate element handles passed as args objects to the playwright process.
  31. 0.011 2021-07-27 TEODESIAN
  32. - Make no attempts whatsoever to install node deps for users, instead giving them advice how to self-service fix their problems.
  33. 0.010 2021-07-27 TEODESIAN
  34. - Fix issue with yargs fix breaking invocation in Playwright.pm
  35. - Fix issue with child selectors being broken
  36. - Add ability to specify library path
  37. 0.009 2021-07-26 TEODESIAN
  38. - Remove dependency on yargs in bin/playwright_server
  39. 0.008 2021-07-16 TEODESIAN
  40. - Add parent attribute to grab element parents when needed
  41. - Remove dependency on AsyncData in favor of File::Temp, Sereal and fork().
  42. - Prevent destructors for other objects firing in forks used to do asynchronous operations.
  43. 0.007 2021-06-17 TEODESIAN
  44. - Adjust module for changing Download returns, and api.json no longer being shipped with Playwright
  45. - Fix some warnings when installing for the first time.
  46. 0.006 2021-04-12 TEODESIAN
  47. - Prevent $? from bubbling up in our destructor and invalidating program exit code by localizing $? in quit()
  48. - Add a link to the Playwright slack in the documentation.
  49. 0.005 2021-03-24 TEODESIAN
  50. [BUG FIXES]
  51. - Prevent double destroy in the event of quit() being called
  52. - Make the destroy() process a good deal more reliable
  53. - Add a timeout parameter to new() to control how long to wait for the server to spin up/down
  54. - Improve documentation
  55. - Adjust auto-install process to work better on windows, and not leak stderr in some contexts.
  56. 0.004 2021-03-19 TEODESIAN
  57. [BUG FIXES]
  58. - Adjust spec parser for newer Playwright spec versions
  59. 0.003 2021-03-16 TEODESIAN
  60. [BUG FIXES]
  61. - Fix broken testsuite
  62. 0.002 2021-02-10 TEODESIAN
  63. [BUG FIXES]
  64. - Declare perl 5.28 to be minimum version
  65. 0.001 2020-11-02 TEODESIAN
  66. - First release to CPAN