Skip to content
Merged
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
36 changes: 36 additions & 0 deletions docs/home/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<SMTP_HOST>"
port: "<SMTP_PORT>"
security: "<SMTP_SECURITY>"
username: "<SMTP_USER>"
password: "<SMTP_PASSWORD>"
```

New configuration:

```yaml
core:
files:
"/var/lib/genestack/properties/application.yaml":
mail:
smtp:
host: "<SMTP_HOST>"
port: "<SMTP_PORT>"
security: "<SMTP_SECURITY>"
secretFiles:
"/var/lib/genestack/properties/secret.yaml":
mail:
smtp:
username: "<SMTP_USER>"
password: "<SMTP_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.

Expand Down