Skip to content

Commit 1157ca7

Browse files
Claudius-Maginificentlklimekclaude
authored
build(dashmate): update Tenderdash image to v1.6.0 (#3940)
Co-authored-by: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1653b89 commit 1157ca7

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

packages/dashmate/configs/defaults/getBaseConfigFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ export default function getBaseConfigFactory() {
358358
tenderdash: {
359359
mode: 'full',
360360
docker: {
361-
image: 'dashpay/tenderdash:1.6-dev.1',
361+
image: 'dashpay/tenderdash:1.6.0',
362362
},
363363
p2p: {
364364
host: '0.0.0.0',

packages/dashmate/configs/getConfigFileMigrationsFactory.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1523,6 +1523,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
15231523
'4.0.0-rc.3': (configFile) => {
15241524
Object.entries(configFile.configs)
15251525
.forEach(([, options]) => {
1526+
// Bump the default Tenderdash image to the 1.6.0 line. Pulled DRY from
1527+
// the base config so it tracks whatever the base config pins.
1528+
// Keyed at the next release (4.0.0-rc.3), not the already-released
1529+
// rc.2: the runner skips fromVersion===toVersion, so a key equal to
1530+
// an operator's current version never fires.
1531+
options.platform.drive.tenderdash.docker.image = base.get('platform.drive.tenderdash.docker.image');
1532+
15261533
// Add responseHeaders toggle to rate limiter (default true so existing
15271534
// deployments keep emitting RateLimit-* headers; rs-dapi-client depends
15281535
// on RateLimit-Reset to apply precise ban windows instead of the

0 commit comments

Comments
 (0)