[PR #12314] [MERGED] Merge 3.6.x into 4.0.x #13681

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/12314
Author: @derrabus
Created: 11/30/2025
Status: Merged
Merged: 11/30/2025
Merged by: @derrabus

Base: 4.0.xHead: 4.0.x


📝 Commits (10+)

  • e38278b Fix eager fetch composite foreign key (#11397)
  • 9f19310 Merge remote-tracking branch 'origin/2.20.x' into 3.5.x
  • 6087054 Merge pull request #12277 from greg0ire/3.5.x
  • e4d7df2 Fix documentation about default values
  • c1becd5 Merge pull request #12281 from greg0ire/document-default-expressions
  • 3df11d5 Merge pull request #12283 from doctrine/2.20.x
  • 6982c8a Merge pull request #12284 from doctrine/3.5.x
  • bc95c7c Fix check for composite foreign key
  • 15537bc Merge pull request #12285 from HypeMC/fix-is-foreign-key-composite
  • 649048f Merge remote-tracking branch 'origin/2.20.x' into 3.5.x

📊 Changes

23 files changed (+123 additions, -58 deletions)

View changed files

📝 .github/workflows/coding-standards.yml (+1 -1)
📝 .github/workflows/composer-lint.yml (+1 -1)
📝 .github/workflows/continuous-integration.yml (+5 -5)
📝 .github/workflows/documentation.yml (+1 -1)
📝 .github/workflows/phpbench.yml (+1 -1)
📝 .github/workflows/release-on-milestone-closed.yml (+1 -1)
📝 .github/workflows/static-analysis.yml (+1 -1)
📝 composer.json (+0 -1)
📝 docs/en/reference/basic-mapping.rst (+15 -0)
docs/en/reference/basic-mapping/DefaultValues.php (+15 -0)
docs/en/reference/basic-mapping/default-values.xml (+9 -0)
📝 docs/en/reference/faq.rst (+0 -24)
📝 phpstan-baseline.neon (+7 -1)
📝 src/Tools/Console/ApplicationCompatibility.php (+2 -1)
📝 src/Tools/SchemaTool.php (+1 -4)
📝 src/UnitOfWork.php (+9 -2)
📝 tests/Tests/Models/EagerFetchedCompositeOneToMany/RootEntity.php (+8 -3)
tests/Tests/Models/EagerFetchedCompositeOneToMany/SecondLevelWithoutCompositePrimaryKey.php (+31 -0)
📝 tests/Tests/ORM/Functional/EagerFetchOneToManyWithCompositeKeyTest.php (+2 -1)
📝 tests/Tests/ORM/Functional/ParserResultSerializationTest.php (+0 -6)

...and 3 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/12314 **Author:** [@derrabus](https://github.com/derrabus) **Created:** 11/30/2025 **Status:** ✅ Merged **Merged:** 11/30/2025 **Merged by:** [@derrabus](https://github.com/derrabus) **Base:** `4.0.x` ← **Head:** `4.0.x` --- ### 📝 Commits (10+) - [`e38278b`](https://github.com/doctrine/orm/commit/e38278bfca0ea258e3f733b6664f4672906e5bd5) Fix eager fetch composite foreign key (#11397) - [`9f19310`](https://github.com/doctrine/orm/commit/9f19310f27d6c808b19f92f3591729cbadeaf66f) Merge remote-tracking branch 'origin/2.20.x' into 3.5.x - [`6087054`](https://github.com/doctrine/orm/commit/608705427ec6ce451987f0032c567e4a7ea5ccc3) Merge pull request #12277 from greg0ire/3.5.x - [`e4d7df2`](https://github.com/doctrine/orm/commit/e4d7df29c237b8bbe37eed0f33b543337948a533) Fix documentation about default values - [`c1becd5`](https://github.com/doctrine/orm/commit/c1becd54e66f841a6361d9d77001fa67fb523541) Merge pull request #12281 from greg0ire/document-default-expressions - [`3df11d5`](https://github.com/doctrine/orm/commit/3df11d518cbdeec50fd591cbe17ebf47eb4ff988) Merge pull request #12283 from doctrine/2.20.x - [`6982c8a`](https://github.com/doctrine/orm/commit/6982c8ab9d65a0913193b5f8f9bd6347d2a00484) Merge pull request #12284 from doctrine/3.5.x - [`bc95c7c`](https://github.com/doctrine/orm/commit/bc95c7c08d56a155c19244b94e08b7fa6e419215) Fix check for composite foreign key - [`15537bc`](https://github.com/doctrine/orm/commit/15537bc2180719bbfbafbcab92d4c6912b566c40) Merge pull request #12285 from HypeMC/fix-is-foreign-key-composite - [`649048f`](https://github.com/doctrine/orm/commit/649048f745c3952c261c7328c2406df38a7ac03f) Merge remote-tracking branch 'origin/2.20.x' into 3.5.x ### 📊 Changes **23 files changed** (+123 additions, -58 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/coding-standards.yml` (+1 -1) 📝 `.github/workflows/composer-lint.yml` (+1 -1) 📝 `.github/workflows/continuous-integration.yml` (+5 -5) 📝 `.github/workflows/documentation.yml` (+1 -1) 📝 `.github/workflows/phpbench.yml` (+1 -1) 📝 `.github/workflows/release-on-milestone-closed.yml` (+1 -1) 📝 `.github/workflows/static-analysis.yml` (+1 -1) 📝 `composer.json` (+0 -1) 📝 `docs/en/reference/basic-mapping.rst` (+15 -0) ➕ `docs/en/reference/basic-mapping/DefaultValues.php` (+15 -0) ➕ `docs/en/reference/basic-mapping/default-values.xml` (+9 -0) 📝 `docs/en/reference/faq.rst` (+0 -24) 📝 `phpstan-baseline.neon` (+7 -1) 📝 `src/Tools/Console/ApplicationCompatibility.php` (+2 -1) 📝 `src/Tools/SchemaTool.php` (+1 -4) 📝 `src/UnitOfWork.php` (+9 -2) 📝 `tests/Tests/Models/EagerFetchedCompositeOneToMany/RootEntity.php` (+8 -3) ➕ `tests/Tests/Models/EagerFetchedCompositeOneToMany/SecondLevelWithoutCompositePrimaryKey.php` (+31 -0) 📝 `tests/Tests/ORM/Functional/EagerFetchOneToManyWithCompositeKeyTest.php` (+2 -1) 📝 `tests/Tests/ORM/Functional/ParserResultSerializationTest.php` (+0 -6) _...and 3 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:18:06 +01:00
admin closed this issue 2026-01-22 16:18:07 +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#13681