- Issue created by @joelpittet
- Status changed to Needs review
about 1 year ago 12:16am 19 January 2024 - ๐จ๐ฆCanada joelpittet Vancouver
Here's a patch to workaround this issue.
- ๐จ๐ฆCanada joelpittet Vancouver
Ideally it would be nicer to consider the include invalid cache and rebuild the asset or something...
- Status changed to Needs work
about 1 year ago 12:25am 19 January 2024 The Needs Review Queue Bot โ tested this issue.
While you are making the above changes, we recommend that you convert this patch to a merge request โ . Merge requests are preferred over patches. Be sure to hide the old patch files as well. (Converting an issue to a merge request without other contributions to the issue will not receive credit.)
- ๐จ๐ฆCanada joelpittet Vancouver
@djsagar Why move it to 11.x-dev it's a bug, did the policy change or doesn't it get applied to the latest release's branch? I maybe missed a memo
- Status changed to Needs review
about 1 year ago 7:08pm 19 January 2024 - ๐จ๐ฆCanada joelpittet Vancouver
Found the memo :) https://www.drupal.org/node/767608#d8-minor โ
- Merge request !6248Check fixed external assets from being optimized โ (Open) created by joelpittet
- Status changed to Needs work
about 1 year ago 7:33pm 21 January 2024 - ๐บ๐ธUnited States smustgrave
Thanks for reporting. Will need a test case showing the problem.
- ๐จ๐ฆCanada joelpittet Vancouver
@smustgrave any hints at where tests of this nature should go or could extend?
Test Scenario:
- External Library + minified included in the URL = Fail as expected
- External Library + without minified included in the URL = Skipped
- ๐บ๐ธUnited States smustgrave
Maybe in Drupal\FunctionalTests\Asset;
Also doesn't have to be it's own test, could be an additional assertion somewhere.
- ๐บ๐ธUnited States firewaller
Does it make sense to relocate this change to `\Drupal\Core\Asset\CssCollectionOptimizerLazy::optimizeGroup` similar to the JS approach? https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Co...
I am reporting a similar (as it seems) issue when I visit the Resend page of a webform.
It occurs with Claro and Gin themes. When I try with eg. the Bootstrap admin theme, the issue is not present.
These are the errors I get:
1. Only file JavaScript assets can be optimized. in Drupal\Core\Asset\JsOptimizer->optimize() (line 31 of /var/www/html/docroot/core/lib/Drupal/Core/Asset/JsOptimizer.php).
2. Symfony\Component\HttpKernel\Exception\BadRequestHttpException: Invalid filename. in Drupal\system\Controller\AssetControllerBase->getGroup() (line 224 of /var/www/html/docroot/core/modules/system/src/Controller/AssetControllerBase.php).
- ๐บ๐ธUnited States jlancaster
Error logs on a few of my sites were getting filled with warnings and I could not find culprit in backtrace. Applying this patch to core (#23) has resulted in clean logs, finally!
- First commit to issue fork.
- ๐ช๐ธSpain ssantaeugenia
Thanks for this great patch. I've attached the modified patch to also affect JavaScript.
- ๐ฉ๐ชGermany osopolar ๐ฉ๐ช GER ๐
I have the same errors in the log and now I am wondering how to fix it.
@joelpittet You mentioned that you had assets that were
type: external
ANDminified: true
and so you removed the minimized there. We have one such asset, the better_exposed_filters โ library. But I am wondering whyminified: true
shouldn't be set for external libraries. There is a example of both attributes set in documentation โ under minified, with the description
Whether the asset is already minified. Default: false
The asset in your example (https://cdn.ubc.ca/clf/7.0.4/css/ubc-clf-full-bw.min.css) seems to be already minified, so why not setting
minified: true
? - ๐จ๐ฆCanada joelpittet Vancouver
@osopolar thatโs a really good point โ I should know better than to make assumptions about how this works. I was under the impression minified was an action to be taken rather than a descriptor. But youโre right, the docs clearly state otherwise. Looks like Iโve been shooting myself in the foot here! Thanks so much for pointing it out.
That said, I still think the page-cached asset URLs are a problem, regardless of my incorrect understanding. Iโll try to update the issue summary to reflect that.
- ๐ฌ๐งUnited Kingdom catch
Yes minified describes the library, not what to do with it.