mmkal / handy-redis

A wrapper around node_redis with Promise and TypeScript support.
Apache License 2.0
172 stars 10 forks source link

chore(deps): update devdependencies #313

Closed renovate[bot] closed 3 years ago

renovate[bot] commented 3 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/eslint 7.2.13 -> 7.28.0 age adoption passing confidence
@types/glob 7.1.3 -> 7.1.4 age adoption passing confidence
@types/jest 26.0.23 -> 26.0.24 age adoption passing confidence
@types/lodash 4.14.170 -> 4.14.171 age adoption passing confidence
@types/node 14.17.4 -> 14.17.5 age adoption passing confidence
@typescript-eslint/eslint-plugin 4.28.1 -> 4.28.3 age adoption passing confidence
@typescript-eslint/parser 4.28.1 -> 4.28.3 age adoption passing confidence
check-clean 0.3.0 -> 0.3.1 age adoption passing confidence
eslint-config-xo-typescript 0.42.0 -> 0.43.0 age adoption passing confidence
eslint-plugin-codegen 0.15.0 -> 0.16.0 age adoption passing confidence
expect-type 0.11.0 -> 0.12.0 age adoption passing confidence
ts-node (source) 10.0.0 -> 10.1.0 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint ### [`v4.28.3`](https://togithub.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md#​4283-httpsgithubcomtypescript-eslinttypescript-eslintcomparev4282v4283-2021-07-12) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v4.28.2...v4.28.3) **Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser) ### [`v4.28.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md#​4282-httpsgithubcomtypescript-eslinttypescript-eslintcomparev4281v4282-2021-07-05) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v4.28.1...v4.28.2) **Note:** Version bump only for package [@​typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)
mmkal/ts ### [`v0.3.1`](https://togithub.com/mmkal/ts/releases/fs-syncer_v0.3.1) #### dependency changes - Updating dependency "expect-type" from `0.9.0` to `0.9.1`
xojs/eslint-config-xo-typescript ### [`v0.43.0`](https://togithub.com/xojs/eslint-config-xo-typescript/releases/v0.43.0) [Compare Source](https://togithub.com/xojs/eslint-config-xo-typescript/compare/v0.42.0...v0.43.0) - Require TypeScript 4.3 or later [`167265d`](https://togithub.com/xojs/eslint-config-xo-typescript/commit/167265d) - Add `typescript` as a dependency [`2e16d51`](https://togithub.com/xojs/eslint-config-xo-typescript/commit/2e16d51)
TypeStrong/ts-node ### [`v10.1.0`](https://togithub.com/TypeStrong/ts-node/releases/v10.1.0) [Compare Source](https://togithub.com/TypeStrong/ts-node/compare/v10.0.0...v10.1.0) Questions about this release? Ask in the official discussion thread: [#​1390](https://togithub.com/TypeStrong/ts-node/issues/1390) **Added** - Add `"moduleType"` option to override module type -- CommonJS or ECMAScript -- on select files. ([docs](https://typestrong.org/ts-node/docs/module-type-overrides)) ([#​1342](https://togithub.com/TypeStrong/ts-node/issues/1342), [#​1371](https://togithub.com/TypeStrong/ts-node/issues/1371), [#​1376](https://togithub.com/TypeStrong/ts-node/issues/1376)) - Useful when a configuration file, for example `webpack.config.ts`, must execute as CommonJS but the rest of the project is ESM - selectively overrides `package.json` `"type"` and `tsconfig.json` `"module"` - akin to `.cjs` and `.mjs` extensions, but for `.ts` and `.tsx` files - thanks to [@​jayaddison](https://togithub.com/jayaddison) for help on test coverage - Implement `"extends"` support for `"ts-node"` options in `tsconfig.json` ([#​1328](https://togithub.com/TypeStrong/ts-node/issues/1328), [#​1356](https://togithub.com/TypeStrong/ts-node/issues/1356)) - `"ts-node": {}` options will be parsed from extended tsconfigs - allows sharing and deduplicating ts-node configuration - Un-deprecate `scope` and `scopeDir`; add both to CLI and `tsconfig.json` options; un-deprecate `TS_NODE_SCOPE` env var; add `TS_NODE_SCOPE_DIR` env var ([docs](https://typestrong.org/ts-node/docs/options)) ([#​1346](https://togithub.com/TypeStrong/ts-node/issues/1346), [#​1367](https://togithub.com/TypeStrong/ts-node/issues/1367)) **Changed** - Improve error messages thrown by native ESM loader hooks ([#​1357](https://togithub.com/TypeStrong/ts-node/issues/1357), [#​1373](https://togithub.com/TypeStrong/ts-node/issues/1373)) [@​tars0x9752](https://togithub.com/tars0x9752) - messages more closely match node; are more descriptive - Emit `"ts-node"` object at the top of `--showConfig` output instead of the bottom ([#​1355](https://togithub.com/TypeStrong/ts-node/issues/1355)) **Fixed** - Fix [#​1282](https://togithub.com/TypeStrong/ts-node/issues/1282): Set correct globals in `[stdin]`, `[eval]`, and `` contexts ([#​1333](https://togithub.com/TypeStrong/ts-node/issues/1333)) - More closely align ts-node's behavior with vanilla node - Affects the interactive REPL, piping to stdin, and `ts-node -e` - Matches node's behavior for globals `__filename`, `__dirname`, `module` and sub-fields of `module`, `exports`, and builtin module aliases `fs`, etc - Fix [#​1343](https://togithub.com/TypeStrong/ts-node/issues/1343): Set swc option `keepClassNames` to `true` ([#​1344](https://togithub.com/TypeStrong/ts-node/issues/1344)) - Fix: [#​1387](https://togithub.com/TypeStrong/ts-node/issues/1387): REPL outputs 'use strict' after first empty line of input ([#​1388](https://togithub.com/TypeStrong/ts-node/issues/1388)) [@​ejose19](https://togithub.com/ejose19) **Docs** - Update ESM docs to say that env vars *are* supported with `node --loader ts-node/esm` ([docs](https://togithub.com/TypeStrong/ts-node/issues/1007)) ([#​1379](https://togithub.com/TypeStrong/ts-node/issues/1379)) https://github.com/TypeStrong/ts-node/milestone/3

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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

codecov-commenter commented 3 years ago

Codecov Report

Merging #313 (68d1ac8) into master (7e96c45) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #313   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           12        12           
  Lines          484       484           
  Branches       105       105           
=========================================
  Hits           484       484           

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 7e96c45...68d1ac8. Read the comment docs.