0.12.3
版本发布时间: 2024-09-03 02:20:06
Freika/dawarich最新发布版本:0.13.0(2024-09-04 00:24:13)
Added
- Resource limits to docke-compose.yml file to prevent server overload. Feel free to adjust the limits to your needs.
dawarich_app:
image: freikin/dawarich:latest
container_name: dawarich_app
...
depends_on:
- dawarich_db
- dawarich_redis
+ deploy:
+ resources:
+ limits:
+ cpus: '0.50' # Limit CPU usage to 50% of one core
+ memory: '2G' # Limit memory usage to 2GB
dawarich_sidekiq:
image: freikin/dawarich:latest
container_name: dawarich_sidekiq
...
depends_on:
- dawarich_db
- dawarich_redis
- dawarich_app
+ deploy:
+ resources:
+ limits:
+ cpus: '0.50' # Limit CPU usage to 50% of one core
+ memory: '2G' # Limit memory usage to 2GB
Fixed
- Importing geodata from Immich will now not throw an error in the end of the process
Changed
- A notification about an existing import with the same name will now show the import name
- Export file now also will contain
raw_dat
field for each point. This field contains the original data that was imported to the application.
💙 This release is supported by James Manolios on Patreon 💙
What's Changed
- Bump data_migrate from 9.4.0 to 9.4.2 by @dependabot in https://github.com/Freika/dawarich/pull/206
- Bump rswag-ui from 2.13.0 to 2.14.0 by @dependabot in https://github.com/Freika/dawarich/pull/202
- Bump rswag-specs from 2.13.0 to 2.14.0 by @dependabot in https://github.com/Freika/dawarich/pull/203
- Bump chartkick from 5.0.7 to 5.1.0 by @dependabot in https://github.com/Freika/dawarich/pull/204
- Bump pundit from 2.3.2 to 2.4.0 by @dependabot in https://github.com/Freika/dawarich/pull/205
- Add resource limits to docker-compose.yml file and fix Immich import bug by @Freika in https://github.com/Freika/dawarich/pull/208
Full Changelog: https://github.com/Freika/dawarich/compare/0.12.2...0.12.3