Changes 3.5 KB

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