> ## Documentation Index
> Fetch the complete documentation index at: https://yuno-3979e326-2026-05-13-universal-sdk-proposal.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Flutter SDK Changelog

> Latest updates and version history for the Yuno Flutter SDK

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>;
};

## v1.0.11

* <ChangelogBadge type="changed" /> **Native Android SDK Version Update**\
  Updated the native Android SDK dependency to the latest version. No API changes required.

## v1.0.10

* <ChangelogBadge type="changed" /> **Native Android SDK Version Update**\
  Updated the native Android SDK dependency to the latest version. No API changes required.

## v1.0.9

* <ChangelogBadge type="added" /> **Hindi, Bengali, Malayalam Support**\
  Added support for Hindi, Bengali, and Malayalam languages. No additional configuration is required to enable these languages.

## v1.0.8

* <ChangelogBadge type="changed" /> **Native SDK Versions Update**\
  Updated the native Android and iOS SDK dependencies to their latest versions. No API changes required.
