From 3cc224e7b5a6ed113a2005572e9ffc007738bf96 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Tue, 2 Mar 2021 16:00:46 +0100 Subject: [PATCH] Release 1.2.2 (#424) --- CHANGELOG.md | 10 ++++++++++ UPGRADE.md | 1 + docker-compose.yml | 6 +++--- src/Kernel.php | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81b50455..93d0cb92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ On next release: - [ ] update src/Kernel.php (REPMAN_VERSION) - [ ] update docker-compose.yml (image tags) +## [1.2.2] - 2021-03-02 +### Fixed +- Fix: composer 9999999-dev issue ([#422](https://github.com/repman-io/repman/pull/422) thanks @slappyslap) +- Make `var/cache` ephemeral ([#420](https://github.com/repman-io/repman/pull/420)) +- Add async-aws/ses to composer ([#418](https://github.com/repman-io/repman/pull/418) thanks @nandogameiro) +- Enable http2 for composer v2 ([#416](https://github.com/repman-io/repman/pull/416)) +- Test compatibility issues and small deprecation fix ([#414](https://github.com/repman-io/repman/pull/414) thanks @pedro-stanaka) +- Remove old metadata files when sync proxy metadata ([#412](https://github.com/repman-io/repman/pull/412)) +- Remove PostgreSQL exposed port from docker-compose.yml ([#410](https://github.com/repman-io/repman/pull/410)) + ## [1.2.1] - 2021-02-03 ### Fixed diff --git a/UPGRADE.md b/UPGRADE.md index 7f0e4a26..e45f72e7 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -4,6 +4,7 @@ - symfony version has been raised to `5.2`, so if you have made any custom changes, we encourage you to read their upgrade guide [UPGRADE-5.2.md](https://github.com/symfony/symfony/blob/master/UPGRADE-5.2.md) +- clear cache (when using docker-compose.yml, more details in [#417](https://github.com/repman-io/repman/issues/417)) ## UPGRADE FROM 1.0.x to 1.1.x diff --git a/docker-compose.yml b/docker-compose.yml index bfa9a405..40e898e5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -18,7 +18,7 @@ services: app: << : *restart_policy - image: buddy/repman:1.2.1 + image: buddy/repman:1.2.2 sysctls: net.core.somaxconn: 2048 command: > @@ -37,7 +37,7 @@ services: consumer: << : *restart_policy - image: buddy/repman:1.2.1 + image: buddy/repman:1.2.2 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.1 + image: buddy/repman:1.2.2 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 25ffdedf..90771fdb 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.1'; + public const REPMAN_VERSION = '1.2.2'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function getProjectDir(): string