Skip to content

Update other minor updates #552

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@changesets/cli (source) ^2.29.4 -> ^2.29.5 age confidence
@nomicfoundation/hardhat-chai-matchers (source) ^2.0.8 -> ^2.0.9 age confidence
@nomicfoundation/hardhat-ethers (source) ^3.0.8 -> ^3.0.9 age confidence
@nomicfoundation/hardhat-network-helpers (source) ^1.0.12 -> ^1.0.13 age confidence
@types/node (source) ^20.19.0 -> ^20.19.7 age confidence
dotenv ^16.5.0 -> ^16.6.1 age confidence
glob ^11.0.2 -> ^11.0.3 age confidence
hardhat (source) ^2.24.2 -> ^2.25.0 age confidence
hardhat-deploy 1.0.2 -> 1.0.4 age confidence
prettier (source) ^3.5.3 -> ^3.6.2 age confidence
prettier-plugin-solidity ^2.0.0 -> ^2.1.0 age confidence
solhint (source) ^5.1.0 -> ^5.2.0 age confidence
ts-jest (source) ^29.3.4 -> ^29.4.0 age confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.5

Compare Source

Patch Changes
nomicfoundation/hardhat (@​nomicfoundation/hardhat-chai-matchers)

v2.0.9

Compare Source

This release updates ethers to include its new Pectra support.

Changes
  • d77ecab: Update ethers to v6.14.0 with Pectra support

💡 The Nomic Foundation is hiring! Check our open positions.


motdotla/dotenv (dotenv)

v16.6.1

Compare Source

Changed
  • Default quiet to true – hiding the runtime log message (#​874)
  • NOTICE: 17.0.0 will be released with quiet defaulting to false. Use config({ quiet: true }) to suppress.
  • And check out the new dotenvx. As coding workflows evolve and agents increasingly handle secrets, encrypted .env files offer a much safer way to deploy both agents and code together with secure secrets. Simply switch require('dotenv').config() for require('@​dotenvx/dotenvx').config().

v16.6.0

Compare Source

Added
  • Default log helpful message [[email protected]] injecting env (1) from .env (#​870)
  • Use { quiet: true } to suppress
  • Aligns dotenv more closely with dotenvx.
isaacs/node-glob (glob)

v11.0.3

Compare Source

nomiclabs/hardhat (hardhat)

v2.25.0: Hardhat v2.25.0

Compare Source

This release upgrades the hardhat-gas-reporter to v2 for newly initialized projects.

Changes

💡 The Nomic Foundation is hiring! Check our open positions.


v2.24.3: Hardhat v2.24.3

Compare Source

This release is a small bug fix release that resolves the issue with sending ETH to testing accounts in forked networks, caused by mainnet EIP-7702 delegations on the test accounts. Now testing accounts are automatically undelegated.

Changes
  • 6be5c13: Upgraded EDR to v0.11.1, which fixed a bug when sending ETH to the testing accounts in forked networks. Now testing accounts are automatically undelegated.

💡 The Nomic Foundation is hiring! Check our open positions.


wighawag/hardhat-deploy (hardhat-deploy)

v1.0.4

Compare Source

Patch Changes
  • use etherscan v2 api

v1.0.3

Compare Source

Patch Changes
  • remove dependencies from qs
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

prettier-solidity/prettier-plugin-solidity (prettier-plugin-solidity)

v2.1.0

Compare Source

What's Changed

API Changes
Format Changes
// Original
import { Item } from "../../../contracts/very/long/path/to/File1.sol";
import { Item1, Item2 } from "../../../contracts/very/long/path/to/File2.sol";

// version 2.0.0
import {
    Item
} from "../../../contracts/very/long/path/to/File.sol";
import {
    Item1,
    Item2
} from "../../../contracts/very/long/path/to/File2.sol";

// version 2.1.0
import { Item } from "../../../contracts/very/long/path/to/File.sol";
import {
    Item1,
    Item2
} from "../../../contracts/very/long/path/to/File2.sol";
// Original
x = veryLongNameA * veryLongNameB + veryLongNameC;
x = veryLongNameA + veryLongNameB * veryLongNameC;

x = veryVeryLongNameA * veryVeryLongNameB + veryVeryLongNameC;
x = veryVeryLongNameA + veryVeryLongNameB * veryVeryLongNameC;

// version 2.0.0
x =
    veryLongNameA *
    veryLongNameB +
    veryLongNameC;
x =
    veryLongNameA +
    veryLongNameB *
    veryLongNameC;

x =
    veryVeryLongNameA *
    veryVeryLongNameB +
    veryVeryLongNameC;
x =
    veryVeryLongNameA +
    veryVeryLongNameB *
    veryVeryLongNameC;

// version 2.1.0
x =
    veryLongNameA * veryLongNameB +
    veryLongNameC;
x =
    veryLongNameA +
    veryLongNameB * veryLongNameC;

x =
    veryVeryLongNameA *
        veryVeryLongNameB +
    veryVeryLongNameC;
x =
    veryVeryLongNameA +
    veryVeryLongNameB *
        veryVeryLongNameC;
// Original
a = veryVeryVeryVeryVeryLongFunctionCalledA(veryVeryVeryVeryVeryLongArgumentCalledB) ** c;

// version 2.0.0
a =
    veryVeryVeryVeryVeryLongFunctionCalledA(
        veryVeryVeryVeryVeryLongVariableCalledB
    ) **
    c;

// version 2.1.0
a =
    veryVeryVeryVeryVeryLongFunctionCalledA(
        veryVeryVeryVeryVeryLongVariableCalledB
    ) ** c;
// Original
a == b == c;
a != b == c;

// version 2.0.0
a == b == c;
a != b == c;

// version 2.1.0
(a == b) == c;
(a != b) == c;
// Original
struct A {
    uint a;
    uint b;
    // uint c; // commented because I decided to test something
}

// version 2.0.0
struct A {
    uint a;
    uint b;
}
// uint c; // commented because I decided to test something

// version 2.1.0
struct A {
    uint a;
    uint b;
    // uint c; // commented because I decided to test something
}
Breaking Changes

New Contributors

Full Changelog: prettier-solidity/prettier-plugin-solidity@v2.0.0...v2.1.0

protofire/solhint (solhint)

v5.2.0

Compare Source

Fixed
  • imports-order interference with no-unused-imports - #​684
Added
  • Added cache flag allowing to skip already evaluated files if no error was thrown and file did not change - #​685
  • Added multi-directory config support by hierarchy - #​678
  • Added better error handling on invalid configs - #​683

Thanks to @​smol-ninja - @​PaulRBerg @​lechpzn, @​otc-png, @​MamunC0der, @​kks-code, @​RidaMichofi

For making the time of proposing rules, pointing out typos, broken links, unused code, copyright, small reviews, etc. We really appreciate your contributions!



kulshekhar/ts-jest (ts-jest)

v29.4.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - "before 10am 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from bbenligiray as a code owner July 1, 2025 03:33
@renovate renovate bot requested review from bbenligiray and hiletmis July 1, 2025 03:33
@renovate renovate bot force-pushed the renovate/other-minor-updates branch 2 times, most recently from 39d9fbf to 1a3d135 Compare July 8, 2025 19:59
@renovate renovate bot force-pushed the renovate/other-minor-updates branch 2 times, most recently from 6c23a73 to fc1d54e Compare July 9, 2025 19:12
@renovate renovate bot force-pushed the renovate/other-minor-updates branch from fc1d54e to 91d50f5 Compare July 10, 2025 20:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants