Skip to content

Releases: strapi/strapi-plugin-seo

v2.0.2

30 Oct 09:03
Compare
Choose a tag to compare

🚀 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!

⚠️ Beware before upgrading to this version, the 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

09 Oct 12:35
9378992
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.9.9...v2.0.0

v1.9.8

22 Nov 15:06
Compare
Choose a tag to compare

fix(package.json): remove engine constraints @sjoukedv

1.9.7

22 Nov 14:32
Compare
Choose a tag to compare

1.9.5

06 Sep 12:47
Compare
Choose a tag to compare
  • metaImage is no more required

v1.9.4

31 Aug 13:47
Compare
Choose a tag to compare

Solves #39, #49, #47, #33

1.9.2

19 Jun 06:25
Compare
Choose a tag to compare
  • Closes #42: export 'NotFound' (imported as 'NotFound') was not found in '@strapi/helper-plugin' by removing it basically.

  • Closes #43: special (repeated) characters are not escaped and are interpreted by escaping the trimmed string.

  • Closes #44: Fix: add wrap=wrap prop to component @dgrebb 🐛

1.9.1

08 Jun 12:10
Compare
Choose a tag to compare

1.9.0

25 May 14:13
Compare
Choose a tag to compare
  • Permission system to prevent specific Roles to access the settings page

v1.8.0

16 Feb 15:46
Compare
Choose a tag to compare
1.8.0