From 96357a57d2e8a19fd41bdd0901e6cc8b55205f8e Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 8 Jul 2019 18:51:20 +0200 Subject: [PATCH] Updated changelog --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26a7b7ff..bb9d03e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,46 @@ 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 + +* [#411](https://github.com/shlinkio/shlink/issues/411) Added new `meta` property on the `ShortUrl` REST API model. + + These endpoints are affected and include the new property when suitable: + + * `GET /short-urls` - List short URLs. + * `GET /short-urls/shorten` - Create a short URL (for integrations). + * `GET /short-urls/{shortCode}` - Get one short URL. + * `POST /short-urls` - Create short URL. + + The property includes the values `validSince`, `validUntil` and `maxVisits` in a single object. All of them are nullable. + + ```json + { + "validSince": "2016-01-01T00:00:00+02:00", + "validUntil": null, + "maxVisits": 100 + } + ``` + +#### Changed + +* *Nothing* + +### Deprecated + +* *Nothing* + +#### Removed + +* *Nothing* + +#### Fixed + +* *Nothing* + + ## 1.17.0 - 2019-05-13 #### Added