mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 07:33:58 -06:00
Update changelog
This commit is contained in:
parent
1d155298c1
commit
71807e698c
17
CHANGELOG.md
17
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).
|
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
|
||||||
|
* [#1715](https://github.com/shlinkio/shlink/issues/1715) Fix short URL creation/edition allowing long URLs without schema. Now a validation error is thrown.
|
||||||
|
|
||||||
|
|
||||||
## [3.5.2] - 2023-02-16
|
## [3.5.2] - 2023-02-16
|
||||||
### Added
|
### Added
|
||||||
* *Nothing*
|
* *Nothing*
|
||||||
|
@ -99,6 +99,12 @@ class ShortUrlCreationTest extends TestCase
|
|||||||
DeviceType::IOS->value => ' ',
|
DeviceType::IOS->value => ' ',
|
||||||
],
|
],
|
||||||
]];
|
]];
|
||||||
|
yield [[
|
||||||
|
ShortUrlInputFilter::LONG_URL => 'https://foo',
|
||||||
|
ShortUrlInputFilter::DEVICE_LONG_URLS => [
|
||||||
|
DeviceType::ANDROID->value => 'missing_schema',
|
||||||
|
],
|
||||||
|
]];
|
||||||
yield [[
|
yield [[
|
||||||
ShortUrlInputFilter::LONG_URL => 'https://foo',
|
ShortUrlInputFilter::LONG_URL => 'https://foo',
|
||||||
ShortUrlInputFilter::DEVICE_LONG_URLS => [
|
ShortUrlInputFilter::DEVICE_LONG_URLS => [
|
||||||
|
Loading…
Reference in New Issue
Block a user