-
Notifications
You must be signed in to change notification settings - Fork 456
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
release: v1.24.0 #3102
Merged
Merged
release: v1.24.0 #3102
Conversation
This file contains 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
…ugin-connection-resolver perf: refactor `PluginConnectionResolver` to only fetch plugins once
…-resolvers-cleanup
…e implementing Type does not have a description defined on the field already
…e registered that have the same fieldName, toType and ConnectionTypeName - add isConnectionField identifier to fields registered via WPConnectionType - fix typo in docblock
fix: recursion issues with interfaces
…leanup chore: prepare ConnectionResolver classes for v2 backport
…ling refactor: improve `loader` handling in `AbstractConnectionResolver`
…t_query_amount feat: improve query amount handling in `AbstractConnectionResolver`
…red_args refactor: add `AbstractConnectionResolver::get_unfiltered_args()` public getter
refactor: add `AbstractConnectionResolver::prepare_page_info()`and only instantiate once
…backport/deprecate-camelcased # Conflicts: # src/Data/Connection/AbstractConnectionResolver.php
…amelcased refactor: deprecate `camelCase` methods in `AbstractConnectionResolver` for `snake_case` equivalents
…leanup chore: connection resolvers cleanup
…perfluous-whitespace # Conflicts: # src/Data/Connection/AbstractConnectionResolver.php
chore: lint for superfluous whitespace
This was referenced Apr 26, 2024
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
Upgrade Notice
The AbstractConnectionResolver has undergone some refactoring. Some methods using
snakeCase
have been deprecated in favor of theircamel_case
equivalent. While we've preserved the deprecated methods to prevent breaking changes, you might begin seeing PHP notices about the deprecations. Any codebase that extends theAbstractConnectionResolver
class should update the following methods:getSource
->get_source
getContext
->get_context
getInfo
->get_info
getShouldExecute
->get_should_execute
getLoader
->get_loader
New Features
Chores / Bugfixes