diff --git a/CHANGELOG.md b/CHANGELOG.md index 39e8b538..12ef17da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,19 @@ On next release: ## [Unreleased] +## [0.2.1] - 2020-05-07 +### Security +- prevention of guessing package uuid for organization package endpoints (#148) + +### Added +- package versions stats and tweak other charts (#145, #146) + +### Changed +- Cleanup JS; Fix number of days in admin stats view; Force referrer in GA (#143, #144) +- handle package not found exception on app level (#142) +- tuning php-fpm configuration for better resources utilization (Ansible) (#141) +- add curl and pdo_pgsql to required php extensions (#140) + ## [0.2.0] - 2020-05-05 ### Added - Organization members (#56) diff --git a/docker-compose.yml b/docker-compose.yml index 16ff6c9c..87ec0ca2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,7 +16,7 @@ services: app: restart: always - image: buddy/repman:0.2.0 + image: buddy/repman:0.2.1 command: > bash -c 'bin/console cache:clear && bin/console cache:warmup && @@ -31,7 +31,7 @@ services: consumer: restart: always - image: buddy/repman:0.2.0 + image: buddy/repman:0.2.1 command: ['bin/console', 'messenger:consume', 'async', '--limit=500'] env_file: .env.docker volumes: @@ -41,7 +41,7 @@ services: cron: restart: always - image: buddy/repman:0.2.0 + image: buddy/repman:0.2.1 command: > bash -c 'echo "*/5 * * * * /app/bin/console repman:proxy:sync-releases" | crontab - && crond -f -L /dev/stdout' env_file: .env.docker diff --git a/src/Kernel.php b/src/Kernel.php index bde10bc0..3a3eaad7 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends BaseKernel { use MicroKernelTrait; - public const REPMAN_VERSION = '0.2.0'; + public const REPMAN_VERSION = '0.2.1'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function registerBundles(): iterable