Skip to content

Commit

Permalink
Release 1.2.0 (#401)
Browse files Browse the repository at this point in the history
* Release 1.2.0
* Add info about security scanner to readme
  • Loading branch information
akondas authored Feb 1, 2021
1 parent 8ba7299 commit de86f5f
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 9 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,27 @@ On next release:
- [ ] update src/Kernel.php (REPMAN_VERSION)
- [ ] update docker-compose.yml (image tags)

## [Unreleased]
## [1.2.0] - 2021-02-01

### Added
- Support for S3-compatible storage ([#332](https://github.com/repman-io/repman/pull/303), [#366](https://github.com/repman-io/repman/pull/366) thanks @pedro-stanaka)
- Cached adapters to reduce IO/HTTP overhead (storage) ([#373](https://github.com/repman-io/repman/pull/373) thanks @pedro-stanaka)
- Alternative domain separator option (to simplify working with certificates) ([#375](https://github.com/repman-io/repman/pull/375) thanks @jmalinens)
- Error messages for webhook actions (better UX) ([#396](https://github.com/repman-io/repman/pull/396))
- Adding support for self hosted gitlab on custom port ([#398](https://github.com/repman-io/repman/pull/398) thanks @Fahl-Design )

### Changed
- Improve organization invitation with registration/login flow ([#387](https://github.com/repman-io/repman/pull/387) thanks @noniagriconomie)
- Refresh oauth token in runtime without failing message or redirect ([#395](https://github.com/repman-io/repman/pull/395), [#397](https://github.com/repman-io/repman/pull/397))
- Upgrade Symfony to 5.2 ([#379](https://github.com/repman-io/repman/pull/379) and others from dependabot)
- Upgrade Doctrine and other dependencies (gitlab-api, github-api, bitbucket-api, dev tools)

## [1.1.1] - 2020-12-02

## Changed
### Changed
- Direct docker cron logs to file ([#330](https://github.com/repman-io/repman/pull/330))

## Fixed
### Fixed
- Fix alias form constraint (regex) ([#326](https://github.com/repman-io/repman/pull/326))

## [1.1.0] - 2020-10-23
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- allows to create individual access tokens
- supports private package import from **GitHub**, **GitLab** and **Bitbucket** with one click
- REST API
- security scanner (with e-mail reports)

Documentation: [https://repman.io/docs/](https://repman.io/docs/)

Expand Down
16 changes: 14 additions & 2 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# UPGRADE

## UPGRADE FROM 1.1.x to 1.2.x

- 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)

## UPGRADE FROM 1.0.x to 1.1.x

- no additional steps to follow

## UPGRADE FROM 0.6.0 to 1.0.x

- no additional steps to follow

## UPGRADE FROM 0.5.0 to 0.6.0

- if you want to reduce the space taken up by packages marked as unstable you can add a new command to the cron
Expand All @@ -11,5 +24,4 @@

- metadata files now will be full json files (previously it was serialized php array)
- dist file will be saved only with reference in name (to reduce storage size)

Auto upgrade is handled using migrations: [#227](https://github.com/repman-io/repman/pull/227)
- auto upgrade is handled using migrations: [#227](https://github.com/repman-io/repman/pull/227)
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:

app:
<< : *restart_policy
image: buddy/repman:1.1.1
image: buddy/repman:1.2.0
sysctls:
net.core.somaxconn: 2048
command: >
Expand All @@ -39,7 +39,7 @@ services:

consumer:
<< : *restart_policy
image: buddy/repman:1.1.1
image: buddy/repman:1.2.0
command: ['bin/console', 'messenger:consume', 'async', '--limit=500']
env_file: .env.docker
volumes:
Expand All @@ -49,7 +49,7 @@ services:

cron:
<< : *restart_policy
image: buddy/repman:1.1.1
image: buddy/repman:1.2.0
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.1.1';
public const REPMAN_VERSION = '1.2.0';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function getProjectDir(): string
Expand Down

0 comments on commit de86f5f

Please sign in to comment.