By wim leers on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.5.x
Introduced in version:
8.5.0
Issue links:
Description:
The processed property on text fields was marked non-internal and its implementation was fixed to ensure it carried the cacheability metadata of the processed text (i.e. after passing the user-entered text through the filters of a Text Format).
The consequences for REST module's responses (in all formats: json, xml and hal_json):
- Before
-
[ 'value' => 'The name "llama" was adopted by European settlers from native Peruvians.', 'format' => 'plain_text', ], - After
-
[ 'value' => 'The name "llama" was adopted by European settlers from native Peruvians.', 'format' => 'plain_text', 'processed' => "<p>The name "llama" was adopted by European settlers from native Peruvians.</p>\n", ],
Impacts:
Module developers