v3.0.0-beta.89

Version v3.0.0-beta.89Major ReleasePre-release
Released:

August 22, 2024

Type:

Contains breaking changes

GitHub:View Release

Release Notes

v3.0.0-beta.89 (2024-08-22)

Features

Bug Fixes

  • richtext-lexical: ensure errors during slate => lexical migration are caught and do not halt migration progress (cf66341)
  • richtext-lexical: inaccurate detection of whether the editor is empty or not (5174c70)
  • richtext-lexical: migrate scripts not working due to migration hooks running during migrate script (d894ac7)
  • no longer handle disabling node deprecation warnings within bin script shebangs, as it errored on some systems (#7797) (af0105c)
  • ui, richtext-lexical: corrects clickable areas on block headers (#7791) (93e8131)
  • handles custom collection description components (#7789) (cb9b80a)

BREAKING CHANGES

  • handles custom collection description components (#7789) (cb9b80a) If you were previously defining a custom description component on a collection, simply move it into the correct position. Old:
    ```ts
    {
    admin: {
    components: {
    edit: {
    Description: ''
    }
    }
    }
    }
    ```

    New:

    ```ts
    {
    admin: {
    components: {
    Description: ''
    }
    }
    }
    ```

Contributors

  • Paul (@paulpopus)
  • Alessio Gravili (@AlessioGr)
  • Jarrod Flesch (@JarrodMFlesch)
  • Tylan Davis (@tylandavis)
  • Jacob Fletcher (@jacobsfletch)