Skip to content

Commit dca0aff

Browse files
authored
Release 1.3.4 (#489)
1 parent c019854 commit dca0aff

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ On next release:
1010
- [ ] update src/Kernel.php (REPMAN_VERSION)
1111
- [ ] update docker-compose.yml (image tags)
1212

13+
## [1.3.4] - 2021-06-25
14+
### Security
15+
- Upgrade flysystem to 1.1.4 - fix [CVE-2021-32708](https://github.com/thephpleague/flysystem/security/advisories/GHSA-9f46-5r25-5wfm)
16+
1317
## [1.3.3] - 2021-05-31
1418
### Fixed
1519
- Fix package dependencies duplication ([#472](https://github.com/repman-io/repman/pull/472))

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818

1919
app:
2020
<< : *restart_policy
21-
image: buddy/repman:1.3.3
21+
image: buddy/repman:1.3.4
2222
sysctls:
2323
net.core.somaxconn: 2048
2424
command: >
@@ -37,7 +37,7 @@ services:
3737

3838
consumer:
3939
<< : *restart_policy
40-
image: buddy/repman:1.3.3
40+
image: buddy/repman:1.3.4
4141
command: ['bin/console', 'messenger:consume', 'async', '--limit=500']
4242
env_file: .env.docker
4343
volumes:
@@ -48,7 +48,7 @@ services:
4848

4949
cron:
5050
<< : *restart_policy
51-
image: buddy/repman:1.3.3
51+
image: buddy/repman:1.3.4
5252
command: ['crond', '-f', '-L', '/app/var/log/cron.log']
5353
env_file: .env.docker
5454
volumes:

src/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Kernel extends BaseKernel
1515
{
1616
use MicroKernelTrait;
1717

18-
public const REPMAN_VERSION = '1.3.3';
18+
public const REPMAN_VERSION = '1.3.4';
1919
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';
2020

2121
public function getProjectDir(): string

0 commit comments

Comments
 (0)