Skip to content

Releases: strapi/strapi-plugin-seo

v1.7.7

04 Nov 13:40
Compare
Choose a tag to compare

🔥 feat(longtail-keywords): Add support for detecting multi-word substring #25 by @Binabh

1.7.5

13 Sep 09:32
Compare
Choose a tag to compare

📙 Language

  • feat(i18n): adding Brazilian Portuguese base translation @RamiroMonte

Fix Issue #6

28 Feb 14:58
Compare
Choose a tag to compare

v1.7.1

14 Feb 10:17
Compare
Choose a tag to compare

Replace Alert component by ContentBox in settings page

v1.7.0

14 Feb 09:25
Compare
Choose a tag to compare

Globally improve the UI and UX of the plugin.

  • Now automatically imports the shared.seo and shared.meta-social components in your project when visiting the setting page for the first time.
  • UI & UX improvements

v1.6.3

01 Feb 13:36
Compare
Choose a tag to compare

Add the build command in the README.md

v1.6.2

28 Jan 14:42
Compare
Choose a tag to compare

Use selective dependency resolutions to have ansi-regex@^5.0.1 which doesn't have any vulnerability.

v1.6.1

28 Jan 13:52
Compare
Choose a tag to compare

This release replaces the remove-markdown package to was being used to count words in rich text fields (markdown) for security purposes

The plugin is now using showdown that convert the markdown to HTML to easily count words.

const html = converter.makeHtml(richtext);
  const wordsNotCleaned = html
    .replace(/<\/?[^>]+(>|$)/g, '')
    .replace('\n', ' ')
    .split(' ');
  const words = wordsNotCleaned.filter((x) => {
    return x !== '' && x !== '\n';
  });

v1.6.0

27 Jan 11:22
Compare
Choose a tag to compare
1.6.0

v1.4.0

27 Jan 11:02
Compare
Choose a tag to compare
1.4.0