semantic-release-plus / semantic-release

:package::rocket: Fully automated version management and package publishing
https://semantic-release-plus.gitbook.io
MIT License
48 stars 4 forks source link

chore(deps): update dependency ava to v3.9.0 #106

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
ava (source) devDependencies minor 3.8.2 -> 3.9.0

Release Notes

avajs/ava ### [`v3.9.0`](https://togithub.com/avajs/ava/releases/v3.9.0) [Compare Source](https://togithub.com/avajs/ava/compare/v3.8.2...v3.9.0) ##### New experiments! Thanks to [@​futpib](https://togithub.com/futpib) we now have an experimental `t.like()` assertion [`19c4f35`](https://togithub.com/avajs/ava/commit/19c4f35fbae740268dedeeb4d450f813f2d5e85e): In the following example, the `map` property of `value` must be deeply equal to that of `selector`. However `nested.qux` is ignored, because it's not in `selector`. ```js t.like({ map: new Map([['foo', 'bar']]), nested: { baz: 'thud', qux: 'quux' } }, { map: new Map([['foo', 'bar']]), nested: { baz: 'thud', } }) ``` Read more in the [`t.like()` assertion documentation](https://togithub.com/avajs/ava/blob/master/docs/03-assertions.md#likevalue-selector-message) and [let us know what you think](https://togithub.com/avajs/ava/issues/2518). [@​yjpa7145](https://togithub.com/yjpa7145) has contributed an experiment to reverse the order in which `t.teardown()` functions are run, so that the last registered function is called first [`952a017`](https://togithub.com/avajs/ava/commit/952a0177758c5601a72c2b050fc0308e7fa774c7). This will be the behavior in AVA 4. To enable both these experiments update your AVA configuration: **`package.json`**: ```json { "ava": { "nonSemVerExperiments": { "likeAssertion": true, "reverseTeardowns": true } } } ``` **`ava.config.js`**: ```js export default { nonSemVerExperiments: { likeAssertion: true, reverseTeardowns: true } } ``` ##### Reporter changes [@​Michael55555](https://togithub.com/Michael55555) has helped us combine our reporter code into a single file [`b3866b6`](https://togithub.com/avajs/ava/commit/b3866b6b06c98862a19f6cb27ec28b643e2f00c7). We've also made some other tweaks and improvements [`baaf99a`](https://togithub.com/avajs/ava/commit/baaf99a792eed586678a0cf88864f3f0aa16bd7a). Let us know if anything seems amiss. ##### Improved diffs [@​bunysae](https://togithub.com/bunysae) made it so that missing or extraneous objects in diffs are printed with extra depth [concordancejs/concordance#​62](https://togithub.com/concordancejs/concordance/pull/62). ##### Farewell Node.js 13 Node.js 13 has reached end-of-life. Per our [support statement](https://togithub.com/avajs/ava/blob/master/docs/support-statement.md) we have removed it from our test matrix and supported version list. ##### All changes See for all changes. Thank you [@​paulrobertlloyd](https://togithub.com/paulrobertlloyd) and [@​Autre31415](https://togithub.com/Autre31415) for contributing documentation improvements.

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Enabled.

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.

codecov[bot] commented 4 years ago

Codecov Report

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

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #106   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           26        26           
  Lines          836       836           
  Branches       218       218           
=========================================
  Hits           836       836           

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 80a431e...d281342. Read the comment docs.

JoA-MoS commented 4 years ago

:tada: This PR is included in version 18.0.3 :tada:

The release is available on:

Your semantic-release bot :package::rocket: