Release notes - Scalelite - Version 1.5.1
Features:
IMPORTANT NOTE: If you are using Scalelite Run (the docker-compose deployment), please read the Scalelite Run
section below.
- SL-248: Implemented an API to manage Servers (#924)
- See the
Server API
documentation.
- See the
- SL-252: Implemented an API to manage Tenants (#948)
- See the
Tenant API
documentation.
- See the
- SL-266: Added TenantSettings which provides the ability to customize create/join settings on a per-tenant basis(#940)
- SL-281: Added support for the
insertDocument
API endpoint (#945)- See the
insertDocument
documentation.
- See the
Improvements:
- SL-XX: Minor adjustments to our documentation to improve readability (#951)
Scalelite Run:
For users deploying with the Scalelite Run / docker-compose deployment, there are a couple of adjustments required within the NGINX files to enable the latest features. Please follow the instructions below:
- Navigate to the files:
scalelite-run/data/proxy/nginx/sites.template.scalelite-local
andscalelite-run/data/proxy/nginx/sites.template.scalelite-proxy
- Within both files, you will need to update the final
location /
block
Original Code:
location / {
proxy_pass http://docker-scalelite-api/health_check;
include /etc/nginx/sites-common;
}
Updated Code:
location / {
proxy_pass http://docker-scalelite-api;
include /etc/nginx/sites-common;
}
Notes:
Release tested by contributors [ @farhatahmad, @Mariam05, @scouillard ] composer deployment