ethereum / sourcify

Decentralized Solidity contract source code verification service
https://sourcify.dev
MIT License
768 stars 378 forks source link

fix(deps): update all patch dependencies #1469

Closed renovate-bot closed 1 month ago

renovate-bot commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@google-cloud/cloud-sql-connector 1.3.2 -> 1.3.3 age adoption passing confidence
@types/node (source) 20.14.10 -> 20.14.12 age adoption passing confidence
directory-tree 3.5.1 -> 3.5.2 age adoption passing confidence
express-fileupload 1.5.0 -> 1.5.1 age adoption passing confidence
lerna (source) 8.1.6 -> 8.1.7 age adoption passing confidence
nock 14.0.0-beta.7 -> 14.0.0-beta.9 age adoption passing confidence
postcss (source) 8.4.39 -> 8.4.40 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
react-router-dom (source) 6.25.0 -> 6.25.1 age adoption passing confidence
semver 7.6.2 -> 7.6.3 age adoption passing confidence
tailwindcss (source) 3.4.4 -> 3.4.6 age adoption passing confidence
typedoc (source) 0.26.3 -> 0.26.5 age adoption passing confidence
typescript (source) 5.5.3 -> 5.5.4 age adoption passing confidence
winston 3.13.0 -> 3.13.1 age adoption passing confidence

Release Notes

GoogleCloudPlatform/cloud-sql-nodejs-connector (@​google-cloud/cloud-sql-connector) ### [`v1.3.3`](https://togithub.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/blob/HEAD/CHANGELOG.md#133-2024-07-09) [Compare Source](https://togithub.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/compare/v1.3.2...v1.3.3) ##### Bug Fixes - bump dependencies to latest versions ([#​373](https://togithub.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/issues/373)) ([ece7251](https://togithub.com/GoogleCloudPlatform/cloud-sql-nodejs-connector/commit/ece7251a7854217b236205a40d860a61f447f2d8))
mihneadb/node-directory-tree (directory-tree) ### [`v3.5.2`](https://togithub.com/mihneadb/node-directory-tree/compare/3.5.1...3.5.2) [Compare Source](https://togithub.com/mihneadb/node-directory-tree/compare/3.5.1...3.5.2)
richardgirges/express-fileupload (express-fileupload) ### [`v1.5.1`](https://togithub.com/richardgirges/express-fileupload/releases/tag/v1.5.1) [Compare Source](https://togithub.com/richardgirges/express-fileupload/compare/v1.5.0...v1.5.1) #### What's Changed - New option `hashAlgorithm`. **Full Changelog**: https://github.com/richardgirges/express-fileupload/compare/v1.5.0...v.1.5.1
lerna/lerna (lerna) ### [`v8.1.7`](https://togithub.com/lerna/lerna/blob/HEAD/packages/lerna/CHANGELOG.md#817-2024-07-21) [Compare Source](https://togithub.com/lerna/lerna/compare/v8.1.6...v8.1.7) ##### Bug Fixes - set explicit strip-ansi dependency ([#​4045](https://togithub.com/lerna/lerna/issues/4045)) ([6e5cfbc](https://togithub.com/lerna/lerna/commit/6e5cfbc7dc80ade930f950c6a56e130b25a512eb))
nock/nock (nock) ### [`v14.0.0-beta.9`](https://togithub.com/nock/nock/releases/tag/v14.0.0-beta.9) [Compare Source](https://togithub.com/nock/nock/compare/v14.0.0-beta.8...v14.0.0-beta.9) ##### Bug Fixes - support lowercase HTTP request methods ([#​2763](https://togithub.com/nock/nock/issues/2763)) ([de7922c](https://togithub.com/nock/nock/commit/de7922c908caac7ba71fa1b1e36e1136f96efd0d)) ### [`v14.0.0-beta.8`](https://togithub.com/nock/nock/releases/tag/v14.0.0-beta.8) [Compare Source](https://togithub.com/nock/nock/compare/v14.0.0-beta.7...v14.0.0-beta.8) ##### Features - `@mswjs/interceptors` for mocking ([#​2517](https://togithub.com/nock/nock/issues/2517)) ([5c8c4c2](https://togithub.com/nock/nock/commit/5c8c4c27ce6fa3f245cc5156585d8090ddd80c6a))
postcss/postcss (postcss) ### [`v8.4.40`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8440) [Compare Source](https://togithub.com/postcss/postcss/compare/8.4.39...8.4.40) - Moved to getter/setter in nodes types to help Sass team (by [@​nex3](https://togithub.com/nex3)).
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.2 foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.3 foo ? (bar ?? foo) : baz; (foo ?? bar) ? a : b; a ? b : (foo ?? bar); ``` ##### Add parentheses for decorator expressions ([#​16458](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // Input @​(foo`tagged template`) class X {} // Prettier 3.3.2 @​foo`tagged template` class X {} // Prettier 3.3.3 @​(foo`tagged template`) class X {} ``` ##### Support `@let` declaration syntax ([#​16474](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) Adds support for Angular v18 `@let` declaration syntax. Please see the following code example. The `@let` declaration allows you to define local variables within the template: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.
remix-run/react-router (react-router-dom) ### [`v6.25.1`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#6251) [Compare Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.25.0...react-router-dom@6.25.1) ##### Patch Changes - Memoize some `RouterProvider` internals to reduce unnecessary re-renders ([#​11803](https://togithub.com/remix-run/react-router/pull/11803)) - Updated dependencies: - `react-router@6.25.1`
npm/node-semver (semver) ### [`v7.6.3`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#763-2024-07-16) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.6.2...v7.6.3) ##### Bug Fixes - [`73a3d79`](https://togithub.com/npm/node-semver/commit/73a3d79c4ec32d5dd62c9d5f64e5af7fbdad9ec0) [#​726](https://togithub.com/npm/node-semver/pull/726) optimize Range parsing and formatting ([#​726](https://togithub.com/npm/node-semver/issues/726)) ([@​jviide](https://togithub.com/jviide)) ##### Documentation - [`2975ece`](https://togithub.com/npm/node-semver/commit/2975ece120e17660c9f1ef517de45c09ff821064) [#​719](https://togithub.com/npm/node-semver/pull/719) fix extra backtick typo ([#​719](https://togithub.com/npm/node-semver/issues/719)) ([@​stdavis](https://togithub.com/stdavis))
tailwindlabs/tailwindcss (tailwindcss) ### [`v3.4.6`](https://togithub.com/tailwindlabs/tailwindcss/releases/tag/v3.4.6) [Compare Source](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.4.5...v3.4.6) ##### Fixed - Fix detection of some utilities in Slim/Pug templates ([#​14006](https://togithub.com/tailwindlabs/tailwindcss/pull/14006)) ##### Changed - Loosen `:is()` wrapping rules when using an important selector ([#​13900](https://togithub.com/tailwindlabs/tailwindcss/pull/13900)) ### [`v3.4.5`](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.4.4...a0dbb3d87664521af8a422df5c179d9572a4698c) [Compare Source](https://togithub.com/tailwindlabs/tailwindcss/compare/v3.4.4...v3.4.5)
TypeStrong/TypeDoc (typedoc) ### [`v0.26.5`](https://togithub.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0265-2024-07-21) [Compare Source](https://togithub.com/TypeStrong/TypeDoc/compare/v0.26.4...v0.26.5) ##### Features - TypeDoc now exposes array option defaults under `OptionDefaults`, [#​2640](https://togithub.com/TypeStrong/TypeDoc/issues/2640). ##### Bug Fixes - Constructor parameters which share a name with a property on a parent class will no longer inherit the comment on the parent class, [#​2636](https://togithub.com/TypeStrong/TypeDoc/issues/2636). - Packages mode will now attempt to use the comment declared in the comment class for inherited members, [#​2622](https://togithub.com/TypeStrong/TypeDoc/issues/2622). - TypeDoc no longer crashes when `@document` includes an empty file, [#​2638](https://togithub.com/TypeStrong/TypeDoc/issues/2638). - API: Event listeners added later with the same priority will be called later, [#​2643](https://togithub.com/TypeStrong/TypeDoc/issues/2643). ##### Thanks! - [@​bladerunner2020](https://togithub.com/bladerunner2020) ### [`v0.26.4`](https://togithub.com/TypeStrong/TypeDoc/blob/HEAD/CHANGELOG.md#v0264-2024-07-10) [Compare Source](https://togithub.com/TypeStrong/TypeDoc/compare/v0.26.3...v0.26.4) ##### Bug Fixes - The page navigation sidebar no longer incorrectly includes re-exports if the same member is exported with multiple names [#​2625](https://togithub.com/TypeStrong/TypeDoc/issues/2625). - Page navigation now ensures the current page is visible when the page is first loaded, [#​2626](https://togithub.com/TypeStrong/TypeDoc/issues/2626). - If a relative linked image is referenced multiple times, TypeDoc will no longer sometimes produce invalid links to the image [#​2627](https://togithub.com/TypeStrong/TypeDoc/issues/2627). - `@link` tags will now be validated in referenced markdown documents, [#​2629](https://togithub.com/TypeStrong/TypeDoc/issues/2629). - `@link` tags are now resolved in project documents, [#​2629](https://togithub.com/TypeStrong/TypeDoc/issues/2629). - HTML/JSON output generated by TypeDoc now contains a trailing newline, [#​2632](https://togithub.com/TypeStrong/TypeDoc/issues/2632). - TypeDoc now correctly handles markdown documents with CRLF line endings, [#​2628](https://togithub.com/TypeStrong/TypeDoc/issues/2628). - `@hidden` is now properly applied when placed in a function implementation comment, [#​2634](https://togithub.com/TypeStrong/TypeDoc/issues/2634). - Comments on re-exports are now rendered. ##### Thanks! - [@​bukowa](https://togithub.com/bukowa) - [@​garrett-hopper](https://togithub.com/garrett-hopper)
Microsoft/TypeScript (typescript) ### [`v5.5.4`](https://togithub.com/Microsoft/TypeScript/compare/v5.5.3...c8a7d589e647e19c94150d9892909f3aa93e48eb) [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.5.3...v5.5.4)
winstonjs/winston (winston) ### [`v3.13.1`](https://togithub.com/winstonjs/winston/releases/tag/v3.13.1) [Compare Source](https://togithub.com/winstonjs/winston/compare/v3.13.0...v3.13.1) - revert to rimraf 5.0.1, last known version to work with node 18 for now [`1b3a500`](https://togithub.com/winstonjs/winston/commit/1b3a500) - Merge branch 'master' of github.com:winstonjs/winston [`b56117e`](https://togithub.com/winstonjs/winston/commit/b56117e) - Update dependencies [`a5853b5`](https://togithub.com/winstonjs/winston/commit/a5853b5) - Bump [@​types/node](https://togithub.com/types/node) from 20.12.7 to 20.14.10 ([#​2483](https://togithub.com/winstonjs/winston/issues/2483)) [`93b52ac`](https://togithub.com/winstonjs/winston/commit/93b52ac) - Bump mocha from 10.3.0 to 10.6.0 ([#​2484](https://togithub.com/winstonjs/winston/issues/2484)) [`33611c9`](https://togithub.com/winstonjs/winston/commit/33611c9) - Bump [@​babel/preset-env](https://togithub.com/babel/preset-env) from 7.24.0 to 7.24.7 ([#​2475](https://togithub.com/winstonjs/winston/issues/2475)) [`4aa6550`](https://togithub.com/winstonjs/winston/commit/4aa6550) - Update minimum version logform ([#​2472](https://togithub.com/winstonjs/winston/issues/2472)) [`7f5f014`](https://togithub.com/winstonjs/winston/commit/7f5f014) - Add Parseable transport ([#​2466](https://togithub.com/winstonjs/winston/issues/2466)) [`debf4fa`](https://togithub.com/winstonjs/winston/commit/debf4fa) - chore(docs): Update w/ MySQL transport ([#​2456](https://togithub.com/winstonjs/winston/issues/2456)) [`d567c57`](https://togithub.com/winstonjs/winston/commit/d567c57) - fix typo at test/unit/winston/transports/http.test.js ([#​2453](https://togithub.com/winstonjs/winston/issues/2453)) [`1d5d527`](https://togithub.com/winstonjs/winston/commit/1d5d527) - Bump [@​babel/cli](https://togithub.com/babel/cli) from 7.23.9 to 7.24.5 ([#​2454](https://togithub.com/winstonjs/winston/issues/2454)) [`d89a34e`](https://togithub.com/winstonjs/winston/commit/d89a34e) - Bump [@​types/node](https://togithub.com/types/node) from 20.11.29 to 20.12.7 ([#​2448](https://togithub.com/winstonjs/winston/issues/2448)) [`947fa79`](https://togithub.com/winstonjs/winston/commit/947fa79) - Bump [@​babel/core](https://togithub.com/babel/core) from 7.24.0 to 7.24.5 ([#​2455](https://togithub.com/winstonjs/winston/issues/2455)) [`8c58d0a`](https://togithub.com/winstonjs/winston/commit/8c58d0a)

Configuration

šŸ“… Schedule: Branch creation - "before 4am" in timezone Europe/Berlin, 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 was generated by Mend Renovate. View the repository job log.

coderabbitai[bot] commented 1 month ago

[!IMPORTANT]

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share - [X](https://twitter.com/intent/tweet?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A&url=https%3A//coderabbit.ai) - [Mastodon](https://mastodon.social/share?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A%20https%3A%2F%2Fcoderabbit.ai) - [Reddit](https://www.reddit.com/submit?title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&text=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code.%20Check%20it%20out%3A%20https%3A//coderabbit.ai) - [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fcoderabbit.ai&mini=true&title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&summary=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code)
Tips ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit .` - `Generate unit testing code for this file.` - `Open a follow-up GitHub issue for this discussion.` - Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples: - `@coderabbitai generate unit testing code for this file.` - `@coderabbitai modularize this function.` - PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples: - `@coderabbitai generate interesting stats about this repository and render them as a table.` - `@coderabbitai show all the console.log statements in this repository.` - `@coderabbitai read src/utils.ts and generate unit testing code.` - `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.` - `@coderabbitai help me debug CodeRabbit configuration file.` Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. ### CodeRabbit Commands (invoked as PR comments) - `@coderabbitai pause` to pause the reviews on a PR. - `@coderabbitai resume` to resume the paused reviews. - `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository. - `@coderabbitai full review` to do a full review from scratch and review all the files again. - `@coderabbitai summary` to regenerate the summary of the PR. - `@coderabbitai resolve` resolve all the CodeRabbit review comments. - `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository. - `@coderabbitai help` to get help. Additionally, you can add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed. ### CodeRabbit Configration File (`.coderabbit.yaml`) - You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository. - Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information. - If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json` ### Documentation and Community - Visit our [Documentation](https://coderabbit.ai/docs) for detailed information on how to use CodeRabbit. - Join our [Discord Community](https://discord.com/invite/GsXnASn26c) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.