Added
- The
api/v1/stats
endpoint to get stats for the user with swagger docs
See the PR or Swagger docs (/api-docs
) for more information.
Fixed
- Redis and DB containers are now being automatically restarted if they fail. Update your
docker-compose.yml
if necessary
services:
dawarich_redis:
image: redis:7.0-alpine
command: redis-server
networks:
- dawarich
volumes:
- shared_data:/var/shared/redis
+ restart: always
dawarich_db:
image: postgres:14.2-alpine
container_name: dawarich_db
volumes:
- db_data:/var/lib/postgresql/data
- shared_data:/var/shared
networks:
- dawarich
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
+ restart: always
💙 This release is supported by James Manolios on Patreon 💙
What's Changed
- Set auto restart to DB & Redis in case it crashes or shuts down. by @sunstep in #177
- Bump stimulus-rails from 1.3.3 to 1.3.4 by @dependabot in #179
- Bump tailwindcss-rails from 2.7.2 to 2.7.3 by @dependabot in #180
- Bump rswag-api from 2.13.0 to 2.14.0 by @dependabot in #181
- Bump rspec-rails from 6.1.3 to 6.1.4 by @dependabot in #182
- Stats API by @Freika in #185
Full Changelog: 0.9.12...0.10.0