Changes 2.9 KB

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