Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 27, 2025

Bumps chia-blockchain from 2.4.4 to 2.5.5.

Release notes

Sourced from chia-blockchain's releases.

2.5.5 Chia blockchain 2025-08-19

Note that protocol changes between node, farmer, and harvester will require all entities to be upgraded at the same time to 2.5.5. On a simple one machine setup, this will be handled by the installer. But if you have more complicated topologies with remote farmers or harvesters, you will need to upgrade all components.

Dr. Plotter is currently not compatible with Chia 2.5.5 because of the protocol changes above. Please do not update to Chia 2.5.5 until a compatible version of Dr. Plotter is released.

2.5.5 will also make changes to the blockchain database that are incompatible with previous versions. If you run 2.5.5 but later wish to downgrade to an earlier version, you will need to downgrade your database schema by running the following command:

python -c "import sqlite3, sys, os; conn = sqlite3.connect(os.path.expanduser(sys.argv[1])); cursor = conn.execute('UPDATE coin_record SET spent_index = 0 WHERE spent_index = -1'); print(f'Updated {cursor.rowcount} records'); conn.commit(); conn.close()" <path to the db>

Replacing <path to the db> with your actual database path.

What's Changed

Added

  • Add chia dev mempool CLI commands to import, export, and benchmark the mempool
  • Add new error logging if the block cost fails to compute
  • Add dicts to streamable
  • Add independant Full Node RPC Validation Tool (tools\validate_rpcs.py)
  • Add Revocable CAT support to wallet (Chip 38)
  • Add mempool optimizations and fixes in spend deduplication and singleton fast forward.
  • Add mempool vault fast forward support
  • Add unit tests to cover singleton fast forward dynamics
  • Add new optional block creation algorithm to maximize transactions (set config.yaml full_node:block_creation to 1)
  • Add new config setting for block creation timeout (full_node:block_creation_timeout)
  • Add preparation for new plot format and expected hard fork (Chip 48)
  • Add canonical CLVM serialization requirement after expected hard fork

Changed

  • Harvester<->Farmer protocol change: compute plot filter on the harvester (Chip 48 prep)
  • Farmer<->Node protocol change (Chip 48 prep)
  • Backwards incompatible schema change for mempool fast-forward support
  • Remove problematic coins_added_at_height_cache cache
  • Remove no longer needed item_inclusion_filter in the mempool
  • Significantly speedup mempool manager tests by not forcing them to request unneeded fixtures
  • Refactor and add test for WSM puzzle hash endpoints
  • Removed unneeded call to compute block cost
  • Add puzzle hash generation to action scopes
  • Remove direct secret key access from pool wallet
  • Add ContextManager to FullNodePeers

... (truncated)

Changelog

Sourced from chia-blockchain's changelog.

2.5.5 Chia blockchain 2025-08-19

Note that protocol changes between node, farmer, and harvester will require all entities to be upgraded at the same time to 2.5.5. On a simple one machine setup, this will be handled by the installer. But if you have more complicated topologies with remote farmers or harvesters, you will need to upgrade all components.

2.5.5 will also make changes to the blockchain database that are incompatible with previous versions. If you run 2.5.5 but later wish to downgrade to an earlier version, you will need to downgrade your database schema by running the following command:

python -c "import sqlite3, sys, os; conn = sqlite3.connect(os.path.expanduser(sys.argv[1])); cursor = conn.execute('UPDATE coin_record SET spent_index = 0 WHERE spent_index = -1'); print(f'Updated {cursor.rowcount} records'); conn.commit(); conn.close()" <path to the db>

Replacing <path to the db> with your actual database path.

What's Changed

Added

  • Add chia dev mempool CLI commands to import, export, and benchmark the mempool
  • Add new error logging if the block cost fails to compute
  • Add dicts to streamable
  • Add independant Full Node RPC Validation Tool (tools\validate_rpcs.py)
  • Add Revocable CAT support to wallet (Chip 38)
  • Add mempool optimizations and fixes in spend deduplication and singleton fast forward.
  • Add mempool vault fast forward support
  • Add unit tests to cover singleton fast forward dynamics
  • Add new optional block creation algorithm to maximize transactions (set config.yaml full_node:block_creation to 1)
  • Add new config setting for block creation timeout (full_node:block_creation_timeout)
  • Add preparation for new plot format and expected hard fork (Chip 48)
  • Add canonical CLVM serialization requirement after expected hard fork

Changed

  • Harvester<->Farmer protocol change: compute plot filter on the harvester (Chip 48 prep)
  • Farmer<->Node protocol change (Chip 48 prep)
  • Backwards incompatible schema change for mempool fast-forward support
  • Remove problematic coins_added_at_height_cache cache
  • Remove no longer needed item_inclusion_filter in the mempool
  • Significantly speedup mempool manager tests by not forcing them to request unneeded fixtures
  • Refactor and add test for WSM puzzle hash endpoints
  • Removed unneeded call to compute block cost
  • Add puzzle hash generation to action scopes
  • Remove direct secret key access from pool wallet
  • Add ContextManager to FullNodePeers
  • Simplify DB checks in invariant_check_mempool
  • log how long it took to call peak_post_processing_2
  • move chia.types.aliases to chia.server.aliases

... (truncated)

Commits
  • c7aafcf 2.5.5 changelog (#19967)
  • 6821c48 CHIA-3595 Be explicit about falling back to coin_puzzle_hash index in get_uns...
  • b1cc0a5 fast-forward spends can be treated as regular spends (#19889)
  • 5200310 CHIA-3484 Handle items that spend an older ff version when newer lineage exis...
  • 673728c update GUI pin to 4969c3b (#19863)
  • d2e9df3 CHIA-3286 Fix rebasing fast forward spends on new peak (#19857)
  • a5640a8 Update GUI pin to efa99a4 (#19851)
  • a586c5a Update GUI to 1d95322 (#19849)
  • 8b8035f Change minimium node version to 20 and npm version to 10 (#19845)
  • 96d1356 [CHIA-3388] Port test_cat_endpoints in test_wallet_rpc.py to `WalletTestF...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [chia-blockchain](https://github.com/Chia-Network/chia-blockchain) from 2.4.4 to 2.5.5.
- [Release notes](https://github.com/Chia-Network/chia-blockchain/releases)
- [Changelog](https://github.com/Chia-Network/chia-blockchain/blob/2.5.5/CHANGELOG.md)
- [Commits](Chia-Network/chia-blockchain@2.4.4...2.5.5)

---
updated-dependencies:
- dependency-name: chia-blockchain
  dependency-version: 2.5.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added Changed Required label for PR that categorizes merge commit message as "Changed" for changelog dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 27, 2025
@dependabot dependabot bot requested review from altendky and emlowe August 27, 2025 04:37
@socket-security
Copy link

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedchia-blockchain@​2.4.4 ⏵ 2.5.575 +1100100100100

View full report

@socket-security
Copy link

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn Low
chia-blockchain@2.5.5 is a AI-detected potential code anomaly.

Notes: The code is a legitimate KeychainProxy that exchanges requests/responses with a keychain daemon or uses a local Keychain. I found no indicators of deliberately malicious behavior (no obfuscation, no exec/eval, no backdoor). The primary security risk is secret exposure: the proxy reconstructs private keys from entropy/mnemonics received from the daemon, so connecting to an untrusted or compromised daemon (or misconfigured TLS) can lead to private-key disclosure. Also note the provided fragment ends abruptly ('Non'), indicating the snippet may be incomplete — review the full file in the repository before final trust decisions.

Confidence: 1.00

Severity: 0.60

From: ?pypi/chia-blockchain@2.5.5

ℹ Read more on: This package | This alert | What is an AI-detected potential code anomaly?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: An AI system found a low-risk anomaly in this package. It may still be fine to use, but you should check that it is safe before proceeding.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore pypi/chia-blockchain@2.5.5. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2025

Superseded by #462.

@dependabot dependabot bot closed this Sep 30, 2025
@dependabot dependabot bot deleted the dependabot/pip/chia-blockchain-2.5.5 branch September 30, 2025 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Changed Required label for PR that categorizes merge commit message as "Changed" for changelog dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant