-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Merge release 3.5.0 into 4.0.x #12047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…erations in `UnitOfWork#executeInserts()` This logic also brings a minor benefit in reducing the number of times `ListenersInvoker#getSubscribedSystems` is queried. TODOs: * [ ] integration test this - it is expected to reduce the number of `EntityPersister#executeInserts()` calls * [ ] refactor this by creating a new `@internal` class for the batch, and perhaps batch via a generator * [ ] reduce amount of repeated `getClassMetadata()` calls * [ ] reduce overall size of `UnitOfWork` code, instead of increasing it
…o batch `INSERT`s
The `SequenceGenerator` is potentially used for PostgreSQL table auto-generated fields, but the `SequenceGenerator` is not a **POST**-insert generator. Because the `SequenceGenerator` is used in the middle of `INSERT` operations performed by persisters, we cannot rely on it in batching operations: disabling it, so we get a green test suite on PostgreSQL. This change makes `GH10531Test` pass on PostgreSQL: see #10531
…erated-id entities As noted by @bendavies Ref: #11978 (comment)
…-of-inserts-with-given-ids #11977 implemented batching of `INSERT` operations in `UnitOfWork#executeInserts()` so that `EntityPersister#executeInserts()` calls are reduced
Add console completion for entityName param of orm:mapping:describe c…
do not register the legacy proxy class name resolver with enabled native lazy ghost
Merge branch 3.4.x into 3.5.x
…Exception Only throw PHP 8.4 requirement exception when enabling native lazy objects.
Merge 3.4.x up into 3.5.x
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release Notes for 3.5.0
Feature release (minor)
3.5.0
Improvement
INSERToperations inUnitOfWork#executeInserts()so thatEntityPersister#executeInserts()calls are reduced thanks to @OcramiusDeprecation
New Feature