Skip to content

fiat v1.19.0

Compare
Choose a tag to compare
@ezimanyi ezimanyi released this 14 May 19:55
· 418 commits to master since this release
e3c7a66

1690430 chore(dependencies): Autobump korkVersion (#685)
eac2cf6 fix(serviceAccounts): limit the number of service accounts to expand (#683)
e3c7a66 config(core): Move redis connection default to base config (#679)

This release includes a change to where fiat will look for the redis connection string if it is not explicitly specified in the redis.connection config property. Prior to this release, the redis connection would be the first non-empty value from:

  • redis.connection
  • services.redis.connection
  • redis://localhost:6379

After this release, redis connection will be the first non-empty value from:

  • redis.connection
  • services.redis.baseUrl
  • redis://localhost:6379

This means that if you were not specifying redis.connection explicitly, and were relying on a value set in services.redis.connection, you will need to update your config to specify your redis connection in either redis.connection or services.redis.baseUrl. This change was made so that configuring redis for fiat` is consistent with how it is configured for other services.