- Issue created by @Chris Burge
- Merge request !36Removed disused markdown_library value from markdown.settings β (Open) created by Chris Burge
When upgrading from 8.x-1.x to 8.x-2.x, the schema of markdown.settings
changed. See
#3142418: Support multiple libraries per plugin β
.
8.x-1.x:
markdown.settings:
type: config_object
label: 'Markdown settings'
mapping:
markdown_library:
type: string
label: 'Markdown library'
8.x-2.x:
# Markdown Settings.
markdown.settings:
type: config_object
label: 'Markdown Settings'
mapping:
default_parser:
type: string
markdown_post_update_8950()
sets the new default_parser
value; however it fails to remove the removed markdown_parser
value.
See https://git.drupalcode.org/project/markdown/-/blame/8.x-2.x/markdown.pos...
This results in a schema validation error:
array (
'markdown.settings:markdown_library' => 'missing schema',
)
Add a post_update function to remove the markdown_library
value, if it exists, from markdown.settings
.
Open MR.
None.
None.
None. (Data model already changed.)
Active
3.0
Code