Skip to content
This repository has been archived by the owner on Jun 18, 2021. It is now read-only.

Bump awaitility from 3.1.3 to 3.1.5 #88

Merged
merged 2 commits into from Dec 11, 2018

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps awaitility from 3.1.3 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") }

Changelog 3.1.4 (2018-12-05)

  • Added "untilNotNull" extension function to the Kotlin DSL: val data = await untilNotNull { 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
  • c13a9d7 [maven-release-plugin] prepare release awaitility-3.1.4
  • b08a1e6 Added "untilNotNull" extension function to Kotlin DSL
  • 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 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.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Dec 7, 2018
@codecov
Copy link

codecov bot commented Dec 7, 2018

Codecov Report

Merging #88 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##             master      #88   +/-   ##
=========================================
  Coverage     92.23%   92.23%           
  Complexity      479      479           
=========================================
  Files            77       77           
  Lines          1378     1378           
  Branches         84       84           
=========================================
  Hits           1271     1271           
  Misses           31       31           
  Partials         76       76

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e3f6862...f85b1b7. Read the comment docs.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 350

  • 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 97.871%

Totals Coverage Status
Change from base Build 340: 0.0%
Covered Lines: 1425
Relevant Lines: 1456

💛 - Coveralls

@marcust marcust merged commit f066d22 into master Dec 11, 2018
@marcust marcust deleted the dependabot/maven/org.awaitility-awaitility-3.1.5 branch December 11, 2018 05:38
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
3 participants