Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/develop-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
"CHIADOG_BRANCH=dev"
"CHIA_BRANCH=2.5.2"
"BLADEBIT_BRANCH=master"
"MADMAX_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.7.0.giga37"
"PLOTMAN_BRANCH=compress"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris:develop
Expand Down Expand Up @@ -90,9 +90,9 @@ jobs:
"UBUNTU_VER=noble"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"GIGAHORSE_BRANCH=v2.5.5.giga36"
"GIGAHORSE_BRANCH=v2.7.0.giga37"
"CHIA_BRANCH=2.5.2"
"MADMAX_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.7.0.giga37"
"PLOTMAN_BRANCH=compress"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:develop
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
"MACHINARIS_STREAM=latest"
"CHIA_BRANCH=2.5.2"
"BLADEBIT_BRANCH=master"
"MADMAX_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.7.0.giga37"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris:latest
${{ secrets.DOCKERHUB_USERNAME }}/machinaris:v${{ github.event.inputs.version }}
Expand Down Expand Up @@ -90,8 +90,8 @@ jobs:
build-args: |
"UBUNTU_VER=noble"
"MACHINARIS_STREAM=latest"
"GIGAHORSE_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.5.5.giga36"
"GIGAHORSE_BRANCH=v2.7.0.giga37"
"MADMAX_BRANCH=v2.7.0.giga37"
"CHIA_BRANCH=2.5.2"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
"CHIA_BRANCH=2.5.2"
"PLOTMAN_BRANCH=development"
"BLADEBIT_BRANCH=master"
"MADMAX_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.7.0.giga37"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris:test
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris:test
Expand Down Expand Up @@ -90,9 +90,9 @@ jobs:
"UBUNTU_VER=noble"
"MACHINARIS_STREAM=test"
"CHIADOG_BRANCH=dev"
"GIGAHORSE_BRANCH=v2.5.5.giga36"
"GIGAHORSE_BRANCH=v2.7.0.giga37"
"CHIA_BRANCH=2.5.2"
"MADMAX_BRANCH=v2.5.5.giga36"
"MADMAX_BRANCH=v2.7.0.giga37"
"PLOTMAN_BRANCH=development"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:test
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.7.0] - 2026-04-06
### Added
### Changed
### Updated
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.7.0) to v2.7.0 - misc improvements, see their release notes.
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.7.0.giga37) - NOTE, This is *untested* with Machinaris as I no longer run Gigahorse.

## [2.6.0] - 2026-02-16
### Added
### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.0
2.7.0
4 changes: 2 additions & 2 deletions api/commands/chia_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,9 @@
for node_id in node_ids:
try:
if blockchain in BLOCKCHAINS_USING_PEER_CMD: # These now support only the 'peer' command
proc = Popen("{0} peer --add-connection {1} full_node".format(chia_binary, node_id), cwd=working_dir, stdout=PIPE, stderr=PIPE, shell=True)
proc = Popen("{0} peer --remove-connection {1} full_node".format(chia_binary, node_id), cwd=working_dir, stdout=PIPE, stderr=PIPE, shell=True)

Check failure

Code scanning / CodeQL

Uncontrolled command line Critical

This command line depends on a
user-provided value
.
else:
proc = Popen("{0} show --add-connection {1}".format(chia_binary, node_id), cwd=working_dir, stdout=PIPE, stderr=PIPE, shell=True)
proc = Popen("{0} show --remove-connection {1}".format(chia_binary, node_id), cwd=working_dir, stdout=PIPE, stderr=PIPE, shell=True)

Check failure

Code scanning / CodeQL

Uncontrolled command line Critical

This command line depends on a
user-provided value
.
try:
outs, errs = proc.communicate(timeout=5)
if errs:
Expand Down
4 changes: 2 additions & 2 deletions scripts/forks/chia_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ else
echo "Installing Chia CUDA binaries on ${arch_name}..."
cd /tmp
if [[ "${arch_name}" == "x86_64" ]]; then
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.6.0/chia-blockchain-cli_2.6.0-1_amd64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.0/chia-blockchain-cli_2.7.0-1_amd64.deb
apt-get install ./chia-blockchain-cli*.deb
else
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.6.0/chia-blockchain-cli_2.6.0-1_arm64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.0/chia-blockchain-cli_2.7.0-1_arm64.deb
apt-get install ./chia-blockchain-cli*.deb
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/forks/gigahorse_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else
tar -xzf chia-gigahorse-farmer*
else
# Max broke ARM64 support in v2.4.4.giga36, have to downgrade to 2.4.1
if [[ "${GIGAHORSE_BRANCH}" == "v2.5.5.giga36" ]]; then
if [[ "${GIGAHORSE_BRANCH}" == "v2.7.0.giga37" ]]; then
GIGAHORSE_BRANCH="v2.4.1.giga36" # old version
GIGAHORSE_VERSION=${GIGAHORSE_BRANCH#?}
fi
Expand Down
Loading