Releases: strapi/strapi-plugin-seo
v2.0.2
🚀 Strapi SEO Plugin vNext - "All the Right Moves (for Google and Beyond)" 🎉
SEO warriors, this update’s for you! We’ve buffed up the checks to keep your alt tags, keywords, and meta content on point! Get ready for smoother workflows with polished OpenGraph, social previews, and Canonical URL checks to ensure every post shines.
Bugs? Squashed. Performance? Boosted. Google? Prepped for your greatness. 🌟
🔍 Get optimized with: smarter meta validations, friendly UI tweaks, and keyword mastery! Time to make those search engines dance!
metaSocial
repeatable component has been replaced by an openGraph
component for more consistency.
In order to migrate, create a src/components/shared/open-graph.json
component file with the following content:
{
"collectionName": "components_shared_open_graphs",
"info": {
"displayName": "openGraph",
"icon": "project-diagram"
},
"options": {},
"attributes": {
"og:title": {
"type": "string",
"required": true,
"maxLength": 70
},
"og:description": {
"type": "string",
"maxLength": 200,
"required": true
},
"og:image": {
"allowedTypes": [
"images"
],
"type": "media",
"multiple": false
},
"og:url": {
"type": "string",
"required": false
},
"og:type": {
"type": "string",
"required": false
}
}
}
and add the component to your src/components/shared/seo.json
file :
...
"openGraph": {
"type": "component",
"repeatable": false,
"component": "shared.open-graph"
},
...
v2.0.0
What's Changed
- Convert SEO plugin to strapi v5 by @jhoward1994 in #76
- fix: plugin sdk deps by @jhoward1994 in #80
New Contributors
- @jhoward1994 made their first contribution in #76
Full Changelog: v1.9.9...v2.0.0