[PR #12253] [MERGED] Merge 3.6.x up into 4.0.x #13625

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

📋 Pull Request Information

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

Base: 4.0.xHead: 4.0.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
  • 048e308 Fix DQL JOIN syntax in two test cases
  • f8186b1 Merge pull request #12200 from mpdude/fix-invalid-dql-test-case
  • a939dc2 [GH-9219] Add support for toIterable over mixed or scalar results. (#12187)
  • a9bd00a Improve migration docs from ORM 2 to 3. (#12207)
  • d3e1440 Handle quoted PK columns properly on DBAL 4 (#12208)
  • f1a8ee1 Add deprecation messages for two methods that were only annotated as being @deprecated
  • 64cd5ca Merge remote-tracking branch 'origin/2.20.x' into 3.5.x

📊 Changes

96 files changed (+1326 additions, -506 deletions)

View changed files

📝 .github/workflows/coding-standards.yml (+1 -1)
.github/workflows/composer-lint.yml (+20 -0)
📝 .github/workflows/continuous-integration.yml (+9 -5)
📝 .github/workflows/documentation.yml (+1 -1)
📝 .github/workflows/release-on-milestone-closed.yml (+1 -1)
📝 UPGRADE.md (+74 -0)
📝 composer.json (+43 -23)
📝 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/index.rst (+0 -1)
📝 docs/en/reference/advanced-configuration.rst (+1 -1)
📝 docs/en/reference/architecture.rst (+1 -1)
📝 docs/en/reference/dql-doctrine-query-language.rst (+13 -6)
📝 docs/en/reference/filters.rst (+1 -1)
📝 docs/en/reference/limitations-and-known-issues.rst (+8 -0)
📝 docs/en/reference/second-level-cache.rst (+2 -2)
📝 docs/en/reference/security.rst (+1 -1)

...and 76 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/12253 **Author:** [@greg0ire](https://github.com/greg0ire) **Created:** 10/29/2025 **Status:** ✅ Merged **Merged:** 10/29/2025 **Merged by:** [@greg0ire](https://github.com/greg0ire) **Base:** `4.0.x` ← **Head:** `4.0.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 - [`048e308`](https://github.com/doctrine/orm/commit/048e3082416f99990816f9ec45d50e5dc056462e) Fix DQL JOIN syntax in two test cases - [`f8186b1`](https://github.com/doctrine/orm/commit/f8186b12031d082211aecfbe9945cf27cc60894d) Merge pull request #12200 from mpdude/fix-invalid-dql-test-case - [`a939dc2`](https://github.com/doctrine/orm/commit/a939dc2e0d885fd7861f845c7e20536fbb495ff5) [GH-9219] Add support for toIterable over mixed or scalar results. (#12187) - [`a9bd00a`](https://github.com/doctrine/orm/commit/a9bd00a70bc24e8356c524cf8fa411966ceb8db4) Improve migration docs from ORM 2 to 3. (#12207) - [`d3e1440`](https://github.com/doctrine/orm/commit/d3e144017568f58fcd764c3635ebc4c6a724f50e) Handle quoted PK columns properly on DBAL 4 (#12208) - [`f1a8ee1`](https://github.com/doctrine/orm/commit/f1a8ee175c9e35497e4f1e3e74981a1e8108f2b8) Add deprecation messages for two methods that were only annotated as being `@deprecated` - [`64cd5ca`](https://github.com/doctrine/orm/commit/64cd5cad20ff742c2e4a3a0652eef0e4add11f30) Merge remote-tracking branch 'origin/2.20.x' into 3.5.x ### 📊 Changes **96 files changed** (+1326 additions, -506 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/coding-standards.yml` (+1 -1) ➕ `.github/workflows/composer-lint.yml` (+20 -0) 📝 `.github/workflows/continuous-integration.yml` (+9 -5) 📝 `.github/workflows/documentation.yml` (+1 -1) 📝 `.github/workflows/release-on-milestone-closed.yml` (+1 -1) 📝 `UPGRADE.md` (+74 -0) 📝 `composer.json` (+43 -23) 📝 `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/index.rst` (+0 -1) 📝 `docs/en/reference/advanced-configuration.rst` (+1 -1) 📝 `docs/en/reference/architecture.rst` (+1 -1) 📝 `docs/en/reference/dql-doctrine-query-language.rst` (+13 -6) 📝 `docs/en/reference/filters.rst` (+1 -1) 📝 `docs/en/reference/limitations-and-known-issues.rst` (+8 -0) 📝 `docs/en/reference/second-level-cache.rst` (+2 -2) 📝 `docs/en/reference/security.rst` (+1 -1) _...and 76 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:49 +01:00
admin closed this issue 2026-01-22 16:17:50 +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#13625