[PR #12338] [MERGED] Merge release 3.6.1 into 3.7.x #13704

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/12338
Author: @github-actions[bot]
Created: 1/9/2026
Status: Merged
Merged: 1/9/2026
Merged by: @greg0ire

Base: 3.7.xHead: 3.6.x-merge-up-into-3.7.x_8wGpvJ0m


📝 Commits (10+)

  • 08d6167 Fix result cache examples in docs
  • 2491c4b Merge pull request #12329 from HypeMC/fix-result-cache-examples
  • 0aeddd0 Fix grammatical errors
  • 12116aa Fix docs regarding query hints (#12328)
  • 62477b5 Update branch metadata (#12327)
  • 0f8730a Merge pull request #12331 from greg0ire/a-the
  • 8bdefef Handle int-backed enums for values stored as string values in MySQL ENUM columns (#12275)
  • 8cbd34c Merge pull request #12060 from n0099/patch-1
  • e923bbc Avoid lazy object initialization when initializing read-only property
  • 60d4ea6 Stop mocking EventManager

📊 Changes

19 files changed (+250 additions, -149 deletions)

View changed files

📝 .doctrine-project.json (+6 -51)
📝 README.md (+8 -8)
📝 UPGRADE.md (+1 -1)
📝 docs/en/cookbook/dql-custom-walkers.rst (+39 -2)
docs/en/cookbook/dql-custom-walkers/InterpolateParametersSQLOutputWalker.php (+47 -0)
📝 docs/en/reference/dql-doctrine-query-language.rst (+3 -4)
📝 docs/en/reference/query-builder.rst (+6 -7)
📝 docs/en/reference/second-level-cache.rst (+1 -1)
📝 docs/en/reference/tools.rst (+1 -1)
📝 src/AbstractQuery.php (+1 -1)
📝 src/Internal/Hydration/AbstractHydrator.php (+7 -1)
📝 src/Mapping/MappingException.php (+1 -1)
📝 src/Mapping/PropertyAccessors/ReadonlyAccessor.php (+8 -1)
📝 tests/Tests/ORM/Functional/Ticket/DDC2359Test.php (+1 -1)
📝 tests/Tests/ORM/Functional/Ticket/GH10387Test.php (+1 -1)
tests/Tests/ORM/Functional/Ticket/GH12166/GH12166Test.php (+32 -0)
tests/Tests/ORM/Functional/Ticket/GH12166/LazyEntityWithReadonlyId.php (+43 -0)
📝 tests/Tests/ORM/Functional/Ticket/GH6394Test.php (+1 -1)
📝 tests/Tests/ORM/Hydration/AbstractHydratorTest.php (+43 -67)

📄 Description

Release Notes for 3.6.1

3.6.x bugfix release (patch)

3.6.1

  • Total issues resolved: 0
  • Total pull requests resolved: 5
  • Total contributors: 4

Bug

Documentation


🔄 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/12338 **Author:** [@github-actions[bot]](https://github.com/apps/github-actions) **Created:** 1/9/2026 **Status:** ✅ Merged **Merged:** 1/9/2026 **Merged by:** [@greg0ire](https://github.com/greg0ire) **Base:** `3.7.x` ← **Head:** `3.6.x-merge-up-into-3.7.x_8wGpvJ0m` --- ### 📝 Commits (10+) - [`08d6167`](https://github.com/doctrine/orm/commit/08d61672431f73f636af69cf08abdf63dffbb84f) Fix result cache examples in docs - [`2491c4b`](https://github.com/doctrine/orm/commit/2491c4b20d9439d2770f4e59b2560df0b1fe3652) Merge pull request #12329 from HypeMC/fix-result-cache-examples - [`0aeddd0`](https://github.com/doctrine/orm/commit/0aeddd0592262fa2ca857fda0c255962e429324a) Fix grammatical errors - [`12116aa`](https://github.com/doctrine/orm/commit/12116aa3c22128a513410ebad21f3db3917ffbc1) Fix docs regarding query hints (#12328) - [`62477b5`](https://github.com/doctrine/orm/commit/62477b5d42c55e28930095345d51e5656eb97f42) Update branch metadata (#12327) - [`0f8730a`](https://github.com/doctrine/orm/commit/0f8730a6e5ee331431ae27466b417f7907010acf) Merge pull request #12331 from greg0ire/a-the - [`8bdefef`](https://github.com/doctrine/orm/commit/8bdefef6d195fc6b7840ffe14f38a5ceb3d4fc4c) Handle int-backed enums for values stored as string values in MySQL ENUM columns (#12275) - [`8cbd34c`](https://github.com/doctrine/orm/commit/8cbd34c6668fea94ed5cdb2d19a7aa7a405b30aa) Merge pull request #12060 from n0099/patch-1 - [`e923bbc`](https://github.com/doctrine/orm/commit/e923bbc93222968d65d9490964eaff257b075a19) Avoid lazy object initialization when initializing read-only property - [`60d4ea6`](https://github.com/doctrine/orm/commit/60d4ea694a41ac6f7838394cb0c56224c3e8ff06) Stop mocking EventManager ### 📊 Changes **19 files changed** (+250 additions, -149 deletions) <details> <summary>View changed files</summary> 📝 `.doctrine-project.json` (+6 -51) 📝 `README.md` (+8 -8) 📝 `UPGRADE.md` (+1 -1) 📝 `docs/en/cookbook/dql-custom-walkers.rst` (+39 -2) ➕ `docs/en/cookbook/dql-custom-walkers/InterpolateParametersSQLOutputWalker.php` (+47 -0) 📝 `docs/en/reference/dql-doctrine-query-language.rst` (+3 -4) 📝 `docs/en/reference/query-builder.rst` (+6 -7) 📝 `docs/en/reference/second-level-cache.rst` (+1 -1) 📝 `docs/en/reference/tools.rst` (+1 -1) 📝 `src/AbstractQuery.php` (+1 -1) 📝 `src/Internal/Hydration/AbstractHydrator.php` (+7 -1) 📝 `src/Mapping/MappingException.php` (+1 -1) 📝 `src/Mapping/PropertyAccessors/ReadonlyAccessor.php` (+8 -1) 📝 `tests/Tests/ORM/Functional/Ticket/DDC2359Test.php` (+1 -1) 📝 `tests/Tests/ORM/Functional/Ticket/GH10387Test.php` (+1 -1) ➕ `tests/Tests/ORM/Functional/Ticket/GH12166/GH12166Test.php` (+32 -0) ➕ `tests/Tests/ORM/Functional/Ticket/GH12166/LazyEntityWithReadonlyId.php` (+43 -0) 📝 `tests/Tests/ORM/Functional/Ticket/GH6394Test.php` (+1 -1) 📝 `tests/Tests/ORM/Hydration/AbstractHydratorTest.php` (+43 -67) </details> ### 📄 Description ### Release Notes for [3.6.1](https://github.com/doctrine/orm/milestone/202) 3.6.x bugfix release (patch) ### 3.6.1 - Total issues resolved: **0** - Total pull requests resolved: **5** - Total contributors: **4** #### Bug - [12335: Avoid lazy object initialization when initializing read-only property](https://github.com/doctrine/orm/pull/12335) thanks to @greg0ire - [12275: FIX: Handle int-backed enums for values stored as string values in MySQL ENUM columns](https://github.com/doctrine/orm/pull/12275) thanks to @TheBreaken #### Documentation - [12329: Fix result cache examples in docs](https://github.com/doctrine/orm/pull/12329) thanks to @HypeMC - [12328: Fix docs regarding query hints](https://github.com/doctrine/orm/pull/12328) thanks to @HypeMC - [12060: Update doc `dql-custom-walkers.rst` with an output walker to interpolate parameters into SQL](https://github.com/doctrine/orm/pull/12060) thanks to @n0099 --- <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:13 +01:00
admin closed this issue 2026-01-22 16:18:13 +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#13704