Skip to content

Latest commit

 

History

History
182 lines (130 loc) · 8.22 KB

CHANGELOG.md

File metadata and controls

182 lines (130 loc) · 8.22 KB

Changelog

Tags:

  • 💥 [Breaking Change]
  • 👓 [Spec Compliancy]
  • 🚀 [New Feature]
  • 🐛 [Bug Fix]
  • 📝 [Documentation]
  • 🏠 [Internal]
  • 💅 [Polish]

Note: Gaps between patch versions are faulty, broken or test releases.

See CHANGELOG - v4.

See CHANGELOG - v5.

See CHANGELOG - v6

See CHANGELOG - v7


v8.0.9 (2022-12-07)

🐛 Bug Fix

  • webdriverio
    • #9344 webdriverio: use v7 scrollIntoView implementation for mobile (@SCG82)

📝 Documentation

Committers: 2

v8.0.8 (2022-12-07)

🐛 Bug Fix

💅 Polish

  • wdio-types

🏠 Internal

  • wdio-cli, wdio-local-runner
  • Other
    • #9336 Modified globalSetup.ts to make reason and origin of throwBetterErrorMessage more clear (@RossVertizan)
  • wdio-cli
    • #9335 Modified wdio-cli -> utils.test.ts -> getProjectRoot to handle alternate names of clone directory (@RossVertizan)

Committers: 4

v8.0.7 (2022-12-06)

🐛 Bug Fix

Committers: 2

v8.0.6 (2022-12-05)

🐛 Bug Fix

  • wdio-browser-runner, wdio-local-runner, wdio-runner, wdio-sauce-service

🏠 Internal

  • wdio-types
    • #9297 @wdio/types: add tsconfigs to .npmignore (@SCG82)

Committers: 2

v8.0.5 (2022-12-05)

🐛 Bug Fix

  • wdio-cli, wdio-globals, wdio-runner

💅 Polish

Committers: 2

v8.0.4 (2022-12-02)

🏠 Internal

  • wdio-browser-runner, wdio-globals, wdio-jasmine-framework, wdio-runner
    • #9292 expect-webdriverio: update packages to use 4.0.1 (@SCG82)

Committers: 1

v8.0.3 (2022-12-02)

🐛 Bug Fix

💅 Polish

  • wdio-browser-runner, wdio-local-runner, wdio-runner

Committers: 1

v8.0.2 (2022-12-02)

🐛 Bug Fix

  • wdio-browserstack-service
    • #9282 @wdio/browserstack-service: update peer dependencies for v8 (@SCG82)

💅 Polish

  • wdio-utils, webdriver

Committers: 2

v8.0.0 (2022-12-01)

💥 Breaking Change

  • Drop Node.js v12, v13 and v14 Support
  • Transition code base from CommonJS to ESM
    • This should not affect WebdriverIO users as you can use the testrunner, as well as webdriver, devtools and webdriverio NPM packages in a CJS environment
    • We still mark this as breaking as we can't gurantee that all (untested) functionality will behave the same due to all rewrites done to the code base
  • Removal of @wdio/sync which we deprecated in v7
  • WebdriverIO types are now accessible through @wdio/globals/types instead of webdriverio/async
  • Removal of browser.config
    • Please use browser.options instead
    • This will stop support assigning custom properties to the wdio.conf.js which we disadvise you to do, instead either assign it as part of a custom capability, e.g. custom:options (note the : in it, read more on custom capabilities in the WebDriver spec) or via `@wdio/shared-store-service
  • discontinued support for tsconfig-paths

🚀 New Feature

  • New runner plugin called @wdio/browser-runner allows you to run unit and component tests in the browser
  • Access WebdriverIO primitives through the new @wdio/globals package
  • New Action API

🏠 Internal

  • Update required Node.js version for development to v18.12.1
  • Migrate unit tests from Jest to Vitest

💅 Polish

  • Improvements on configuration wizard and create-wdio
    • It now detects whether your projects uses ESM or CJS and creates example files accordingly
    • It now finds the project root and sets up the project relative to it
    • Adds support for browser runner selection

📝 Documentation

  • Little design tweaks to the hero section on the main page
  • Added new section for component testing
  • Added new API section for browser, element, mock objects, modules and environment variables