Bug #89086
closedThird party extension requireJS modules are cached by browsers despite version update
100%
Description
An Extension that contains requireJS modules in Resources/Public/JavaScript and includes a module in the backend using
$this->getPageRenderer()->loadRequireJsModule('TYPO3/CMS/ExtensionName/JavascriptModule');
can not update the JavascriptModule on extension updates, as the TYPO3 PageRenderer calculates a cache busting hash (for all requireJS modules)
from the current TYPO3_version and project path. Third party extension version are not taken into account.
That means a cache bust parameter, e.g "abcdefghijklmnopqrstuvwxyz1234567890abcdef" would be applies to the url:
/typo3conf/ext/extension_name/Resources/Public/JavaScript/JavascriptModule.js?bust=abcdefghijklmnopqrstuvwxyz1234567890abcdef
…but that hash is not changed when the Extension Version changes.
Note: For performance reasons only the extension version number should be taken into account. (File modification times would only be important for development scenarios where a separate development cache parameter override is available).
Updated by Gerrit Code Review about 5 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61625
Updated by Gerrit Code Review about 5 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61625
Updated by Gerrit Code Review about 5 years ago
Patch set 1 for branch 9.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61635
Updated by Benjamin Franzke about 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 8f7ccb3daaf5d71c409ecb6d12e20afa4f8db710.
Updated by Sybille Peters almost 4 years ago
- Related to Bug #91886: No automatic reload of changed static assets (JavaScript, css, images) in TYPO3 backend added