Skip to content

v0.26.0

Compare
Choose a tag to compare
@ncphillips ncphillips released this 03 Aug 14:42

Bug Fixes

  • gatsby-tinacms-git: useGitForm#loadInitialValues does not run in production (a42d50c)
  • gatsby-tinacms-mdx: useMdxForm#loadInitialValues does not run in production (e0c2275)
  • next-tinacms-json: useJsonForm#loadInitialValues does not run when cms is disabled (9fbd8e8)
  • next-tinacms-markdown: useMarkdownForm#loadInitialValues does not run when cms is disabled (3292bf4)

Features

  • @tinacms/forms: useForm always runs loadInitialValues (a624087)
  • @tinacms/react-core: a new CMS is disabled by default (ef3ac08)
  • add focus ring to inline wysiwyg (2768afd)
  • tooltips for menubar options (bd06f11)

Upgrading from v0.25.0

The CMS object is no longer enabled by default

If you were creating the CMS like this:

const cms = new TinaCMS()

Then the CMS would have been enabled (i.e. the eidting UI would be available).

This is no longer the case so you will have to switch to:

const cms = new TinaCMS({ enabled: true })