Skip to content

Commit

Permalink
Release 1.2.2 (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored Mar 2, 2021
1 parent 77fb968 commit 3cc224e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3cc224e

Please sign in to comment.