From ea4a3e026c5735ce1e7a53fbe881778eb02418ba Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Mon, 31 May 2021 13:34:26 +0200 Subject: [PATCH] Release 1.3.3 (#475) --- CHANGELOG.md | 9 +++++++++ docker-compose.yml | 6 +++--- src/Kernel.php | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cbc5d94..9e984289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ On next release: - [ ] update src/Kernel.php (REPMAN_VERSION) - [ ] update docker-compose.yml (image tags) +## [1.3.3] - 2021-05-31 +### Fixed +- Fix package dependencies duplication ([#472](https://github.com/repman-io/repman/pull/472)) + +### Changed +- Remove Link entity from package read model ([#473](https://github.com/repman-io/repman/pull/473)) +- Reduce sql query executions for organization token ([#474](https://github.com/repman-io/repman/pull/474)) +- Update dependencies (dependabot updates) + ## [1.3.2] - 2021-05-20 ### Security - Update Symfony to 5.2.9 - fix [CVE-2021-21424](https://symfony.com/blog/cve-2021-21424-prevent-user-enumeration-in-authentication-mechanisms) diff --git a/docker-compose.yml b/docker-compose.yml index 40c4d2d7..65e7b995 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: app: << : *restart_policy - image: buddy/repman:1.3.2 + image: buddy/repman:1.3.3 sysctls: net.core.somaxconn: 2048 command: > @@ -37,7 +37,7 @@ services: consumer: << : *restart_policy - image: buddy/repman:1.3.2 + image: buddy/repman:1.3.3 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.3.2 + image: buddy/repman:1.3.3 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 adfe79c3..d64aa86f 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends BaseKernel { use MicroKernelTrait; - public const REPMAN_VERSION = '1.3.2'; + public const REPMAN_VERSION = '1.3.3'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function getProjectDir(): string