From cbdc5f121e6e97b20773663d56855616ed47f118 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Fri, 7 Jan 2022 14:04:21 +0100 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 17 +++++++++++++++++ config/autoload/entity-manager.local.php.dist | 1 - config/test/test_config.global.php | 2 -- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 311479ed..2831c237 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org). +## [Unreleased] +### Added +* *Nothing* + +### Changed +* *Nothing* + +### Deprecated +* *Nothing* + +### Removed +* *Nothing* + +### Fixed +* [#1293](https://github.com/shlinkio/shlink/issues/1293) Fixed error when trying to create/import short URLs with a too long title. + + ## [2.10.1] - 2021-12-21 ### Added * *Nothing* diff --git a/config/autoload/entity-manager.local.php.dist b/config/autoload/entity-manager.local.php.dist index ef5cabf8..0624aa51 100644 --- a/config/autoload/entity-manager.local.php.dist +++ b/config/autoload/entity-manager.local.php.dist @@ -11,7 +11,6 @@ return [ 'driver' => 'pdo_mysql', 'host' => 'shlink_db_mysql', 'dbname' => 'shlink', - 'charset' => 'utf8', ], ], diff --git a/config/test/test_config.global.php b/config/test/test_config.global.php index 0898c732..f1a983fe 100644 --- a/config/test/test_config.global.php +++ b/config/test/test_config.global.php @@ -55,7 +55,6 @@ $buildDbConnection = static function (): array { 'user' => 'postgres', 'password' => 'root', 'dbname' => 'shlink_test', - 'charset' => 'utf8', ], 'mssql' => [ 'driver' => 'pdo_sqlsrv', @@ -71,7 +70,6 @@ $buildDbConnection = static function (): array { 'user' => 'root', 'password' => 'root', 'dbname' => 'shlink_test', - 'charset' => 'utf8', ], }; };