henokmikre β created an issue.
henokmikre β made their first commit to this issueβs fork.
Passes for D10 and fails for D11, as expected.
henokmikre β created an issue.
This was resolved as part of another issue.
henokmikre β created an issue.
henokmikre β created an issue.
@Nick, according to
https://www.drupal.org/node/3221870 β
, the correct validator is \Drupal\views\Plugin\views\argument_validator\Entity
, so this patch should work for you. Here is one way to get this working: first ensure your composer.json is valid before adding this patch. Then add the following to the top of your "repositories" line:
{
"type": "package",
"package": {
"name": "drupal/media_taxonomy_filter",
"version": "dev-8.x-2.x",
"type": "drupal-module",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/media_taxonomy_filter.git",
"reference": "b0352483691533d69605b35e17491336fea4b2f1"
}
}
},
Then add this in the "require" section: "drupal/media_taxonomy_filter": "dev-8.x-2.x",
. You should then be able to run composer install
.
henokmikre β made their first commit to this issueβs fork.
A workaround is to just add a blank .module file in the module.
Update composer requirements.
Fix Drupal 10 compatibility.
henokmikre β created an issue.
Noticed this as well in D10. Appears to be due to #3201242 β .
To include merge request as patch in composer.json:
"extra": {
"patches": {
"drupal/convert_bundles": {
"https://drupal.org/i/3340329: Add explicit access check": "https://git.drupalcode.org/project/convert_bundles/-/merge_requests/9.patch"
}
}
}
henokmikre β made their first commit to this issueβs fork.