TinaCMS Version 1.3.2 (and @tinacms/cli@1.3.2) improves media, adds support for special characters in field names, and some other fixes and improvements. Using Field names with special characters (using nameOverride) Tina now supports fields with special characters through the use of the nameOverride property. // fields { name: ‘my_field’, nameOverride: ‘my-field’, type: ‘string’ } You can also use nameOverride to use special restricted field names like id // fields { name: ‘custom_id’, nameOverride: ‘id’, type: ‘string’ } The above field will read/write to the frontmatter key id, which previo