From 8c16fd94f07e069ab90f3e5ef573a6efa3e7c604 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Wed, 28 Apr 2021 09:22:34 +0200 Subject: [PATCH] Release 1.3.0 (#445) --- CHANGELOG.md | 8 ++++++++ docker-compose.yml | 6 +++--- src/Kernel.php | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93d0cb92..d606c1b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ On next release: - [ ] update src/Kernel.php (REPMAN_VERSION) - [ ] update docker-compose.yml (image tags) +## [1.3.0] - 2021-04-28 +### Security +- Update composer - fix [GHSA-h5h8-pc6h-jvvx](https://github.com/composer/composer/security/advisories/GHSA-h5h8-pc6h-jvvx) + +### Added +- Dependency/dependant tracking ([#426](https://github.com/repman-io/repman/pull/426) thanks @giggsey) + + ## [1.2.2] - 2021-03-02 ### Fixed - Fix: composer 9999999-dev issue ([#422](https://github.com/repman-io/repman/pull/422) thanks @slappyslap) diff --git a/docker-compose.yml b/docker-compose.yml index 40e898e5..133805d2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: app: << : *restart_policy - image: buddy/repman:1.2.2 + image: buddy/repman:1.3.0 sysctls: net.core.somaxconn: 2048 command: > @@ -37,7 +37,7 @@ services: consumer: << : *restart_policy - image: buddy/repman:1.2.2 + image: buddy/repman:1.3.0 command: ['bin/console', 'messenger:consume', 'async', '--limit=500'] env_file: .env.docker volumes: @@ -48,7 +48,7 @@ services: cron: << : *restart_policy - image: buddy/repman:1.2.2 + image: buddy/repman:1.3.0 command: ['crond', '-f', '-L', '/app/var/log/cron.log'] env_file: .env.docker volumes: diff --git a/src/Kernel.php b/src/Kernel.php index 90771fdb..b648d681 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends BaseKernel { use MicroKernelTrait; - public const REPMAN_VERSION = '1.2.2'; + public const REPMAN_VERSION = '1.3.0'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function getProjectDir(): string