Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): Bump detox from 16.8.2 to 17.3.6 #702

Closed

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps detox from 16.8.2 to 17.3.6.

Release notes

Sourced from detox's releases.

17.3.5

  • Fixed an issue where it was not possible to tap on alert view buttons on iOS when selecting by.text().
  • Typing/clearing/replacing text no longer requires the element be hittable before attempting the action on iOS.

17.3.4

  • feat(jest): support artifact collection with jest.retryTimes(n) (#2242, by @noomorph)

17.3.3

Officially supporting RN 0.63.

17.3.2

Android:

  • Enable parallel test-execution over attached (e.g. physical, Genymotion-cloud) devices (i.e. not just emulators), by upgrading the device name configuration to a RegExp (#2169) @DmytroKost
  • Allow for native-level configuration of the wait-time for RN loading via Detox.runTests() (#2231)

17.3.1

Fixed a crash when internal Detox math would produce nan, which cannot be serialized as JSON.

17.3.0

New Major Feature: Element Screenshot (Android-only!) (#2012)

On top of Detox' existing device.takeScreenshot() API, we now support taking a visual screenshot of specific on-screen elements. Refer to our documentation for full details.

Note: As a side-effect (see #2214), we introduced a subtle breaking change in all drivers, which affects external plug-in drivers you may have had implemented for your project. The fix is simple, and should be applied according to the following diff-snippet:

class Expect {
-  constructor(invocationManager) {
+  constructor({ invocationManager }) {
     this._invocationManager = invocationManager;
  }
}
class PluginDriver {
constructor() {

this.matchers = new Expect(new invocationManager());
}
}

-module.exports = PluginDriver;
+module.exports = {

DriverClass: PluginDriver,
ExpectClass: Expect,
+}

Namely, Detox now owns the instantiation of the Expect class, instead of the plugin.

More

  • Added support for --inspect-brk flag to Detox' cli which, when provided, would launch Detox' underlying test-runner (e.g. Jest, Mocha) in a wait-for-debugger mode (more precisely, it would launch the node.js instance in inspect mode) (#2177)
Commits
  • 5121576 Publish 17.3.6 [ci skip]
  • eec1551 Dummy commit
  • 8534342 docs: update capitalization on field names to current (#2266)
  • 1e05de7 Publish 17.3.5 [ci skip]
  • 9a6f2ea Update style [skip-ci]
  • c85617e Fix missing link [skip-ci]
  • 4af3577 Merge pull request #2265 from wix/UIAlertControllerFix
  • 04b3200 Remove table from README, modify style
  • 81df7a0 Remove hittable requirement from typing/clearing/replacing text
  • 56fad74 Merge branch 'master' into UIAlertControllerFix
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [detox](https://github.com/wix/Detox) from 16.8.2 to 17.3.6.
- [Release notes](https://github.com/wix/Detox/releases)
- [Commits](wix/Detox@16.8.2...17.3.6)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 15, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #709.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/detox-17.3.6 branch August 24, 2020 00:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants