🇮🇳India @keshavv

India
Account created on 2 July 2015, almost 10 years ago
#

Recent comments

🇮🇳India keshavv India

All the given patches and the MR provided by the bot isn’t working. Could someone look into it and create a working patch compatible with Drupal 11?

🇮🇳India keshavv India

Could someone please prepare a release for Drupal 11

🇮🇳India keshavv India

Could someone please proceed with releasing the tag for Drupal 11?

🇮🇳India keshavv India

Is there any update? I am facing the same issue in elastic search when searching for a word containing a special character. I have raised the same problem here as well.
https://www.drupal.org/project/jsonapi_search_api/issues/3495772 🐛 The include parameter does not work with non-base Drupal fields with different types of entities when we have special characters in the fulltext string. Active

🇮🇳India keshavv India

Is there any update? I am facing the same issue when searching for a word containing a special character. I have raised the same problem here as well.
https://www.drupal.org/project/jsonapi_search_api/issues/3495772 🐛 The include parameter does not work with non-base Drupal fields with different types of entities when we have special characters in the fulltext string. Active

🇮🇳India keshavv India

There is no deprecation in this module. Please release it for Drupal 11.

🇮🇳India keshavv India

There is no deprecation in the module, We can release it for Drupal 11.

🇮🇳India keshavv India

Added Drupal 11 Dependency in sub-modules as well. Coull someone please review the patch and prepare the release?
Thanks.

🇮🇳India keshavv India

keshavv changed the visibility of the branch drupal-11-compatibility to hidden.

🇮🇳India keshavv India

The Dev version of this module is ready for Drupal 11 Release. Could someone please release it?

🇮🇳India keshavv India

This module is functioning well with Drupal 11. Could someone please proceed with releasing it?

🇮🇳India keshavv India

I am encountering the same issue on Version 4.1.9. In my local DDEV environment, everything works perfectly without any issues.

However, on the production server hosted on AWS, a blank page is displayed on /sitemap.xml. If I uncheck the option Add styling and sorting to sitemaps in the module settings, then the XML file is displayed.

Could someone please look into this?

🇮🇳India keshavv India

We can ignore the patch added in https://www.drupal.org/project/lightning_workflow/issues/3389692 🐛 Creation of dynamic property Drupal\lightning_scheduler\Time::$_serviceId is deprecated RTBC because it will be addressed by the temporary fix in patch #77 for now.

🇮🇳India keshavv India

The same issue mentioned in https://www.drupal.org/project/lightning_scheduler/issues/3297525#commen... 📌 Automated Drupal 10 compatibility fixes Needs work

🇮🇳India keshavv India

Same issue with the URL Alias section https://www.drupal.org/project/rabbit_hole/issues/3006187 Alias section is missing and don't work. Active

🇮🇳India keshavv India

I have the same issue when I install the module and Enable the Allow these settings to be overridden for individual entities setting in the content configuration.
The Url Alias section is gone from the node add/edit page.
Please please provide the solution.

🇮🇳India keshavv India

I have increased the max length to 1024 characters Because it is stored as a blob in the database.
Please review.

🇮🇳India keshavv India

Given MR !3 Not worked.
I have rerolled the #3 patch and it works well with Drupal 10.1

🇮🇳India keshavv India

The solution is to add the hook to your custom theme and add the offset from the top accordingly.

/**
 * Implements hook_preprocess_views_view_bootstraptable().
 */
function template_preprocess_views_view_bootstraptable(&$variables) {
  $view = $variables['view'];
  $style = $view->style_plugin;
  $options = $style->options;
  if ($options["extension"]['sticky_header'] == 1) {
    if (\Drupal::currentUser()->hasPermission('access toolbar')) {
      // Set the Header offset from the top.
      $variables["attributes"]['data-sticky-header-offset-y'] = 80;
    }
  }
}
🇮🇳India keshavv India

Hello @gdana, Please try this https://www.drupal.org/project/address/issues/3412241#comment-15408612 🐛 Mismatched field definitions after address upgrade Needs review

🇮🇳India keshavv India

Also, the quick solution is to update the definitions. https://www.drupal.org/project/address/issues/3412241#comment-15408612 🐛 Mismatched field definitions after address upgrade Needs review

🇮🇳India keshavv India

Please look into this comment.
https://www.drupal.org/project/address/issues/3412241#comment-15408612 🐛 Mismatched field definitions after address upgrade Needs review

🇮🇳India keshavv India

Here is the solution for the problem
https://www.drupal.org/project/address/issues/3412241#comment-15408612 🐛 Mismatched field definitions after address upgrade Needs review

🇮🇳India keshavv India

@bserem Here is the solution for the same problem.
https://www.drupal.org/project/address/issues/3412241#comment-15408612 🐛 Mismatched field definitions after address upgrade Needs review

🇮🇳India keshavv India

@markdc No, It will not cause the issue, But if you want to fix this warning. Just execute this code using update_hook in a custom module or using the drush ev command

  $entity_type_manager = \Drupal::entityTypeManager();
  $entity_type_manager->clearCachedDefinitions();

  $change_summary = \Drupal::service('entity.definition_update_manager')->getChangeSummary();
  foreach ($change_summary as $entity_type_id => $change_list) {
    $entity_type = $entity_type_manager->getDefinition($entity_type_id);
    \Drupal::entityDefinitionUpdateManager()->installEntityType($entity_type);
  }
🇮🇳India keshavv India

Created patch for Mismatched entity and/or field definitions.
Please review.

🇮🇳India keshavv India

Execute the following code in an update_hook or using drush ev. It will fix all the issues related to the Mismatched field definitions for all entities.

$entity_type_manager = \Drupal::entityTypeManager();
$entity_type_manager->clearCachedDefinitions();

$entity_type_ids = [];
$change_summary = \Drupal::service('entity.definition_update_manager')->getChangeSummary();
foreach ($change_summary as $entity_type_id => $change_list) {
$entity_type = $entity_type_manager->getDefinition($entity_type_id);
\Drupal::entityDefinitionUpdateManager()->installEntityType($entity_type);
$entity_type_ids[] = $entity_type_id;
}

🇮🇳India keshavv India

I have found the same issue on Drupal 10.2.2. The site is hosted on Windows IIS Server.
Is this a critical issue?

🇮🇳India keshavv India

Removed unused variables and fixed issues. Please review the patch.

🇮🇳India keshavv India

I have created the patch and fixed the Dynamic property creating deprecation.
Please review.

🇮🇳India keshavv India

I have created the MR. Please review.

🇮🇳India keshavv India

keshavv made their first commit to this issue’s fork.

🇮🇳India keshavv India

keshavv made their first commit to this issue’s fork.

🇮🇳India keshavv India

I faced the same issue in the date range field and the #75c patch works for me.

Production build 0.71.5 2024