Skip to content

Commit

Permalink
Release 0.2.1 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored May 7, 2020
1 parent 67fc6d5 commit 2610199
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ On next release:

## [Unreleased]

## [0.2.1] - 2020-05-07
### Security
- prevention of guessing package uuid for organization package endpoints (#148)

### Added
- package versions stats and tweak other charts (#145, #146)

### Changed
- Cleanup JS; Fix number of days in admin stats view; Force referrer in GA (#143, #144)
- handle package not found exception on app level (#142)
- tuning php-fpm configuration for better resources utilization (Ansible) (#141)
- add curl and pdo_pgsql to required php extensions (#140)

## [0.2.0] - 2020-05-05
### Added
- Organization members (#56)
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

app:
restart: always
image: buddy/repman:0.2.0
image: buddy/repman:0.2.1
command: >
bash -c 'bin/console cache:clear &&
bin/console cache:warmup &&
Expand All @@ -31,7 +31,7 @@ services:

consumer:
restart: always
image: buddy/repman:0.2.0
image: buddy/repman:0.2.1
command: ['bin/console', 'messenger:consume', 'async', '--limit=500']
env_file: .env.docker
volumes:
Expand All @@ -41,7 +41,7 @@ services:

cron:
restart: always
image: buddy/repman:0.2.0
image: buddy/repman:0.2.1
command: >
bash -c 'echo "*/5 * * * * /app/bin/console repman:proxy:sync-releases" | crontab - && crond -f -L /dev/stdout'
env_file: .env.docker
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 = '0.2.0';
public const REPMAN_VERSION = '0.2.1';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function registerBundles(): iterable
Expand Down

0 comments on commit 2610199

Please sign in to comment.