Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 5.1.2 #3053

Merged
merged 5 commits into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
strategy:
matrix:
php-version: [ '7.2', '8.0' ]
fail-fast: false
name: PHPUnit
runs-on: ubuntu-latest
steps:
Expand All @@ -23,6 +24,6 @@ jobs:
sudo composer self-update -q
- name: Install dependencies
run: |
sudo COMPOSER_MEMORY_LIMIT=-1 COMPOSER_PROCESS_TIMEOUT=60 composer update --prefer-dist --no-progress
sudo COMPOSER_MEMORY_LIMIT=-1 COMPOSER_PROCESS_TIMEOUT=60 composer update --prefer-dist --no-progress --no-scripts
- name: run PHP Unit
run: ./vendor/bin/phpunit
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changelog
=========

## 5.1.2

Released: 2021-01-19

### 🐛 Bug fixes

- Bugfix Fix `maximum_listing_select` in `config.yaml` for Relation (ionutlip, [#3052](https://github.com/bolt/core/pull/3052))
- Fix wrong subtask called in Makefile for Docker (fsidobre, [#3048](https://github.com/bolt/core/pull/3048))
- Fix date format to save PM time (fsidobre, [#3046](https://github.com/bolt/core/pull/3046))
- Fix Romanian transliteration (bobdenotter, [#3043](https://github.com/bolt/core/pull/3043))

### 🛠️ Miscellaneous

- Users overview page Dutch translations (nestordedios, [#3049](https://github.com/bolt/core/pull/3049))
- Update `package-lock.json` (Joossensei, [#3045](https://github.com/bolt/core/pull/3045))
- New feature: Allow empty value for select form controls, based on user setting. (vlad-ghita, [#3041](https://github.com/bolt/core/pull/3041))
- Update serializable interface (bobvandevijver, [#3039](https://github.com/bolt/core/pull/3039))
- Prepare release 5.1.1 (bobdenotter, [#3036](https://github.com/bolt/core/pull/3036))
- Minor cleanup on `services.yaml` (bobdenotter, [#3035](https://github.com/bolt/core/pull/3035))

### ⚙️ Code Quality / Developer Experience

- Typehint `QuestionHelper` (make PhpStan happy) (bobdenotter, [#3044](https://github.com/bolt/core/pull/3044))
- Fixing logo alt (bobdenotter, [#3042](https://github.com/bolt/core/pull/3042))



## 5.1.1

Released: 2021-01-05
Expand Down
5 changes: 0 additions & 5 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ parameters:
message: '#Property Bolt\\Entity\\(.*)::\$id is never written, only read#'
path: %currentWorkingDirectory%/src/Entity/*

# False positive: Call to an undefined method Symfony\Component\HttpFoundation\Session\SessionInterface::getFlashBag().
-
message: '#Symfony\\Component\\HttpFoundation\\Session\\SessionInterface::getFlashBag#'
path: %currentWorkingDirectory%/src/Security/AuthenticationEntryPointRedirector

includes:
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-doctrine/extension.neon
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class Version
* Stable — 3.0.0
* Development — 3.1.0 alpha 1
*/
public const VERSION = '5.1.1';
public const VERSION = '5.1.2';
public const CODENAME = '';

/**
Expand Down