> ## Documentation Index
> Fetch the complete documentation index at: https://yuno-3979e326-fix-create-subscription-card-usage.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog Overview

> Stay up to date with the latest changes across all Yuno SDKs and plugins

export const ChangelogBadge = ({type}) => {
  const types = {
    added: {
      color: 'success',
      label: 'ADDED'
    },
    changed: {
      color: 'warning',
      label: 'CHANGED'
    },
    deprecated: {
      color: 'alert',
      label: 'DEPRECATED'
    },
    removed: {
      color: 'error',
      label: 'REMOVED'
    },
    fixed: {
      color: 'info',
      label: 'FIXED'
    },
    security: {
      color: 'security',
      label: 'SECURITY'
    },
    breaking: {
      color: 'breaking',
      label: 'BREAKING'
    }
  };
  const config = types[type.toLowerCase()] || ({
    color: 'secondary',
    label: type.toUpperCase()
  });
  return <span className={`status-badge status-${config.color}`}>
      {config.label}
    </span>;
};

<CardGroup cols={2}>
  <Card title="API" icon="code" href="/changelog/api" />

  <Card title="Web SDK" icon="browser" href="/changelog/web" />

  <Card title="Android SDK" icon="android" href="/changelog/android" />

  <Card title="iOS SDK" icon="apple" href="/changelog/ios" />

  <Card title="Flutter SDK" icon="mobile" href="/changelog/flutter" />

  <Card title="React Native SDK" icon="react" href="/changelog/react-native" />

  <Card title="VTEX Plugin" icon="puzzle-piece" href="/changelog/plugins/vtex" />

  <Card title="WooCommerce Plugin" icon="puzzle-piece" href="/changelog/plugins/woocommerce" />
</CardGroup>

## Types of changes

* <ChangelogBadge type="added" /> : for new features.
* <ChangelogBadge type="changed" /> : for changes in existing functionality.
* <ChangelogBadge type="deprecated" /> : for soon-to-be removed features.
* <ChangelogBadge type="removed" /> : for now removed features.
* <ChangelogBadge type="fixed" /> : for any bug fixes.
* <ChangelogBadge type="security" /> : in case of vulnerabilities.
* <ChangelogBadge type="breaking" /> : for changes that require merchant adaptation.
