Обновить RELEASES.md

This commit is contained in:
2026-04-23 06:59:43 +00:00
parent b561412102
commit 3c729c08ff
+35
View File
@@ -1,5 +1,40 @@
# Releases
## v0.5.0 - PostgreSQL 17 integration
### Added
- PostgreSQL 17 service in `docker-compose.yml`.
- Persistent volume `remnawave_pgdata`.
- DB env variables in `.env.example`:
- `POSTGRES_DB`
- `POSTGRES_USER`
- `POSTGRES_PASSWORD`
- `DATABASE_URL`
### Changed
- Application storage migrated from in-memory to PostgreSQL for:
- users
- purchases
- admin servers
- Auto DB initialization on startup (`CREATE TABLE IF NOT EXISTS`).
- Admin user is upserted from `ADMIN_EMAIL`/`ADMIN_PASSWORD` at startup.
- Documentation updated with PostgreSQL section.
---
## v0.4.0 - Default port changed to 3050
### Changed
- Application default bind port changed from `8080` to `3050`.
- Docker and docs updated to use `3050`:
- `main.go` default `APP_ADDR` -> `:3050`
- `docker-compose.yml` port mapping -> `3050:3050`
- `Dockerfile` `EXPOSE 3050`
- `install.sh`/`reinstall.sh` URL output -> `http://localhost:3050`
- `README.md` URLs updated to `http://localhost:3050`
---
## v0.3.0 - Ubuntu one-click lifecycle
### Added