- Status changed to Needs review
almost 2 years ago 7:35am 3 February 2023 - Status changed to Needs work
almost 2 years ago 11:47am 3 February 2023 - Status changed to Needs review
almost 2 years ago 8:10am 6 February 2023 - 🇮🇳India mrinalini9 New Delhi
Fixing custom commands failure issues in patch #140, please review it.
- Status changed to Needs work
almost 2 years ago 8:58am 6 February 2023 - Status changed to Needs review
almost 2 years ago 10:54am 6 February 2023 The last submitted patch, 143: 2345611-143.patch, failed testing. View results →
- Status changed to Needs work
over 1 year ago 11:01am 19 May 2023 - 🇨🇭Switzerland znerol
Needs a reroll for 11.x-dev. I'll stick around for reviews here. Find me in the sky lounge at DDD vienna if there are any questions.
Also desperately needs an issue summary update.
- last update
over 1 year ago 28,507 pass, 3 fail - 🇨🇭Switzerland znerol
-
+++ b/core/lib/Drupal/Core/Entity/ContentEntityBase.php @@ -618,6 +618,58 @@ protected function getTranslatedField($name, $langcode) { + * Only the first delta can be accessed with this method.
This is not true. There is an optional $delta argument.
-
+++ b/core/lib/Drupal/Core/Entity/ContentEntityBase.php @@ -618,6 +618,58 @@ protected function getTranslatedField($name, $langcode) { + public function getFieldValue($field_name, $property, $delta = 0) {
Let's add type hints here.
-
- last update
over 1 year ago 29,933 pass, 3 fail - 🇮🇳India _utsavsharma
Rerolled for 11.x as mentioned in #147.
Tried to address pointer 2 in #151. - last update
over 1 year ago 29,933 pass, 3 fail - 🇮🇳India vsujeetkumar Delhi
This is not true. There is an optional $delta argument.
In #151.1, True $delta argument is optional, As per my understanding, Either we should update the comment like
By default the first delta can be accessed with this method.
or we can remove this line from the comment.
- 🇬🇧United Kingdom catch
These are two of very few database queries executed on an authenticated page request when dynamic page cache is a cache hit, if we load the user it will usually come from the cache.
See for example https://grafana.prod.cluster.tag1.io/explore?panes=%7B%22taO%22:%7B%22datasource%22:%22tempo%22,%22queries%22:%5B%7B%22query%22:%2269f4dbd9a3acdf0e49e11acc90cbae81%22,%22queryType%22:%22traceql%22,%22refId%22:%22A%22,%22datasource%22:%7B%22type%22:%22tempo%22,%22uid%22:%22tempo%22%7D,%22limit%22:20%7D%5D,%22range%22:%7B%22from%22:%22now-6h%22,%22to%22:%22now%22%7D%7D%7D&schemaVersion=1&orgId=1 this trace from the Umami authenticated performance test. Would only be a small optimization from that perspective but worth doing I think, so tagging with performance for that.