diff --git a/CHANGELOG.md b/CHANGELOG.md index c11faf60..d32bb1b9 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 +* [#1495](https://github.com/shlinkio/shlink/issues/1495) Centralized how routes are configured to support multi-segment slugs. + +### Deprecated +* *Nothing* + +### Removed +* *Nothing* + +### Fixed +* *Nothing* + + ## [3.2.0] - 2022-08-05 ### Added * [#854](https://github.com/shlinkio/shlink/issues/854) Added support for multi-segment custom slugs. diff --git a/config/autoload/url-shortener.local.php.dist b/config/autoload/url-shortener.local.php.dist index 20140a9b..0069ffa9 100644 --- a/config/autoload/url-shortener.local.php.dist +++ b/config/autoload/url-shortener.local.php.dist @@ -12,6 +12,7 @@ return [ 'hostname' => sprintf('localhost:%s', $isSwoole ? '8080' : '8000'), ], 'auto_resolve_titles' => true, +// 'multi_segment_slugs_enabled' => true, ], ];