[PR #12241] [MERGED] Merge 2.20.x up into 3.5.x #13611

Open
opened 2026-01-22 16:17:46 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/12241
Author: @greg0ire
Created: 10/27/2025
Status: Merged
Merged: 10/27/2025
Merged by: @greg0ire

Base: 3.5.xHead: 3.5.x


📝 Commits (10+)

  • 3e34b8e Add a test to reproduce the issue
  • e7e2fef Fix creation of the count query, to that a new RSM is being created
  • 4372595 Fix CS
  • 7a59281 Fix collection filtering API for IN/NOT IN comparisons that require type conversions
  • 9d680a6 Do not eagerly set metadata from ResolveTargetEntityListener (#12174)
  • 9a55cf4 Merge pull request #12190 from mpdude/criteria-matching-custom-type-retry
  • 96f9b29 Merge pull request #12233 from alisolphp/fix-docs-typos-2-20
  • f71956f Use docs-builder to generate ORM docs
  • aa62efa Adapt to latest coding standard
  • c1047b3 Merge pull request #12216 from paulinevos/docs-builder

📊 Changes

53 files changed (+521 additions, -215 deletions)

View changed files

📝 .github/workflows/coding-standards.yml (+1 -1)
📝 .github/workflows/continuous-integration.yml (+5 -5)
📝 .github/workflows/documentation.yml (+1 -1)
📝 .github/workflows/release-on-milestone-closed.yml (+1 -1)
📝 composer.json (+3 -0)
📝 docs/.gitignore (+1 -1)
docs/Makefile (+0 -24)
📝 docs/README.md (+4 -8)
📝 docs/composer.json (+2 -3)
📝 docs/en/cookbook/dql-custom-walkers.rst (+11 -3)
📝 docs/en/reference/advanced-configuration.rst (+1 -1)
📝 docs/en/reference/architecture.rst (+1 -1)
📝 docs/en/reference/filters.rst (+1 -1)
📝 docs/en/reference/second-level-cache.rst (+2 -2)
📝 docs/en/reference/security.rst (+1 -1)
📝 phpstan-baseline.neon (+0 -12)
📝 src/Persisters/Collection/ManyToManyPersister.php (+8 -7)
📝 src/Persisters/Collection/OneToManyPersister.php (+3 -3)
📝 src/Persisters/Entity/BasicEntityPersister.php (+63 -27)
📝 src/Persisters/Entity/EntityPersister.php (+1 -1)

...and 33 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/12241 **Author:** [@greg0ire](https://github.com/greg0ire) **Created:** 10/27/2025 **Status:** ✅ Merged **Merged:** 10/27/2025 **Merged by:** [@greg0ire](https://github.com/greg0ire) **Base:** `3.5.x` ← **Head:** `3.5.x` --- ### 📝 Commits (10+) - [`3e34b8e`](https://github.com/doctrine/orm/commit/3e34b8e86ae599dd851d508c24c1f09c8e81aa5c) Add a test to reproduce the issue - [`e7e2fef`](https://github.com/doctrine/orm/commit/e7e2fef56c632ee5d31dcc5ac8ef74288097dc26) Fix creation of the count query, to that a new RSM is being created - [`4372595`](https://github.com/doctrine/orm/commit/437259556c89528495a1e209b9cace382b5fbf37) Fix CS - [`7a59281`](https://github.com/doctrine/orm/commit/7a5928115745a47dde054b12647d425a7ffcb5d7) Fix collection filtering API for IN/NOT IN comparisons that require type conversions - [`9d680a6`](https://github.com/doctrine/orm/commit/9d680a6de4308839fda21095e2f0a84a736b2705) Do not eagerly set metadata from `ResolveTargetEntityListener` (#12174) - [`9a55cf4`](https://github.com/doctrine/orm/commit/9a55cf4f305fde5a79de8a26a3b65c460aacbd8f) Merge pull request #12190 from mpdude/criteria-matching-custom-type-retry - [`96f9b29`](https://github.com/doctrine/orm/commit/96f9b29573e1a547310a974aa4d3ddf60078c3fb) Merge pull request #12233 from alisolphp/fix-docs-typos-2-20 - [`f71956f`](https://github.com/doctrine/orm/commit/f71956f001a4b025297f43a8ad7709ff447f893f) Use `docs-builder` to generate ORM docs - [`aa62efa`](https://github.com/doctrine/orm/commit/aa62efa30a96d6b6a214adb9bd71c71212c4fe86) Adapt to latest coding standard - [`c1047b3`](https://github.com/doctrine/orm/commit/c1047b30e3d0b93e3dd8e9b8d45218efad507f12) Merge pull request #12216 from paulinevos/docs-builder ### 📊 Changes **53 files changed** (+521 additions, -215 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/coding-standards.yml` (+1 -1) 📝 `.github/workflows/continuous-integration.yml` (+5 -5) 📝 `.github/workflows/documentation.yml` (+1 -1) 📝 `.github/workflows/release-on-milestone-closed.yml` (+1 -1) 📝 `composer.json` (+3 -0) 📝 `docs/.gitignore` (+1 -1) ➖ `docs/Makefile` (+0 -24) 📝 `docs/README.md` (+4 -8) 📝 `docs/composer.json` (+2 -3) 📝 `docs/en/cookbook/dql-custom-walkers.rst` (+11 -3) 📝 `docs/en/reference/advanced-configuration.rst` (+1 -1) 📝 `docs/en/reference/architecture.rst` (+1 -1) 📝 `docs/en/reference/filters.rst` (+1 -1) 📝 `docs/en/reference/second-level-cache.rst` (+2 -2) 📝 `docs/en/reference/security.rst` (+1 -1) 📝 `phpstan-baseline.neon` (+0 -12) 📝 `src/Persisters/Collection/ManyToManyPersister.php` (+8 -7) 📝 `src/Persisters/Collection/OneToManyPersister.php` (+3 -3) 📝 `src/Persisters/Entity/BasicEntityPersister.php` (+63 -27) 📝 `src/Persisters/Entity/EntityPersister.php` (+1 -1) _...and 33 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 16:17:46 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#13611