stipsan / ioredis-mock

Emulates ioredis by performing all operations in-memory.
MIT License
336 stars 124 forks source link

chore(deps): update non-major - abandoned #1293

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@babel/cli (source) 7.22.6 -> 7.22.9 age adoption passing confidence devDependencies patch
@babel/core (source) 7.22.8 -> 7.22.9 age adoption passing confidence devDependencies patch
@babel/eslint-parser (source) 7.22.7 -> 7.22.9 age adoption passing confidence devDependencies patch
@babel/preset-env (source) 7.22.7 -> 7.22.9 age adoption passing confidence devDependencies patch
@sanity/semantic-release-preset (source) 4.1.1 -> 4.1.2 age adoption passing confidence devDependencies patch
esbuild 0.18.11 -> 0.18.12 age adoption passing confidence devDependencies patch
eslint (source) 8.44.0 -> 8.45.0 age adoption passing confidence devDependencies minor
eslint-plugin-jest 27.2.2 -> 27.2.3 age adoption passing confidence devDependencies patch
prettier-plugin-packagejson 2.4.4 -> 2.4.5 age adoption passing confidence devDependencies patch
redis 7.0.11 -> 7.0.12 age adoption passing confidence service patch
semver 7.5.3 -> 7.5.4 age adoption passing confidence dependencies patch

Release Notes

babel/babel (@​babel/cli) ### [`v7.22.9`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v7229-2023-07-12) [Compare Source](https://togithub.com/babel/babel/compare/v7.22.6...v7.22.9) ##### :bug: Bug Fix - `babel-plugin-transform-typescript` - [#​15774](https://togithub.com/babel/babel/pull/15774) fix: `Infinity` in enums ([@​liuxingbaoyu](https://togithub.com/liuxingbaoyu)) ##### :nail_care: Polish - `babel-generator` - [#​15757](https://togithub.com/babel/babel/pull/15757) `recordAndTupleSyntaxType` defaults to `"hash"` ([@​coderaiser](https://togithub.com/coderaiser)) ##### :house: Internal - [#​15748](https://togithub.com/babel/babel/pull/15748) Migrate to `eslint.config.js` ([@​JLHwung](https://togithub.com/JLHwung)) - [#​15758](https://togithub.com/babel/babel/pull/15758) Use Prettier 3 stable ([@​nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
sanity-io/semantic-release-preset (@​sanity/semantic-release-preset) ### [`v4.1.2`](https://togithub.com/sanity-io/semantic-release-preset/blob/HEAD/CHANGELOG.md#412-2023-07-13) [Compare Source](https://togithub.com/sanity-io/semantic-release-preset/compare/v4.1.1...v4.1.2) ##### Bug Fixes - **deps:** update dependency conventional-changelog-conventionalcommits to v6 ([#​90](https://togithub.com/sanity-io/semantic-release-preset/issues/90)) ([0d58fdb](https://togithub.com/sanity-io/semantic-release-preset/commit/0d58fdb55745f83e6405c427376b688434d29b43)) - **deps:** update non-major ([#​92](https://togithub.com/sanity-io/semantic-release-preset/issues/92)) ([3397e42](https://togithub.com/sanity-io/semantic-release-preset/commit/3397e426d3a3ddec0d3d1029e89b1870c2f74ff3))
evanw/esbuild (esbuild) ### [`v0.18.12`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01812) [Compare Source](https://togithub.com/evanw/esbuild/compare/v0.18.11...v0.18.12) - Fix a panic with `const enum` inside parentheses ([#​3205](https://togithub.com/evanw/esbuild/issues/3205)) This release fixes an edge case where esbuild could potentially panic if a TypeScript `const enum` statement was used inside of a parenthesized expression and was followed by certain other scope-related statements. Here's a minimal example that triggers this edge case: ```ts (() => { const enum E { a }; () => E.a }) ``` - Allow a newline in the middle of TypeScript `export type` statement ([#​3225](https://togithub.com/evanw/esbuild/issues/3225)) Previously esbuild incorrectly rejected the following valid TypeScript code: ```ts export type { T }; export type * as foo from 'bar'; ``` Code that uses a newline after `export type` is now allowed starting with this release. - Fix cross-module inlining of string enums ([#​3210](https://togithub.com/evanw/esbuild/issues/3210)) A refactoring typo in version 0.18.9 accidentally introduced a regression with cross-module inlining of string enums when combined with computed property accesses. This regression has been fixed. - Rewrite `.js` to `.ts` inside packages with `exports` ([#​3201](https://togithub.com/evanw/esbuild/issues/3201)) Packages with the `exports` field are supposed to disable node's path resolution behavior that allows you to import a file with a different extension than the one in the source code (for example, importing `foo/bar` to get `foo/bar.js`). And TypeScript has behavior where you can import a non-existent `.js` file and you will get the `.ts` file instead. Previously the presence of the `exports` field caused esbuild to disable all extension manipulation stuff which included both node's implicit file extension searching and TypeScript's file extension swapping. However, TypeScript appears to always apply file extension swapping even in this case. So with this release, esbuild will now rewrite `.js` to `.ts` even inside packages with `exports`. - Fix a redirect edge case in esbuild's development server ([#​3208](https://togithub.com/evanw/esbuild/issues/3208)) The development server canonicalizes directory URLs by adding a trailing slash. For example, visiting `/about` redirects to `/about/` if `/about/index.html` would be served. However, if the requested path begins with two slashes, then the redirect incorrectly turned into a protocol-relative URL. For example, visiting `//about` redirected to `//about/` which the browser turns into `http://about/`. This release fixes the bug by canonicalizing the URL path when doing this redirect.
eslint/eslint (eslint) ### [`v8.45.0`](https://togithub.com/eslint/eslint/releases/tag/v8.45.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.44.0...v8.45.0) #### Features - [`cdd063c`](https://togithub.com/eslint/eslint/commit/cdd063c388bbfe1781d7a864a832f03a2c1cc277) feat: Expose LegacyESLint in unsupported API ([#​17341](https://togithub.com/eslint/eslint/issues/17341)) (Nicholas C. Zakas) - [`d34abe5`](https://togithub.com/eslint/eslint/commit/d34abe59eb23932dcbc79757d7932d08ee8b20e5) feat: fix indent rule for else-if ([#​17318](https://togithub.com/eslint/eslint/issues/17318)) (Milos Djermanovic) #### Bug Fixes - [`b79b6fb`](https://togithub.com/eslint/eslint/commit/b79b6fb64473969b426d086b484d2e29594a5e9a) fix: Fix suggestion message in `no-useless-escape` ([#​17339](https://togithub.com/eslint/eslint/issues/17339)) (Francesco Trotta) - [`c667055`](https://togithub.com/eslint/eslint/commit/c667055fb9da8ebac3a99f6e5a8b5565cc86af8e) fix: provide unique `fix` and `fix.range` objects in lint messages ([#​17332](https://togithub.com/eslint/eslint/issues/17332)) (Milos Djermanovic) #### Documentation - [`89f3225`](https://togithub.com/eslint/eslint/commit/89f3225108c66425e4132f76db6c1ab13aac98d7) docs: add playground links to correct and incorrect code blocks ([#​17306](https://togithub.com/eslint/eslint/issues/17306)) (Josh Goldberg ✨) - [`f8892b5`](https://togithub.com/eslint/eslint/commit/f8892b52920b8967f9e7bec23c75b74e03977d6b) docs: Expand rule option schema docs ([#​17198](https://togithub.com/eslint/eslint/issues/17198)) (Matt Wilkinson) - [`8bcbf11`](https://togithub.com/eslint/eslint/commit/8bcbf11b6050418262ffa8e0ca37f365ae92e7ce) docs: Config Migration Guide ([#​17230](https://togithub.com/eslint/eslint/issues/17230)) (Ben Perlmutter) - [`bb30908`](https://togithub.com/eslint/eslint/commit/bb3090897166dbfd2931a43a70e2a5c1f3fa0a07) docs: Update README (GitHub Actions Bot) - [`84d243b`](https://togithub.com/eslint/eslint/commit/84d243b245b01b667f0752b592e8bda02a9aa2b1) docs: Update README (GitHub Actions Bot) - [`b762632`](https://togithub.com/eslint/eslint/commit/b762632298f20c4f81e7d01ab850c3f5e3874637) docs: Update README (GitHub Actions Bot) - [`138c096`](https://togithub.com/eslint/eslint/commit/138c096bc9468b553dbafc0e573c6522a17a7922) docs: add more prefer-destructuring examples with array destructuring ([#​17330](https://togithub.com/eslint/eslint/issues/17330)) (Milos Djermanovic) - [`1fc50a8`](https://togithub.com/eslint/eslint/commit/1fc50a89753346f4f4c786ffd20ac4cf185bb036) docs: `max-len` rule `code` and `tabWidth` as positional arguments ([#​17331](https://togithub.com/eslint/eslint/issues/17331)) (Jesús Leganés-Combarro) #### Chores - [`68f63d7`](https://togithub.com/eslint/eslint/commit/68f63d76ce785fab4f42b76f1599026eea379bf7) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`5ca9b4d`](https://togithub.com/eslint/eslint/commit/5ca9b4d29f747e9cf5c9055e85c93b3b605d57fc) chore: update eslint-config-eslint exports ([#​17336](https://togithub.com/eslint/eslint/issues/17336)) (Milos Djermanovic) - [`7bf2e86`](https://togithub.com/eslint/eslint/commit/7bf2e86022c9e95db4ca1472fddfa2ea4edd1870) chore: remove unused dependencies ([#​17352](https://togithub.com/eslint/eslint/issues/17352)) (Percy Ma) - [`c6f8cd0`](https://togithub.com/eslint/eslint/commit/c6f8cd0d62e4a3c314c6860ff367490bbd05325a) chore: Remove `defaultIgnores` from FlatESLint private members ([#​17349](https://togithub.com/eslint/eslint/issues/17349)) (Francesco Trotta) - [`0052374`](https://togithub.com/eslint/eslint/commit/0052374035672efe9129343fc00ee51a4c288ff3) chore: move jsdoc settings to eslint-config-eslint ([#​17338](https://togithub.com/eslint/eslint/issues/17338)) (唯然)
jest-community/eslint-plugin-jest (eslint-plugin-jest) ### [`v27.2.3`](https://togithub.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2723-2023-07-13) [Compare Source](https://togithub.com/jest-community/eslint-plugin-jest/compare/v27.2.2...v27.2.3) ##### Bug Fixes - allow `@typescript-eslint/eslint-plugin` v6 as peer dep ([#​1400](https://togithub.com/jest-community/eslint-plugin-jest/issues/1400)) ([04b2bf2](https://togithub.com/jest-community/eslint-plugin-jest/commit/04b2bf29bf086f8ce8173a9c3bc15ce31915dbe2)), closes [#​1398](https://togithub.com/jest-community/eslint-plugin-jest/issues/1398)
matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson) ### [`v2.4.5`](https://togithub.com/matzkoh/prettier-plugin-packagejson/releases/tag/v2.4.5) [Compare Source](https://togithub.com/matzkoh/prettier-plugin-packagejson/compare/v2.4.4...v2.4.5) ##### Bug Fixes - **deps:** update dependency sort-package-json to v2.5.1 ([d3fa877](https://togithub.com/matzkoh/prettier-plugin-packagejson/commit/d3fa877b6ebbf96bec1c40b40b29644c43dc8a21))
npm/node-semver (semver) ### [`v7.5.4`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#754-2023-07-07) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.5.3...v7.5.4) ##### Bug Fixes - [`cc6fde2`](https://togithub.com/npm/node-semver/commit/cc6fde2d34b95cb600d126649d926901bd2a9703) [#​588](https://togithub.com/npm/node-semver/pull/588) trim each range set before parsing ([@​lukekarrys](https://togithub.com/lukekarrys)) - [`99d8287`](https://togithub.com/npm/node-semver/commit/99d8287516a1d2abf0286033e2e26eca6b69c09f) [#​583](https://togithub.com/npm/node-semver/pull/583) correctly parse long build ids as valid ([#​583](https://togithub.com/npm/node-semver/issues/583)) ([@​lukekarrys](https://togithub.com/lukekarrys))

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

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



This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

socket-security[bot] commented 1 year ago

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@babel/core 7.22.9 filesystem, environment +29 5.96 MB nicolo-ribaudo
prettier-plugin-packagejson 2.4.4...2.4.5 None +1/-1 32.7 kB matzkoh
semver 7.5.3...7.5.4 None +0/-0 93.4 kB npm-cli-ops
@babel/eslint-parser 7.22.7...7.22.9 None +30/-38 6.09 MB nicolo-ribaudo
eslint-plugin-jest 27.2.2...27.2.3 None +31/-40 6.37 MB simenb

🚮 Removed packages: @sanity/semantic-release-preset@4.1.1, eslint@8.44.0

renovate[bot] commented 1 year ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

renovate[bot] commented 1 year ago

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.