From b39cef45f413de6de24bd668502d018c94324331 Mon Sep 17 00:00:00 2001 From: WhiteSource Renovate Date: Mon, 27 Apr 2020 19:56:23 +0200 Subject: [PATCH] chore(deps): update dependency tmp to ^0.2.0 (#386) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tmp](https://togithub.com/raszi/node-tmp) | devDependencies | minor | [`^0.1.0` -> `^0.2.0`](https://renovatebot.com/diffs/npm/tmp/0.1.0/0.2.0) | --- ### Release Notes
raszi/node-tmp ### [`v0.2.0`](https://togithub.com/raszi/node-tmp/blob/master/CHANGELOG.md#tmp-v020) [Compare Source](https://togithub.com/raszi/node-tmp/compare/v0.1.0...v0.2.0) - drop support for node version < v8.17.0 **_BREAKING CHANGE_** node versions < v8.17.0 are no longer supported. - [#​216](https://togithub.com/raszi/node-tmp/issues/216) **_BREAKING CHANGE_** SIGINT handler has been removed. Users must install their own SIGINT handler and call process.exit() so that tmp's process exit handler can do the cleanup. A simple handler would be process.on('SIGINT', process.exit); - [#​156](https://togithub.com/raszi/node-tmp/issues/156) **_BREAKING CHANGE_** template option no longer accepts arbitrary paths. all paths must be relative to os.tmpdir(). the template option can point to an absolute path that is located under os.tmpdir(). this can now be used in conjunction with the dir option. - [#​207](https://togithub.com/raszi/node-tmp/issues/TBD) **_BREAKING CHANGE_** dir option no longer accepts arbitrary paths. all paths must be relative to os.tmpdir(). the dir option can point to an absolute path that is located under os.tmpdir(). - [#​218](https://togithub.com/raszi/node-tmp/issues/TBD) **_BREAKING CHANGE_** name option no longer accepts arbitrary paths. name must no longer contain a path and will always be made relative to the current os.tmpdir() and the optional dir option. - [#​197](https://togithub.com/raszi/node-tmp/issues/197) **_BUG FIX_** sync cleanup callback must be returned when using the sync API functions. fs.rmdirSync() must not be called with a second parameter that is a function. - [#​176](https://togithub.com/raszi/node-tmp/issues/176) **_BUG FIX_** fail early if no os.tmpdir() was specified. previous versions of Electron did return undefined when calling os.tmpdir(). \_getTmpDir() now tries to resolve the path returned by os.tmpdir(). now using rimraf for removing directory trees. - [#​246](https://togithub.com/raszi/node-tmp/issues/246) **_BUG FIX_** os.tmpdir() might return a value that includes single or double quotes, similarly so the dir option, the template option and the name option - [#​240](https://togithub.com/raszi/node-tmp/issues/240) **_DOCUMENTATION_** better documentation for `tmp.setGracefulCleanup()`. - [#​206](https://togithub.com/raszi/node-tmp/issues/206) **_DOCUMENTATION_** document name option. - [#​236](https://togithub.com/raszi/node-tmp/issues/236) **_DOCUMENTATION_** document discardDescriptor option. - [#​237](https://togithub.com/raszi/node-tmp/issues/237) **_DOCUMENTATION_** document detachDescriptor option. - [#​238](https://togithub.com/raszi/node-tmp/issues/238) **_DOCUMENTATION_** document mode option. - [#​175](https://togithub.com/raszi/node-tmp/issues/175) **_DOCUMENTATION_** document unsafeCleanup option. ##### Miscellaneous - stabilized tests - general clean up - update jsdoc
--- ### Renovate configuration :date: **Schedule**: "after 9am and before 3pm" (UTC). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#googleapis/nodejs-dns). --- packages/google-cloud-dns/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/google-cloud-dns/package.json b/packages/google-cloud-dns/package.json index a1e6cc10407..db775b2df29 100644 --- a/packages/google-cloud-dns/package.json +++ b/packages/google-cloud-dns/package.json @@ -69,7 +69,7 @@ "linkinator": "^2.0.0", "mocha": "^7.1.1", "proxyquire": "^2.0.1", - "tmp": "^0.1.0", + "tmp": "^0.2.0", "typescript": "^3.8.3", "uuid": "^7.0.2" }