diff --git a/docs/home/release-notes.md b/docs/home/release-notes.md index aa349fa..da29dd0 100644 --- a/docs/home/release-notes.md +++ b/docs/home/release-notes.md @@ -57,6 +57,42 @@ ... ``` +- Sensitive SMTP configuration parameters have been moved to a separate secret. + + Old configuration: + + ```yaml + core: + files: + "/var/lib/genestack/properties/application.yaml": + mail: + smtp: + host: "" + port: "" + security: "" + username: "" + password: "" + ``` + + New configuration: + + ```yaml + core: + files: + "/var/lib/genestack/properties/application.yaml": + mail: + smtp: + host: "" + port: "" + security: "" + secretFiles: + "/var/lib/genestack/properties/secret.yaml": + mail: + smtp: + username: "" + password: "" + ``` + - Increased memory requirements for loading large cell expression datasets. - When loading datasets with millions of cells, increase memory limits for the `func-job` service to prevent out-of-memory errors.