api3dao / airseeker

A service powering the dAPIs
MIT License
2 stars 5 forks source link

Update non-major-dev-dependencies #367

Closed renovate[bot] closed 1 week ago

renovate[bot] commented 1 month ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nomicfoundation/hardhat-ethers (source) ^3.0.6 -> ^3.0.8 age adoption passing confidence
@total-typescript/ts-reset (source) ^0.5.1 -> ^0.6.1 age adoption passing confidence
@types/node (source) ^20.14.14 -> ^20.16.3 age adoption passing confidence
eslint-plugin-import ^2.29.1 -> ^2.30.0 age adoption passing confidence
eslint-plugin-jest ^28.7.0 -> ^28.8.2 age adoption passing confidence
hardhat (source) ^2.22.8 -> ^2.22.10 age adoption passing confidence
husky ^9.1.4 -> ^9.1.5 age adoption passing confidence
ts-jest (source) ^29.2.4 -> ^29.2.5 age adoption passing confidence

Release Notes

nomicfoundation/hardhat (@​nomicfoundation/hardhat-ethers) ### [`v3.0.8`](https://redirect.github.com/NomicFoundation/hardhat/releases/tag/%40nomicfoundation/hardhat-ethers%403.0.8) [Compare Source](https://redirect.github.com/nomicfoundation/hardhat/compare/@nomicfoundation/hardhat-ethers@3.0.7...@nomicfoundation/hardhat-ethers@3.0.8) A small bug fix release to fix the Hardhat peer dependency entry in the published `package.json` that was corrupted by pnpm in the previous release. ##### Changes - [`efa905d`](https://redirect.github.com/nomicfoundation/hardhat/commit/efa905d): Fix for corrupted Hardhat peer dependency version from pnpm. *** > πŸ’‘ **The Nomic Foundation is hiring! Check [our open positions](https://www.nomic.foundation/jobs).** *** ### [`v3.0.7`](https://redirect.github.com/NomicFoundation/hardhat/releases/tag/%40nomicfoundation/hardhat-ethers%403.0.7) [Compare Source](https://redirect.github.com/nomicfoundation/hardhat/compare/@nomicfoundation/hardhat-ethers@3.0.6...@nomicfoundation/hardhat-ethers@3.0.7) A small bug fix release to help when running against Erigon where the `eth_accounts` RPC call is deprecated. ##### Changes - [`93b30d5`](https://redirect.github.com/nomicfoundation/hardhat/commit/93b30d5): Fix for `getSigners` against networks where `eth_accounts` is deprecated. *** > πŸ’‘ **The Nomic Foundation is hiring! Check [our open positions](https://www.nomic.foundation/jobs).** ***
total-typescript/ts-reset (@​total-typescript/ts-reset) ### [`v0.6.1`](https://redirect.github.com/total-typescript/ts-reset/blob/HEAD/CHANGELOG.md#061) ##### Patch Changes - [`757be40`](https://redirect.github.com/total-typescript/ts-reset/commit/757be40): Fixed a bug where creating an empty map would no longer infer types correctly. ### [`v0.6.0`](https://redirect.github.com/total-typescript/ts-reset/blob/HEAD/CHANGELOG.md#060) ##### Minor Changes - [`6574858`](https://redirect.github.com/total-typescript/ts-reset/commit/6574858): Added a rule, `/map-constructor`, to default `Map` to `Map` when no arguments are passed to the constructor. Before, you'd get `any` for both key and value types. Now, the result of `Map.get` is `unknown` instead of `any`: ```ts const userMap = new Map(); const value = userMap.get("matt"); // value: unknown ``` This now is part of the recommended rules. - [`5bf3a15`](https://redirect.github.com/total-typescript/ts-reset/commit/5bf3a15): Added a rule, `/promise-catch`, to change the `catch` method to take `unknown` instead of `any` as an argument. ```ts const promise = Promise.reject("error"); // BEFORE promise.catch((error) => { console.error(error); // error is any! }); // AFTER promise.catch((error) => { console.error(error); // error is unknown! }); ``` ##### Patch Changes - [`53cee4f`](https://redirect.github.com/total-typescript/ts-reset/commit/53cee4f): author: [@​none23](https://redirect.github.com/none23) Fixed a bug where running .filter on a union of arrays would not work.
import-js/eslint-plugin-import (eslint-plugin-import) ### [`v2.30.0`](https://redirect.github.com/import-js/eslint-plugin-import/blob/HEAD/CHANGELOG.md#2300---2024-09-02) [Compare Source](https://redirect.github.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.30.0) ##### Added - \[`dynamic-import-chunkname`]: add `allowEmpty` option to allow empty leading comments (\[[#​2942](https://redirect.github.com/import-js/eslint-plugin-import/issues/2942)], thanks \[[@​JiangWeixian](https://redirect.github.com/JiangWeixian)]) - \[`dynamic-import-chunkname`]: Allow empty chunk name when webpackMode: 'eager' is set; add suggestions to remove name in eager mode (\[[#​3004](https://redirect.github.com/import-js/eslint-plugin-import/issues/3004)], thanks \[[@​amsardesai](https://redirect.github.com/amsardesai)]) - \[`no-unused-modules`]: Add `ignoreUnusedTypeExports` option (\[[#​3011](https://redirect.github.com/import-js/eslint-plugin-import/issues/3011)], thanks \[[@​silverwind](https://redirect.github.com/silverwind)]) - add support for Flat Config (\[[#​3018](https://redirect.github.com/import-js/eslint-plugin-import/issues/3018)], thanks \[[@​michaelfaith](https://redirect.github.com/michaelfaith)]) ##### Fixed - \[`no-extraneous-dependencies`]: allow wrong path (\[[#​3012](https://redirect.github.com/import-js/eslint-plugin-import/issues/3012)], thanks \[[@​chabb](https://redirect.github.com/chabb)]) - \[`no-cycle`]: use scc algorithm to optimize (\[[#​2998](https://redirect.github.com/import-js/eslint-plugin-import/issues/2998)], thanks \[[@​soryy708](https://redirect.github.com/soryy708)]) - \[`no-duplicates`]: Removing duplicates breaks in TypeScript (\[[#​3033](https://redirect.github.com/import-js/eslint-plugin-import/issues/3033)], thanks \[[@​yesl-kim](https://redirect.github.com/yesl-kim)]) - \[`newline-after-import`]: fix considerComments option when require (\[[#​2952](https://redirect.github.com/import-js/eslint-plugin-import/issues/2952)], thanks \[[@​developer-bandi](https://redirect.github.com/developer-bandi)]) - \[`order`]: do not compare first path segment for relative paths (\[[#​2682](https://redirect.github.com/import-js/eslint-plugin-import/issues/2682)]) (\[[#​2885](https://redirect.github.com/import-js/eslint-plugin-import/issues/2885)], thanks \[[@​mihkeleidast](https://redirect.github.com/mihkeleidast)]) ##### Changed - \[Docs] `no-extraneous-dependencies`: Make glob pattern description more explicit (\[[#​2944](https://redirect.github.com/import-js/eslint-plugin-import/issues/2944)], thanks \[[@​mulztob](https://redirect.github.com/mulztob)]) - \[`no-unused-modules`]: add console message to help debug \[[#​2866](https://redirect.github.com/import-js/eslint-plugin-import/issues/2866)] - \[Refactor] `ExportMap`: make procedures static instead of monkeypatching exportmap (\[[#​2982](https://redirect.github.com/import-js/eslint-plugin-import/issues/2982)], thanks \[[@​soryy708](https://redirect.github.com/soryy708)]) - \[Refactor] `ExportMap`: separate ExportMap instance from its builder logic (\[[#​2985](https://redirect.github.com/import-js/eslint-plugin-import/issues/2985)], thanks \[[@​soryy708](https://redirect.github.com/soryy708)]) - \[Docs] `order`: Add a quick note on how unbound imports and --fix (\[[#​2640](https://redirect.github.com/import-js/eslint-plugin-import/issues/2640)], thanks \[[@​minervabot](https://redirect.github.com/minervabot)]) - \[Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) (\[[#​2987](https://redirect.github.com/import-js/eslint-plugin-import/issues/2987)], thanks \[[@​joeyguerra](https://redirect.github.com/joeyguerra)]) - \[actions] migrate OSX tests to GHA (\[[ljharb#37](https://redirect.github.com/ljharb/eslint-plugin-import/issues/37)], thanks \[[@​aks-](https://redirect.github.com/aks-)]) - \[Refactor] `exportMapBuilder`: avoid hoisting (\[[#​2989](https://redirect.github.com/import-js/eslint-plugin-import/issues/2989)], thanks \[[@​soryy708](https://redirect.github.com/soryy708)]) - \[Refactor] `ExportMap`: extract "builder" logic to separate files (\[[#​2991](https://redirect.github.com/import-js/eslint-plugin-import/issues/2991)], thanks \[[@​soryy708](https://redirect.github.com/soryy708)]) - \[Docs] \[`order`]: update the description of the `pathGroupsExcludedImportTypes` option (\[[#​3036](https://redirect.github.com/import-js/eslint-plugin-import/issues/3036)], thanks \[[@​liby](https://redirect.github.com/liby)]) - \[readme] Clarify how to install the plugin (\[[#​2993](https://redirect.github.com/import-js/eslint-plugin-import/issues/2993)], thanks \[[@​jwbth](https://redirect.github.com/jwbth)])
jest-community/eslint-plugin-jest (eslint-plugin-jest) ### [`v28.8.2`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2882-2024-09-02) [Compare Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.1...v28.8.2) ##### Performance Improvements - **prefer-importing-jest-globals:** stop collecting import specifiers for no reason ([#​1646](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1646)) ([0660242](https://redirect.github.com/jest-community/eslint-plugin-jest/commit/066024289ec09e2ecf83db001cc93930aa6288a8)) ### [`v28.8.1`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2881-2024-08-29) [Compare Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.8.0...v28.8.1) ##### Bug Fixes - **prefer-importing-jest-globals:** support typescript-eslint parser ([#​1639](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1639)) ([307f6a7](https://redirect.github.com/jest-community/eslint-plugin-jest/commit/307f6a7b3aad7a5c891d8fea9f115e5d2f4f3fbb)) ### [`v28.8.0`](https://redirect.github.com/jest-community/eslint-plugin-jest/blob/HEAD/CHANGELOG.md#2880-2024-08-07) [Compare Source](https://redirect.github.com/jest-community/eslint-plugin-jest/compare/v28.7.0...v28.8.0) ##### Features - import formatting rules from `eslint-plugin-jest-formatting` ([#​1563](https://redirect.github.com/jest-community/eslint-plugin-jest/issues/1563)) ([74078ee](https://redirect.github.com/jest-community/eslint-plugin-jest/commit/74078ee13dd7c7d257d514809dadc5593a214e74))
nomiclabs/hardhat (hardhat) ### [`v2.22.10`](https://redirect.github.com/NomicFoundation/hardhat/releases/tag/hardhat%402.22.10): Hardhat v2.22.10 [Compare Source](https://redirect.github.com/nomiclabs/hardhat/compare/hardhat@2.22.9...hardhat@2.22.10) This is a small bug fix release to improve `debug` logs during Hardhat Network initialization. ##### Changes - [`409e99f`](https://redirect.github.com/nomiclabs/hardhat/commit/409e99f): Fixed `debug` logs in Hardhat Network initialization process. - [`46cd7a1`](https://redirect.github.com/nomiclabs/hardhat/commit/46cd7a1): Removed the experimentalAddHardhatNetworkMessageTraceHook API *** > πŸ’‘ **The Nomic Foundation is hiring! Check [our open positions](https://www.nomic.foundation/jobs).** *** ### [`v2.22.9`](https://redirect.github.com/NomicFoundation/hardhat/releases/tag/hardhat%402.22.9): Hardhat v2.22.9 [Compare Source](https://redirect.github.com/nomiclabs/hardhat/compare/hardhat@2.22.8...hardhat@2.22.9) This is a small bug fix release remove a warning message against the local Hardhat node when deploying with Hardhat Ignition. ##### Changes - [`6771f00`](https://redirect.github.com/nomiclabs/hardhat/commit/6771f00): Do not send `http_setLedgerOutputEnabled` messages beyond the HTTP Provider to prevent unwanted warnings in the logs of the local hardhat node *** > πŸ’‘ **The Nomic Foundation is hiring! Check [our open positions](https://www.nomic.foundation/jobs).** ***
typicode/husky (husky) ### [`v9.1.5`](https://redirect.github.com/typicode/husky/compare/v9.1.4...2fee8d212c601942ad146ea9209f15c20a07fb6d) [Compare Source](https://redirect.github.com/typicode/husky/compare/v9.1.4...v9.1.5)
kulshekhar/ts-jest (ts-jest) ### [`v29.2.5`](https://redirect.github.com/kulshekhar/ts-jest/blob/HEAD/CHANGELOG.md#2925-2024-08-23) [Compare Source](https://redirect.github.com/kulshekhar/ts-jest/compare/v29.2.4...v29.2.5)

Configuration

πŸ“… Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

β™» Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.