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
2 changes: 1 addition & 1 deletion packages/dashmate/configs/defaults/getBaseConfigFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export default function getBaseConfigFactory() {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:1.6-dev.1',
image: 'dashpay/tenderdash:1.6.0',
},
p2p: {
host: '0.0.0.0',
Expand Down
7 changes: 7 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1523,6 +1523,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
'4.0.0-rc.3': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
// Bump the default Tenderdash image to the 1.6.0 line. Pulled DRY from
// the base config so it tracks whatever the base config pins.
// Keyed at the next release (4.0.0-rc.3), not the already-released
// rc.2: the runner skips fromVersion===toVersion, so a key equal to
// an operator's current version never fires.
options.platform.drive.tenderdash.docker.image = base.get('platform.drive.tenderdash.docker.image');
Comment thread
lklimek marked this conversation as resolved.

// Add responseHeaders toggle to rate limiter (default true so existing
// deployments keep emitting RateLimit-* headers; rs-dapi-client depends
// on RateLimit-Reset to apply precise ban windows instead of the
Expand Down
Loading