Releases: streetwriters/notesnook-sync-server
v1.0-beta.1
Note: This is a beta version and NOT ready for use in production.
Changes
- Fix a bunch of errors due to the renamed environment variables
- The containers now use named volumes instead of creating a folder in $HOME. (If you prefer the old config, you'll have to use a custom
docker-compose.yml
) - Add health checks for
mongodb
andminio
services
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-beta.1/docker-compose.yml
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-beta.1/.env
docker compose up
Make sure everything is up and running:
docker ps
All the above services must show (healthy)
in the output.
v1.0-beta.0
Note: This is a beta version and NOT ready for use in production.
Changes
- Monograph frontend/backend is now also self hostable (i.e. you can publish & view monographs from your local instance)
Sodium.Core
has been replaced withGeralt
as it was unmaintained and didn't work on ARM devices. This is a non-breaking change.IDENTITY_SERVER_DOMAIN
has been renamed toAUTH_SERVER_PUBLIC_URL
and it now expects a full URL instead of just the host.NOTESNOOK_APP_HOST
has been renamed toNOTESNOOK_APP_PUBLIC_URL
S3_SERVICE_URL
has been renamed toATTACHMENTS_SERVER_PUBLIC_URL
- New variable
MONOGRAPH_PUBLIC_URL
has been added
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-beta.0/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:6264/api/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.8
Note: This is an alpha version and NOT ready for use in production.
Changes
- Use protocol from
S3_SERVICE_URL
instead of defaulting to HTTP (for presigned S3 URLs)
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.8/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.7
Note: This is an alpha version and NOT ready for use in production.
Changes
- Fix issue where attachments weren't uploading from any of the clients
- Remove unnecessary environment variables from
.env
file - Remove support for 3rd-party S3 providers
.env
now has defaults for a lot more variables- Add Docker service to validate & make sure all required environment variables are defined
- Use
wget
for healthcheck instead ofcurl
(thanks to @Inferno_geek from Discord) - Fix port 80 is denied instead the container (#5)
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.7/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.6
Note: This is an alpha version and NOT ready for use in production.
Changes
/version
endpoint now returns more information (instance name, server id etc.)- You can now use
DISABLE_ACCOUNT_CREATION
environment variable to disable new signups
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.6/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.5
Note: This is an alpha version and NOT ready for use in production.
Changes
- Email is automatically confirmed for accounts created on a self hosted instance
- 2FA by email is automatically enabled for accounts created on a self hosted instance
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.5/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.4
Note: This is an alpha version and NOT ready for use in production.
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.4/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.3
Note: This is an alpha version and NOT ready for use in production.
Test drive
wget https://raw.githubusercontent.com/streetwriters/notesnook-sync-server/v1.0-alpha.3/docker-compose.yml
docker compose up
Make sure everything is up and running:
curl http://localhost:5264/health
curl http://localhost:8264/health
curl http://localhost:7264/health
All of the above must return Healthy
.
v1.0-alpha.2
docker: publish with TrimMode set to partial
v1.0-alpha.1
Not ready for testing or use yet.