Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps awaitility from 3.1.4 to 3.1.5.

Changelog

Sourced from awaitility's changelog.

Changelog 3.1.5 (2018-12-06)

  • Added a new Kotlin extension function called "has" that allows writing succinct expressions when testing for properties in e.g. data classes. For example:

    val data = await untilCallTo { fakeObjectRepository.data } has {
    state == "Hello"
    }

    where "data" is defined as:

    data class Data(var state: String)

    I.e. inside the scope of "has" the "Data" instance is used as "this" (see here for more info).
    This is the same as doing:

    await untilCallTo { fakeObjectRepository.data } matches { data ->
    data?.state == "Hello"
    }

  • Improved error message for "untilNotNull" Kotlin extension function

  • Added "untilNull" extension function to the Kotlin DSL: await untilNull { myDataRepository.findById("id") }

Commits
  • 6388c02 [maven-release-plugin] prepare release awaitility-3.1.5
  • 25f08ef Updating changelog with release date of 3.1.5
  • 13dc10b Added "untilNull" extension function to the Kotlin DSL
  • 4c050e1 Reverted sleep in this to its initial value of 600 ms
  • 86d4f88 Added a new Kotlin extension function called "has" that allows writing succin...
  • 269ea7c Update README.md
  • 4c88f23 Update README.md
  • 21aa78f [maven-release-plugin] prepare for next development iteration
  • See full diff 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 cancel merge will cancel a previously requested merge
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@salesforce-cla
Copy link

salesforce-cla bot commented Dec 7, 2018

Thanks for the contribution! Before we can merge this, we need @dependabot-bot to sign the Salesforce.com Contributor License Agreement.

@msgroi msgroi merged commit eee7afe into master Dec 7, 2018
@msgroi msgroi deleted the dependabot/maven/org.awaitility-awaitility-3.1.5 branch December 7, 2018 15:32
@coveralls
Copy link

Pull Request Test Coverage Report for Build 1153

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 88.081%

Totals Coverage Status
Change from base Build 1148: 0.0%
Covered Lines: 2143
Relevant Lines: 2433

💛 - Coveralls

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants