TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,35 @@
.. include:: /Includes.rst.txt
.. _deprecation-88432:
========================================================
Deprecation: #88432 - Replaced md5.js with an AMD module
========================================================
See :issue:`88432`
Description
===========
The file :file:`md5.js` used to generate a MD5 hash in JavaScript has been marked as deprecated and replaced by an AMD module
:js:`TYPO3/CMS/Backend/Hashing/Md5`.
Impact
======
Using the global function `MD5()` will trigger a deprecation log entry in the browser's console.
Affected Installations
======================
All installations using third party extensions that use :js:`MD5()` of :file:`md5.js` are affected.
Migration
=========
Load the AMD module :js:`TYPO3/CMS/Backend/Hashing/Md5` via RequireJS as `Md5` and call :js:`Md5.hash()` instead.
.. index:: Backend, JavaScript, NotScanned, ext:backend