Closed renovate[bot] closed 4 years ago
Code Climate has analyzed commit e92349e0 and detected 0 issues on this pull request.
View more on Code Climate.
:construction_worker: This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems. If you wish to abandon your changes and have Renovate start over you may click the "rebase" checkbox in the PR body/description.
This PR contains the following updates:
2.3.0
->2.4.0
3.0.3
->3.2.1
11.3.3
->11.7.0
8.3.0
->8.5.4
Release Notes
avajs/ava
### [`v2.4.0`](https://togithub.com/avajs/ava/releases/v2.4.0) [Compare Source](https://togithub.com/avajs/ava/compare/v2.3.0...v2.4.0) #### Experimental `t.try()` assertions Thanks to the amazing work and patience of [@qlonik](https://togithub.com/qlonik) we're shipping a new assertion! `t.try()` lets you perform assertions and decide whether to commit or discard their outcome. All kinds of interesting things can be built on top of this, from fuzzy testers to new test interfaces and more. We're excited to get this out there, but it's not quite done yet. For now you have to [_opt in_](https://togithub.com/avajs/ava/blob/master/docs/06-configuration.md#experiments) to this new feature. Being opt-in, we may make changes (breaking ones even!) until we feel this is stable. To opt in, configure AVA with the following: `package.json`: ```json { "ava": { "nonSemVerExperiments": { "tryAssertion": true } } } ``` `ava.config.js`: ```js export default { nonSemVerExperiments: { tryAssertion: true } }; ``` We'd love to hear your feedback. Please join us in this issue: [#2250](https://togithub.com/avajs/ava/issues/2250) Also, if you're looking to help out with the remaining issues so that we can ship this _without_ the opt-in, have a look at this project:janl/mustache.js
### [`v3.2.1`](https://togithub.com/janl/mustache.js/blob/master/CHANGELOG.md#321--30-December-2019) [Compare Source](https://togithub.com/janl/mustache.js/compare/v3.2.0...v3.2.1) ##### Fixed - [#733]: Allow the CLI to use JavaScript views when the project has ES6 modules enabled, by [@eobrain]. ### [`v3.2.0`](https://togithub.com/janl/mustache.js/blob/master/CHANGELOG.md#320--18-December-2019) [Compare Source](https://togithub.com/janl/mustache.js/compare/v3.1.0...v3.2.0) ##### Added - [#728]: Expose ECMAScript Module in addition to UMD (CommonJS, AMD & global scope), by [@phillipj] and [@zekth]. ##### Using mustache.js as an ES module To stay backwards compatible with already using projects, the default exposed module format is still UMD. That means projects using mustache.js as an CommonJS, AMD or global scope module, from npm or directly from github.com can keep on doing that for now. For those projects who would rather want to use mustache.js as an ES module, the `mustache/mustache.mjs` file has to be `import`ed directly. Below are some usage scenarios for different runtimes. ##### Modern browser with ES module support ```html ``` ##### [Node.js](https://nodejs.org) (>= v13.2.0 or using --experimental-modules flag) ```js // index.mjs import mustache from 'mustache/mustache.mjs' console.log(mustache.render('Hello {{name}}!', { name: 'Santa' })) // Hello Santa! ``` ES Module support for Node.js will be improved in the future when [Conditional Exports](https://nodejs.org/api/esm.html#esm_conditional_exports) is enabled by default rather than being behind an experimental flag. More info in [Node.js ECMAScript Modules docs](https://nodejs.org/api/esm.html). ##### [Deno](https://deno.land/) ```js // index.ts import mustache from 'https://unpkg.com/mustache@3.2.0/mustache.mjs' console.log(mustache.render('Hello {{name}}!', { name: 'Santa' })) // Hello Santa! ``` ### [`v3.1.0`](https://togithub.com/janl/mustache.js/blob/master/CHANGELOG.md#310--13-September-2019) [Compare Source](https://togithub.com/janl/mustache.js/compare/v3.0.3...v3.1.0) ##### Added - [#717]: Added support .js files as views in command line tool, by [@JEStaubach]. ##### Fixed - [#716]: Bugfix for indentation of inline partials, by [@yotammadem].nock/nock
### [`v11.7.0`](https://togithub.com/nock/nock/releases/v11.7.0) [Compare Source](https://togithub.com/nock/nock/compare/v11.6.0...v11.7.0) ##### Features - **types:** add type for Nock Back `currentMode` ([#1794](https://togithub.com/nock/nock/issues/1794)) ([ba60fd2](https://togithub.com/nock/nock/commit/ba60fd2)), closes [/github.com/nock/nock/blob/master/lib/back.js#L282](https://togithub.com//github.com/nock/nock/blob/master/lib/back.js/issues/L282) ### [`v11.6.0`](https://togithub.com/nock/nock/releases/v11.6.0) [Compare Source](https://togithub.com/nock/nock/compare/v11.5.0...v11.6.0) ##### Features - Add lifecycle function to clear pending timeouts ([#1748](https://togithub.com/nock/nock/issues/1748)) ([187db85](https://togithub.com/nock/nock/commit/187db85)), closes [#1118](https://togithub.com/nock/nock/issues/1118) ### [`v11.5.0`](https://togithub.com/nock/nock/releases/v11.5.0) [Compare Source](https://togithub.com/nock/nock/compare/v11.4.0...v11.5.0) ##### Features - Throw errors for URL paths without leading slashes, which will never match ([#1744](https://togithub.com/nock/nock/issues/1744)) ([b7f9f13](https://togithub.com/nock/nock/commit/b7f9f13)), closes [#1730](https://togithub.com/nock/nock/issues/1730) ### [`v11.4.0`](https://togithub.com/nock/nock/releases/v11.4.0) [Compare Source](https://togithub.com/nock/nock/compare/v11.3.6...v11.4.0) ##### Features - improve error output by showing which URL caused the error ([#1735](https://togithub.com/nock/nock/issues/1735)) ([#1740](https://togithub.com/nock/nock/issues/1740)) ([f4a208b](https://togithub.com/nock/nock/commit/f4a208b)) ### [`v11.3.6`](https://togithub.com/nock/nock/releases/v11.3.6) [Compare Source](https://togithub.com/nock/nock/compare/v11.3.5...v11.3.6) ##### Bug Fixes - Fix error message ([#1736](https://togithub.com/nock/nock/issues/1736)) ([3f18d70](https://togithub.com/nock/nock/commit/3f18d70)) ### [`v11.3.5`](https://togithub.com/nock/nock/releases/v11.3.5) [Compare Source](https://togithub.com/nock/nock/compare/v11.3.4...v11.3.5) ##### Bug Fixes - **types:** data matcher for body and query. ([#1725](https://togithub.com/nock/nock/issues/1725)) ([59b345c](https://togithub.com/nock/nock/commit/59b345c)), closes [#1724](https://togithub.com/nock/nock/issues/1724) [#1723](https://togithub.com/nock/nock/issues/1723) [/github.com/Microsoft/TypeScript/issues/1897#issuecomment-338650717](https://togithub.com//github.com/Microsoft/TypeScript/issues/1897/issues/issuecomment-338650717) [#1723](https://togithub.com/nock/nock/issues/1723) [#1724](https://togithub.com/nock/nock/issues/1724) ### [`v11.3.4`](https://togithub.com/nock/nock/releases/v11.3.4) [Compare Source](https://togithub.com/nock/nock/compare/v11.3.3...v11.3.4) ##### Bug Fixes - Fix crash when matching certain objects ([#1714](https://togithub.com/nock/nock/issues/1714)) ([fa0a08a](https://togithub.com/nock/nock/commit/fa0a08a)), closes [#1713](https://togithub.com/nock/nock/issues/1713)TypeStrong/ts-node
### [`v8.5.4`](https://togithub.com/TypeStrong/ts-node/releases/v8.5.4) [Compare Source](https://togithub.com/TypeStrong/ts-node/compare/v8.5.3...v8.5.4) - Fix relative `node_modules` ignore [`266eaa5`](https://togithub.com/TypeStrong/ts-node/commit/266eaa5) ### [`v8.5.3`](https://togithub.com/TypeStrong/ts-node/releases/v8.5.3) [Compare Source](https://togithub.com/TypeStrong/ts-node/compare/v8.5.2...v8.5.3) **Fixed** - Pass correct diagnostics list in transpile mode ([#917](https://togithub.com/TypeStrong/ts-node/issues/917)) [`907e3e1`](https://togithub.com/TypeStrong/ts-node/commit/907e3e1) - Make `--ignore` relative [`ea6e1da`](https://togithub.com/TypeStrong/ts-node/commit/ea6e1da) ### [`v8.5.2`](https://togithub.com/TypeStrong/ts-node/releases/v8.5.2) [Compare Source](https://togithub.com/TypeStrong/ts-node/compare/v8.5.0...v8.5.2) **Fixed** - Revert `--require` module loading change ### [`v8.5.0`](https://togithub.com/TypeStrong/ts-node/releases/v8.5.0) [Compare Source](https://togithub.com/TypeStrong/ts-node/compare/v8.4.1...v8.5.0) **Added** - Expose `ts-script` for relative `tsconfig.json` files from `Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "
rebase!
".:ghost: Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
Newsflash: Renovate has joined WhiteSource, and is now free for all use. Learn more or view updated terms and privacy policies.