Skip to content

Commit

Permalink
Release 1.3.4 (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored Jun 25, 2021
1 parent c019854 commit dca0aff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ On next release:
- [ ] update src/Kernel.php (REPMAN_VERSION)
- [ ] update docker-compose.yml (image tags)

## [1.3.4] - 2021-06-25
### Security
- Upgrade flysystem to 1.1.4 - fix [CVE-2021-32708](https://github.com/thephpleague/flysystem/security/advisories/GHSA-9f46-5r25-5wfm)

## [1.3.3] - 2021-05-31
### Fixed
- Fix package dependencies duplication ([#472](https://github.com/repman-io/repman/pull/472))
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.3.3
image: buddy/repman:1.3.4
sysctls:
net.core.somaxconn: 2048
command: >
Expand All @@ -37,7 +37,7 @@ services:

consumer:
<< : *restart_policy
image: buddy/repman:1.3.3
image: buddy/repman:1.3.4
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.3.3
image: buddy/repman:1.3.4
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.3.3';
public const REPMAN_VERSION = '1.3.4';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function getProjectDir(): string
Expand Down

0 comments on commit dca0aff

Please sign in to comment.