Skip to content

chore(deps): update dependency @nomicfoundation/hardhat-ignition-viem to v0.15.16#156

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/hardhat-packages
Dec 3, 2025
Merged

chore(deps): update dependency @nomicfoundation/hardhat-ignition-viem to v0.15.16#156
renovate[bot] merged 1 commit intomainfrom
renovate/hardhat-packages

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2025

This PR contains the following updates:

Package Type Update Change OpenSSF
@nomicfoundation/hardhat-ignition-viem (source) dependencies patch 0.15.15 -> 0.15.16 OpenSSF Scorecard

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

NomicFoundation/hardhat (@​nomicfoundation/hardhat-ignition-viem)

v0.15.16

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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


Summary by cubic

Upgrade Hardhat Ignition + viem integration to the latest patch to keep deployments compatible with recent Ignition changes.

  • Dependencies
    • @nomicfoundation/hardhat-ignition-viem: 0.15.15 → 0.15.16
    • Peer deps aligned in lockfile: hardhat-ignition ^0.15.16, ignition-core ^0.15.15

Written for commit 660dbbf. Summary will update automatically on new commits.

… to v0.15.16

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot added the dependencies label Dec 3, 2025
@renovate renovate bot enabled auto-merge (squash) December 3, 2025 20:14
Comment on lines 196 to 202

"@nomicfoundation/hardhat-ignition": ["@nomicfoundation/hardhat-ignition@0.15.15", "", { "dependencies": { "@nomicfoundation/ignition-core": "^0.15.14", "@nomicfoundation/ignition-ui": "^0.15.13", "chalk": "^4.0.0", "debug": "^4.3.2", "fs-extra": "^10.0.0", "json5": "^2.2.3", "prompts": "^2.4.2" }, "peerDependencies": { "@nomicfoundation/hardhat-verify": "^2.1.0", "hardhat": "^2.26.0" } }, "sha512-4uLp5MOyaW0gUYGAxiA8GikGIo8SLBijpxakFI3BpofUoeRXnnQdNtRJT9aAKD8ENfvFQrNFin0Z1VlXjXurkA=="],

"@nomicfoundation/hardhat-ignition-viem": ["@nomicfoundation/hardhat-ignition-viem@0.15.15", "", { "peerDependencies": { "@nomicfoundation/hardhat-ignition": "^0.15.15", "@nomicfoundation/hardhat-viem": "^2.1.0", "@nomicfoundation/ignition-core": "^0.15.14", "hardhat": "^2.26.0", "viem": "^2.7.6" } }, "sha512-YUL1avW+TEh+nQEzoKwp8SpK9O7gW/Q3vJs95Xhtmz6RJQynWrjSOXVK43xNfzpbS/C+kfPa+A6DF1Sr19H6kg=="],
"@nomicfoundation/hardhat-ignition-viem": ["@nomicfoundation/hardhat-ignition-viem@0.15.16", "", { "peerDependencies": { "@nomicfoundation/hardhat-ignition": "^0.15.16", "@nomicfoundation/hardhat-viem": "^2.1.0", "@nomicfoundation/ignition-core": "^0.15.15", "hardhat": "^2.26.0", "viem": "^2.7.6" } }, "sha512-BKWRZSkW1dLMW6VRjQCLei+JGYmotTsQo/QeR21CyVG0FMkPESTU6X1XPKynqNjaYJebV8rDsjtdB/Bzi7FRog=="],

"@nomicfoundation/hardhat-network-helpers": ["@nomicfoundation/hardhat-network-helpers@1.1.2", "", { "dependencies": { "ethereumjs-util": "^7.1.4" }, "peerDependencies": { "hardhat": "^2.26.0" } }, "sha512-p7HaUVDbLj7ikFivQVNhnfMHUBgiHYMwQWvGn9AriieuopGOELIrwj2KjyM2a6z70zai5YKO264Vwz+3UFJZPQ=="],

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: The bun.lock file has an incomplete dependency upgrade, leading to peer dependency violations for core ignition packages.
Severity: CRITICAL | Confidence: High

🔍 Detailed Analysis

The bun.lock file is in an invalid state because the PR updated @nomicfoundation/hardhat-ignition-viem to 0.15.16 but failed to update its peer dependencies. Specifically, @nomicfoundation/hardhat-ignition remains at 0.15.15 (required ^0.15.16) and @nomicfoundation/ignition-core remains at 0.15.14 (required ^0.15.15). This inconsistency will cause bun install to fail or issue warnings, and could lead to runtime errors due to API mismatches when the updated viem plugin interacts with the outdated core ignition packages.

💡 Suggested Fix

Update package.json and bun.lock to upgrade @nomicfoundation/hardhat-ignition to at least 0.15.16 and @nomicfoundation/ignition-core to at least 0.15.15 to satisfy the peer dependency requirements of @nomicfoundation/hardhat-ignition-viem@0.15.16.

🤖 Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: bun.lock#L196-L202

Potential issue: The `bun.lock` file is in an invalid state because the PR updated
`@nomicfoundation/hardhat-ignition-viem` to `0.15.16` but failed to update its peer
dependencies. Specifically, `@nomicfoundation/hardhat-ignition` remains at `0.15.15`
(required `^0.15.16`) and `@nomicfoundation/ignition-core` remains at `0.15.14`
(required `^0.15.15`). This inconsistency will cause `bun install` to fail or issue
warnings, and could lead to runtime errors due to API mismatches when the updated viem
plugin interacts with the outdated core ignition packages.

Did we get this right? 👍 / 👎 to inform future reviews.
Reference ID: 5300040

Copy link

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

@github-actions
Copy link

github-actions bot commented Dec 3, 2025

📦 Packages

Package Install
Template Set bun add @settlemint/settlemint/solidity-token-erc1155@8.0.11-prc4310e8

@renovate renovate bot merged commit 29918c1 into main Dec 3, 2025
4 checks passed
@renovate renovate bot deleted the renovate/hardhat-packages branch December 3, 2025 20:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants