From 6bc500b8e0897b106f8af8fb13246f20727cf135 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Wed, 22 Feb 2023 09:48:48 +0100 Subject: [PATCH] Amend change log --- CHANGELOG.rst | 37 ++++++++++++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 34879ce..bbbd7ff 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,14 +4,23 @@ Changelog This file contains a brief summary of new features and dependency changes or releases, in reverse chronological order. -.. note:: - Backward incompatible (breaking) changes will only be introduced in major - versions. +1.7.0 (2023-02-22) +------------------ +Features +^^^^^^^^ + +* Rework the main application entry point to provide more options for launching + the application. + + +Improvements +^^^^^^^^^^^^ + +* Improve OpenAPI spec documentation. +* Amend contract tests for product API. -1.7.0 (2023-XX-XX) ------------------- Bug Fixes ^^^^^^^^^ @@ -20,6 +29,24 @@ Bug Fixes * Fixed response code for 400 error. +Breaking Changes +^^^^^^^^^^^^^^^^ + +* Separate pagination ``links`` in responses to a separate response attribute. +* Rename ``pages`` response attribute to ``pagination``. + + +Trivial/Internal Changes +^^^^^^^^^^^^^^^^^^^^^^^^ + +* Separate Python code linting into a separate workflow. +* Extract database seeder into a separate module. +* Move ``db`` definition to ``app`` module. +* Use SQLAlchemy 2.x way to declare ORM models. +* Separate Categories into a separate ORM model. +* Separate Brands into a separate ORM model. + + ----