From 5594856342ad397fbfb35fb13426f65e61cf9281 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Sun, 23 Aug 2020 14:20:26 -0300 Subject: [PATCH] 3.5.0 --- CHANGELOG.md | 15 +++++++++++++++ UPGRADE-3.x.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 606297fb..0ac6630a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.5.0](https://github.com/hackzilla/TicketBundle/compare/3.4.0...3.5.0) - 2020-08-26 + + * minor #175 Add configuration for Dependabot (phansys) + * bugfix #176 Explicitly require "doctrine/common" (phansys) + * minor #172 Update `README.md` (phansys) + * minor #170 Update coding standard rules (phansys) + * minor #169 Update "Version Matrix" section at `README.md` (phansys) + * minor #168 Add status badges for GitHub actions (phansys) + * minor #166 Add "friendsofsymfony/user-bundle" to development dependencies (phansys) + * minor #165 Narrow API marking classes as final (phansys) + * minor #164 Lint "*.xlf" files (phansys) + * minor #163 [#150] add Dutch translation (bghosts) + * minor #162 Fix some PHP CS rules (phansys) + * minor #161 Configure SCA through GH actions (phansys) + ## [3.4.0](https://github.com/hackzilla/TicketBundle/compare/3.3.1...3.4.0) - 2020-07-03 * bugfix #160 Fix bad call at `TicketManager::getTicketList()` (phansys) diff --git a/UPGRADE-3.x.md b/UPGRADE-3.x.md index 752ffc04..d1007f4e 100644 --- a/UPGRADE-3.x.md +++ b/UPGRADE-3.x.md @@ -1,3 +1,33 @@ +UPGRADE FROM 3.4 to 3.5 +======================= + +## API narrowing + + * Extending the following classes is deprecated since they were + marked as final. + + - `Hackzilla\Bundle\TicketBundle\Command\AutoClosingCommand`; + - `Hackzilla\Bundle\TicketBundle\Command\TicketManagerCommand`; + - `Hackzilla\Bundle\TicketBundle\Component\TicketFeatures`; + - `Hackzilla\Bundle\TicketBundle\Controller\TicketAttachmentController`; + - `Hackzilla\Bundle\TicketBundle\Controller\TicketController`; + - `Hackzilla\Bundle\TicketBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass`; + - `Hackzilla\Bundle\TicketBundle\DependencyInjection\Configuration`; + - `Hackzilla\Bundle\TicketBundle\DependencyInjection\HackzillaTicketExtension`; + - `Hackzilla\Bundle\TicketBundle\Event\TicketEvent`; + - `Hackzilla\Bundle\TicketBundle\EventListener\FileSubscriber`; + - `Hackzilla\Bundle\TicketBundle\EventListener\UserLoad`; + - `Hackzilla\Bundle\TicketBundle\Form\DataTransformer\StatusTransformer`; + - `Hackzilla\Bundle\TicketBundle\Manager\TicketManager`; + - `Hackzilla\Bundle\TicketBundle\Manager\UserManager`; + - `Hackzilla\Bundle\TicketBundle\TicketRole`; + - `Hackzilla\Bundle\TicketBundle\Type\PriorityType`; + - `Hackzilla\Bundle\TicketBundle\Type\StatusType`; + - `Hackzilla\Bundle\TicketBundle\Type\TicketMessageType`; + - `Hackzilla\Bundle\TicketBundle\Type\TicketType`; + - `Hackzilla\Bundle\TicketBundle\TwigExtension\TicketFeatureExtension`; + - `Hackzilla\Bundle\TicketBundle\TwigExtension\TicketGlobalExtension`. + UPGRADE FROM 3.3 to 3.4 =======================