Changes 2.3 KB

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