content/operate/rs/release-notes/legacy-release-notes/rs-5-4-14-february-2020.md
Redis Enterprise Software (RS) 5.4.14 is now available. This release bundles OSS Redis 5.0.7 and includes new Redis Modules versions, several enhancements, and bug fixes.
Follow these [instructions]({{< relref "/operate/rs/installing-upgrading/upgrading" >}}) for upgrading to RS 5.4.14 from RS 5.0.2 and above.
Added the ability to retrieve license details with a REST API command. Now you can get your license details from the admin console (settings > general) or from the REST API command:
GET https://localhost:9443/v1/license
The REST API response includes:
Added Flush command in the UI console for Active-Active databases. The command flushes the data from all participating clusters.
Updated rladmin upgrade module command so module arguments are optional. When you upgrade the module for a database, you can either:
keep_module_args flag to use the existing argumentsExamples:
To upgrade the version of RediSearch to 10017 and replace the module arguments:
rladmin upgrade module db_name MyAwesomeDB module_name ft version 10017 module_args "PARTITIONS AUTO"
To upgrade RedisBloom to version 10100 and remove the current module arguments:
rladmin upgrade module db_name MyDB module_name bf version 10100 module_args " "
To upgrade RedisJSON to 10002 and use the current module arguments:
rladmin upgrade module db_name MyDB module_name ReJSON version 10002 keep_module_args
Upgraded js-yaml version to 3.13.1, and lodash version to 4.17.15 (RS31819)
Added an alert for actions that run for an extended period of time. For example, a notification is sent when an action like updating database property runs for more than a configurable threshold. Default value is set to 24 hours.
keep_redis_version option instead of keep_current_version.The API for removing a node is updated in RS 5.4.2 or higher. The API call must include json data and the "Content-Type: application/json" header. For example:
curl -X POST -H "Content-Type: application/json" -i -k -u [email protected]:password https://localhost:9443/v1/nodes/3/actions/remove --data "{}"