From ac6a6759e1deeff35f8d5da6aba05c3b1c872f55 Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Mon, 27 Apr 2026 10:26:05 +0200 Subject: [PATCH 1/2] chore(deps): allow type resolver to 2.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 81d92ba2..7b049a79 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "symfony/lock": "^6.4 || ^7.0", "symfony/property-info": "^6.4 || ^7.0", "symfony/property-access": "^6.4 || ^7.0", - "phpdocumentor/type-resolver": "^1.7", + "phpdocumentor/type-resolver": "^1.7 || ^2.0", "phpstan/phpdoc-parser": "^1.13 || ^2.0" }, "require-dev": { From 7f3f8cc3d5eb469fd63d98640af1cf3f93954ec4 Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Mon, 27 Apr 2026 10:27:25 +0200 Subject: [PATCH 2/2] chore(release): update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb81bca..af4423df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [9.5.1] - 2026-04-27 +### Fixed +- Allow type resolver deps in 2.0 + ## [9.5.0] - 2025-09-18 ### Added - [GH#260](https://github.com/jolicode/automapper/pull/260) Add support for identifiers detection and comparison of objects, this allow mappers to detect if objects are equals based on some properties, which allow better deep merge / update of collections.