@sveltia/cms 0.82.0 → 0.83.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,7 +10,7 @@ The free, open source alternative/successor to Netlify/Decap CMS is now in publi
10
10
 
11
11
  ![Stock photo integration: Pexels, Pixabay, Unsplash](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-3.webp?20250405)<br>
12
12
 
13
- ![Full-fledged Asset Library; first-class internationalization support; translation API integration](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-4.webp?20250405)<br>
13
+ ![Full-fledged Asset Library; first-class internationalization support; translation API integration](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-4.webp?20250625)<br>
14
14
 
15
15
  ![Built-in image optimizer for WebP and SVG; mobile & tablet support](https://raw.githubusercontent.com/sveltia/sveltia-cms/main/docs/screenshot-5.webp?20250409)<br>
16
16
 
@@ -67,6 +67,7 @@ The free, open source alternative/successor to Netlify/Decap CMS is now in publi
67
67
  - [Using a custom media folder for a collection](#using-a-custom-media-folder-for-a-collection)
68
68
  - [Specifying default sort field and direction](#specifying-default-sort-field-and-direction)
69
69
  - [Including Hugo’s special index file in a folder collection](#including-hugos-special-index-file-in-a-folder-collection)
70
+ - [Using singletons](#using-singletons)
70
71
  - [Using keyboard shortcuts](#using-keyboard-shortcuts)
71
72
  - [Translating entry fields with one click](#translating-entry-fields-with-one-click)
72
73
  - [Localizing entry slugs](#localizing-entry-slugs)
@@ -128,9 +129,8 @@ Sveltia CMS is currently in **beta** and version 1.0 (GA) is expected to ship in
128
129
  While we fix reported bugs as quickly as possible, usually within 24 hours, our overall progress may be slower than you think. The thing is, it’s not just a personal project of [@kyoshino](https://github.com/kyoshino), but also a complicated system involving various kinds of activities that require considerable effort:
129
130
 
130
131
  - Ensuring substantial [compatibility with Netlify/Decap CMS](#compatibility)
131
- - Providing partial [compatibility with Static CMS](#compatibility-with-static-cms)
132
132
  - Tackling as many [Netlify/Decap CMS issues](https://github.com/decaporg/decap-cms/issues) as possible
133
- - So far, 225+ issues, or 455+ if including duplicates, have been effectively solved in Sveltia CMS
133
+ - So far, 225+ issues, or 465+ if including duplicates, have been effectively solved in Sveltia CMS (Yes, you read it right)
134
134
  - Target:
135
135
  - 200 issues, or 400 if including duplicates, by GA — We did it! 🎉
136
136
  - 400 issues, or 800 if including duplicates, in the future 💪
@@ -193,7 +193,7 @@ Note: This lengthy section compares Sveltia CMS with both Netlify CMS and Decap
193
193
  - Click once (the Save button) instead of twice (Publish > Publish now) to save an entry. Or just hit the `Ctrl+S` (Windows/Linux) or `Command+S` (macOS) key to save your time.
194
194
  - The editor closes automatically when an entry is saved. This behaviour can be changed in the application settings.
195
195
  - Uploading files can be done with drag and drop.[^20]
196
- - Users can upload multiple files at once to the Asset Library.[^5]
196
+ - Users can upload multiple files at once to the Asset Library.
197
197
  - Users can delete multiple entries and assets at once.
198
198
  - Instant full-text search with results sorted by relevance helps you find entries faster.
199
199
  - Some [keyboard shortcuts](#using-keyboard-shortcuts) are available for faster editing.
@@ -274,8 +274,8 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
274
274
  - Users can easily switch between locales while editing by clicking a button instead of a dropdown list when there are less than 5 locales.
275
275
  - Language labels appear in human-readable display names instead of ISO 639 language codes because it’s not easy for everyone to recognize `DE` as German, `NL` as Dutch, `ZH` as Chinese, and so on.
276
276
  - Content editing
277
- - [Integrates Cloud Translation API](#translating-entry-fields-with-one-click) to allow translation of text fields from another locale with one click.
278
- - Earlier versions of Sveltia CMS included DeepL integration, but it’s disabled for now [due to API limitations](https://github.com/sveltia/sveltia-cms/issues/437).
277
+ - [Integrates a translation service](#translating-entry-fields-with-one-click) to allow translation of text fields from another locale with one click.
278
+ - Earlier versions of Sveltia CMS included DeepL integration, but it’s disabled for now [due to an API limitation](https://github.com/sveltia/sveltia-cms/issues/437).
279
279
  - More translation services will be added in the future.
280
280
  - The Content Editor supports [RTL scripts](https://en.wikipedia.org/wiki/Right-to-left_script) such as Arabic, Hebrew and Persian.[^146]
281
281
  - It’s possible to [disable non-default locale content](#disabling-non-default-locale-content).[^15]
@@ -294,6 +294,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
294
294
  - Configuration
295
295
  - Provides some new options, including:
296
296
  - `icon`: [Choose a custom icon for each collection](#using-a-custom-icon-for-a-collection).[^3]
297
+ - The option can also be used for individual files within a file collection. The specified icon will then appear in the file list.
297
298
  - `thumbnail`: Specify the field name for a thumbnail displayed on the entry list, like `thumbnail: featuredImage`.[^130]
298
299
  - A nested field can be specified using dot notation, e.g. `heroImage.src`.
299
300
  - A wildcard in the field name is also supported, e.g. `images.*.src`.
@@ -315,6 +316,7 @@ Sveltia CMS has been built with a multilingual architecture from the very beginn
315
316
  - The `date` transformation supports the time zone argument. The only available value is `utc`, which converts a date to UTC. This is useful if the specified DateTime field is local, but you want to force UTC in the entry slug, e.g. `{{date | date('YYYYMMDD-HHmm', 'utc')}}`. ([Discussion](https://github.com/sveltia/sveltia-cms/issues/278#issuecomment-2565313420))
316
317
  - The `date` transformation returns an empty string if an invalid date is given.[^176]
317
318
  - Multiple transformations can be chained like `{{title | upper | truncate(20)}}`.
319
+ - Sveltia CMS supports [singletons](#using-singletons), a simple form of a file collection.[^233]
318
320
  - The collection `label` defaults to the `name` value according to the [Decap CMS document](https://decapcms.org/docs/configuration-options/#collections), while Netlify/Decap CMS actually throws a configuration error if the `label` option is omitted.
319
321
  - Nested fields (dot notation) can be used in the `path` option for a folder collection, e.g. `{{fields.state.name}}/{{slug}}`.[^62]
320
322
  - Markdown is supported in the `description` collection option.[^79] Bold, italic, strikethrough, code and links are allowed.
@@ -410,6 +412,7 @@ Note: The Date widget has been deprecated in Netlify CMS and removed from both D
410
412
  - DateTime
411
413
  - A DateTime field doesn’t trigger a change in the content draft status when you’ve just started editing a new entry.[^90]
412
414
  - User’s local time is not saved in UTC unless the `picker_utc` option is `true`.[^150]
415
+ - The widget doesn’t throw a `RangeError` for formatting days of the month.[^250]
413
416
  - Hidden
414
417
  - The `default` value supports the following template tags:
415
418
  - `{{locale}}`: The current locale code.[^101]
@@ -518,7 +521,7 @@ Note: The Date widget has been deprecated in Netlify CMS and removed from both D
518
521
  - Replace existing assets.
519
522
  - Download one or more selected assets at once.
520
523
  - Delete one or more selected assets at once.
521
- - Upload multiple assets at once, including files in nested folders, by browsing or dragging and dropping them into the library.[^5]
524
+ - Upload multiple assets at once, including files in nested folders, by browsing or dragging and dropping them into the library.
522
525
  - Sort or filter assets by name or file type.
523
526
  - View asset details, including size, dimensions, commit author/date and a list of entries that use the selected asset.
524
527
  - Enhancements to media libraries:
@@ -530,6 +533,7 @@ Note: The Date widget has been deprecated in Netlify CMS and removed from both D
530
533
  - Other integrations
531
534
  - Integrates stock photo providers, including Pexels, Pixabay and Unsplash.[^8] Developers can [disable them](#disabling-stock-assets) if needed.
532
535
  - More integration options, including Amazon S3 and Cloudflare R2/Images/Stream, would be added in the future.
536
+ - Assets stored in the subfolders of `media_folder` are scanned recursively and displayed in the Asset Library.[^249]
533
537
  - The global `media_folder` can be an empty string (or `.` or `/`) if you want to store assets in the root folder.
534
538
  - PDF documents are displayed with a thumbnail image in both the Asset Library and the Select File dialog, making it easier to find the file you’re looking for.[^38]
535
539
  - Assets stored in an entry-relative media folder are displayed in the Asset Library.[^142]
@@ -608,7 +612,7 @@ Found a compatibility issue or other missing feature? [Let us know](https://gith
608
612
 
609
613
  ### Compatibility with Static CMS
610
614
 
611
- Sveltia CMS provides partial compatibility with [Static CMS](https://github.com/StaticJsCMS/static-cms), a now-defunct fork of Netlify CMS. This README will be updated as our development progresses.
615
+ Sveltia CMS provides partial compatibility with [Static CMS](https://github.com/StaticJsCMS/static-cms), a now-defunct fork of Netlify CMS. Since Static CMS was archived some time ago, we don’t plan to implement additional compatibility beyond what’s listed below. However, we may still adopt some of their features that we find useful.
612
616
 
613
617
  - Configuration options
614
618
  - Static CMS made [some breaking changes](https://staticjscms.netlify.app/docs/decap-migration-guide) to view filters/groups, List widget, etc. while Sveltia CMS follows Netlify/Decap CMS, so you should review your configuration carefully.
@@ -891,6 +895,45 @@ collections:
891
895
 
892
896
  Note that the special index file is placed right under the `folder`, regardless of the collection’s [`path` option](https://decapcms.org/docs/collection-folder/#folder-collections-path). For example, if the `path` is `{{year}}/{{slug}}`, a regular entry would be saved as `content/posts/2025/title.md`, but the index file remains at `content/posts/_index.md`.
893
897
 
898
+ ### Using singletons
899
+
900
+ The singleton collection is an unnamed, non-nested variant of a [file collection](https://decapcms.org/docs/collection-file/) that can be used to manage static data files. Singleton files appear in the content library’s sidebar under the “Files” group, and users can open the Content Editor directly without navigating to a file list.
901
+
902
+ To create this special file collection, add the new `singletons` option, along with an array of file definitions, to the root level of your site configuration:
903
+
904
+ ```yaml
905
+ collections:
906
+ # Conventional file collection
907
+ - name: pages
908
+ label: Pages
909
+ files:
910
+ - name: home
911
+ label: Home Page
912
+ file: content/home.yaml
913
+ ...
914
+ - name: about
915
+ label: Site Settings
916
+ file: content/settings.yaml
917
+ ...
918
+
919
+ # Singleton collection
920
+ singletons:
921
+ - name: home
922
+ label: Home Page
923
+ file: content/home.yaml
924
+ icon: home # You can specify an icon
925
+ ...
926
+ - name: divider-1
927
+ divider: true # You can also add dividers
928
+ - name: about
929
+ label: Site Settings
930
+ file: content/settings.yaml
931
+ icon: settings
932
+ ...
933
+ ```
934
+
935
+ If you want to reference a singleton file with a Relation field, use `_singletons` as the `collection` name.
936
+
894
937
  ### Using keyboard shortcuts
895
938
 
896
939
  - View the Content Library: `Alt+1`
@@ -908,11 +951,11 @@ Sveltia CMS comes with a handy Google Cloud Translation API integration so that
908
951
 
909
952
  1. Update your configuration file to enable the [i18n support](https://decapcms.org/docs/i18n/) with multiple locales.
910
953
  1. Sign in or sign up for [Google Cloud](https://cloud.google.com/) and create a new project.
911
- 1. Enable [Cloud Translation API](https://console.cloud.google.com/apis/library/translate.googleapis.com).
912
- 1. Create a [new API key](https://console.cloud.google.com/apis/credentials) and copy it.
954
+ 1. Enable the [Cloud Translation API](https://console.cloud.google.com/apis/library/translate.googleapis.com). It’s free up to 500,000 characters per month.
955
+ 1. Create a [new API key](https://console.cloud.google.com/apis/api/translate.googleapis.com/credentials) and copy it.
913
956
  1. Open an entry in Sveltia CMS.
914
957
  1. Click on the Translation button on the pane header or each field, right next to the 3-dot menu.
915
- 1. Paste your key when prompted.
958
+ 1. Paste your API key when prompted.
916
959
  1. The field(s) will be automatically translated.
917
960
 
918
961
  Note that the Translation button on the pane header only translates empty fields, while in-field Translation buttons override any filled text.
@@ -1284,7 +1327,7 @@ Then, add the following origins depending on your Git backend and enabled integr
1284
1327
  ```
1285
1328
  https://images.unsplash.com https://api.unsplash.com
1286
1329
  ```
1287
- - Google Translate:
1330
+ - Google Cloud Translation:
1288
1331
  - `connect-src`
1289
1332
  ```
1290
1333
  https://translation.googleapis.com
@@ -1345,23 +1388,34 @@ See [Contributing to Sveltia CMS](https://github.com/sveltia/sveltia-cms/blob/ma
1345
1388
  Due Q4 2025
1346
1389
 
1347
1390
  - Enhanced [compatibility with Netlify/Decap CMS](#current-limitations)
1348
- - Tackling some more Netlify/Decap CMS issues
1391
+ - Tackling some more Netlify/Decap CMS issues:
1392
+ - [Directory navigation in the asset library](https://github.com/sveltia/sveltia-cms/issues/420)[^240] (#5 top-voted feature of Netlify/Decap CMS)
1393
+ - [Multiple file selection with the File and Image widgets](https://github.com/sveltia/sveltia-cms/issues/10)[^239] (#14)
1394
+ - [Git LFS support for GitHub backend](https://github.com/sveltia/sveltia-cms/discussions/353)[^244] (#26)
1395
+ - Advanced Relation fields[^242], including cascade updates/deletes[^243] and [reverse reference lists](https://github.com/sveltia/sveltia-cms/discussions/416)
1396
+ - Cloudinary and Uploadcare issues, including existing file selection[^247]
1397
+ - [Automatic file renaming with templates](https://github.com/sveltia/sveltia-cms/issues/422)[^241]
1398
+ - [RTL localization support](https://github.com/sveltia/sveltia-cms/issues/385)[^245]
1399
+ - Thorough site config validation[^246]
1400
+ - [Entry pre-validation/normalization](https://github.com/sveltia/sveltia-cms/issues/395)[^248]
1401
+ - and a few more bugs
1349
1402
  - Accessibility audit
1350
1403
  - [Localization](https://github.com/sveltia/sveltia-cms/blob/main/src/lib/locales/README.md)
1351
1404
  - Developer documentation (implementation guide)
1352
1405
  - Marketing site
1353
- - Live demo site
1406
+ - [Live demo site](https://github.com/sveltia/sveltia-cms/issues/1)
1354
1407
 
1355
1408
  ### v2.0
1356
1409
 
1357
- - Implementing [some deferred Netlify/Decap CMS features](#current-limitations)
1358
- - Tackling even more Netlify/Decap CMS issues
1410
+ - Implementing [a few deferred Netlify/Decap CMS features](#current-limitations):
1411
+ - [Editorial Workflow](https://decapcms.org/docs/editorial-workflows/)
1412
+ - [Open Authoring](https://decapcms.org/docs/open-authoring/)
1413
+ - [Nested Collections](https://decapcms.org/docs/collection-nested/) (beta)
1359
1414
  - End-user documentation
1360
- - Contributor documentation
1361
1415
 
1362
1416
  ### Future
1363
1417
 
1364
- - Tackling many of the remaining Netlify/Decap CMS issues, including MDX support,[^122] manual entry sorting,[^125] config editor,[^10] singletons,[^233] and other [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc) (some of them may be included in v2.0)
1418
+ - Tackling many of the remaining Netlify/Decap CMS issues, including MDX support,[^122] [manual entry sorting](https://github.com/sveltia/sveltia-cms/issues/214),[^125] config editor,[^10] offline support,[^238] and other [top-voted features](https://github.com/decaporg/decap-cms/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc) (some of them may be included in v2.0)
1365
1419
  - Exploring features that require server-side implementation, including user management (Netlify Identity alternative), roles,[^23] commits without a Git service account (Git Gateway alternative), post locking (like [WordPress](https://codex.wordpress.org/Post_Locking))[^166] and scheduled posts[^167]
1366
1420
  - More integration options: stock photos, stock videos, cloud storage providers, translation services, maps, analytics tools, etc.
1367
1421
  - AI integrations for image generation, content writing, translation, etc.
@@ -1370,10 +1424,12 @@ Due Q4 2025
1370
1424
  - Marketplace for custom widgets, etc.
1371
1425
  - VS Code extension for `config.yml` schema validation
1372
1426
  - Official starter templates for the most popular frameworks, including SvelteKit and Next.js
1427
+ - Contributor documentation
1373
1428
  - and so much more!
1374
1429
 
1375
1430
  ## Trivia
1376
1431
 
1432
+ - As mentioned in the [Motivation](#motivation) section, Sveltia CMS is a complete rewrite of Netlify CMS. We rarely look at the predecessor’s code and don’t use any of it. This is why Sveltia CMS is free of their bugs.
1377
1433
  - The [original version of Netlify CMS](https://github.com/netlify/netlify-cms-legacy) was built with Ember before being rewritten in React. And now we are completely rewriting it in Svelte. So this is effectively the second time the application has gone through a framework migration.
1378
1434
  - Our [local repository workflow](#working-with-a-local-git-repository) shares implementation with the Test backend, as both utilize the [File System API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_API), allowing us to reduce maintenance costs. The seamless local workflow is critical not only for improved DX, but also for our rapid application development.
1379
1435
 
@@ -1400,8 +1456,6 @@ This software is provided “as is” without any express or implied warranty. W
1400
1456
 
1401
1457
  [^4]: Netlify/Decap CMS [#3671](https://github.com/decaporg/decap-cms/issues/3671)
1402
1458
 
1403
- [^5]: Netlify/Decap CMS [#1032](https://github.com/decaporg/decap-cms/issues/1032)
1404
-
1405
1459
  [^6]: Netlify/Decap CMS [#3240](https://github.com/decaporg/decap-cms/issues/3240)
1406
1460
 
1407
1461
  [^7]: Netlify/Decap CMS [#4386](https://github.com/decaporg/decap-cms/issues/4386), [#4888](https://github.com/decaporg/decap-cms/issues/4888), [#7332](https://github.com/decaporg/decap-cms/issues/7332), [#7514](https://github.com/decaporg/decap-cms/issues/7514)
@@ -1536,7 +1590,7 @@ This software is provided “as is” without any express or implied warranty. W
1536
1590
 
1537
1591
  [^72]: Netlify/Decap CMS [#7047](https://github.com/decaporg/decap-cms/issues/7047)
1538
1592
 
1539
- [^73]: Netlify/Decap CMS [#6993](https://github.com/decaporg/decap-cms/issues/6993), [#7123](https://github.com/decaporg/decap-cms/issues/7123), [#7127](https://github.com/decaporg/decap-cms/issues/7127), [#7128](https://github.com/decaporg/decap-cms/issues/7128), [#7237](https://github.com/decaporg/decap-cms/issues/7237), [#7251](https://github.com/decaporg/decap-cms/issues/7251), [#7361](https://github.com/decaporg/decap-cms/issues/7361), [#7391](https://github.com/decaporg/decap-cms/issues/7391), [#7393](https://github.com/decaporg/decap-cms/issues/7393), [#7470](https://github.com/decaporg/decap-cms/issues/7470), [#7475](https://github.com/decaporg/decap-cms/issues/7475), [#7480](https://github.com/decaporg/decap-cms/issues/7480), [#7503](https://github.com/decaporg/decap-cms/issues/7503), [#7504](https://github.com/decaporg/decap-cms/issues/7504)
1593
+ [^73]: Netlify/Decap CMS [#6993](https://github.com/decaporg/decap-cms/issues/6993), [#7123](https://github.com/decaporg/decap-cms/issues/7123), [#7127](https://github.com/decaporg/decap-cms/issues/7127), [#7128](https://github.com/decaporg/decap-cms/issues/7128), [#7237](https://github.com/decaporg/decap-cms/issues/7237), [#7251](https://github.com/decaporg/decap-cms/issues/7251), [#7361](https://github.com/decaporg/decap-cms/issues/7361), [#7391](https://github.com/decaporg/decap-cms/issues/7391), [#7393](https://github.com/decaporg/decap-cms/issues/7393), [#7470](https://github.com/decaporg/decap-cms/issues/7470), [#7475](https://github.com/decaporg/decap-cms/issues/7475), [#7480](https://github.com/decaporg/decap-cms/issues/7480), [#7503](https://github.com/decaporg/decap-cms/issues/7503), [#7504](https://github.com/decaporg/decap-cms/issues/7504), [#7524](https://github.com/decaporg/decap-cms/issues/7524)
1540
1594
 
1541
1595
  [^74]: Netlify/Decap CMS [#4209](https://github.com/decaporg/decap-cms/issues/4209)
1542
1596
 
@@ -1856,7 +1910,7 @@ This software is provided “as is” without any express or implied warranty. W
1856
1910
 
1857
1911
  [^232]: Netlify/Decap CMS [#7457](https://github.com/decaporg/decap-cms/issues/7457)
1858
1912
 
1859
- [^233]: Netlify/Decap CMS [#535](https://github.com/decaporg/decap-cms/issues/535)
1913
+ [^233]: Netlify/Decap CMS [#535](https://github.com/decaporg/decap-cms/issues/535), [#1284](https://github.com/decaporg/decap-cms/issues/1284), [#3846](https://github.com/decaporg/decap-cms/issues/3846)
1860
1914
 
1861
1915
  [^234]: Netlify/Decap CMS [#2019](https://github.com/decaporg/decap-cms/issues/2019) — Rather than relying on a third-party library, we built our own asset browser that integrates more seamlessly with the rest of the CMS.
1862
1916
 
@@ -1865,3 +1919,29 @@ This software is provided “as is” without any express or implied warranty. W
1865
1919
  [^236]: Netlify/Decap CMS [#7507](https://github.com/decaporg/decap-cms/issues/7507)
1866
1920
 
1867
1921
  [^237]: Netlify/Decap CMS [#7375](https://github.com/decaporg/decap-cms/issues/7375), [#7518](https://github.com/decaporg/decap-cms/issues/7518)
1922
+
1923
+ [^238]: Netlify/Decap CMS [#1502](https://github.com/decaporg/decap-cms/issues/1502)
1924
+
1925
+ [^239]: Netlify/Decap CMS [#213](https://github.com/decaporg/decap-cms/issues/213), [#1032](https://github.com/decaporg/decap-cms/issues/1032), [#3244](https://github.com/decaporg/decap-cms/issues/3244), [#6730](https://github.com/decaporg/decap-cms/issues/6730), [#7459](https://github.com/decaporg/decap-cms/discussions/7459)
1926
+
1927
+ [^240]: Netlify/Decap CMS [#2113](https://github.com/decaporg/decap-cms/issues/2113), [#3240](https://github.com/decaporg/decap-cms/issues/3240)
1928
+
1929
+ [^241]: Netlify/Decap CMS [#857](https://github.com/decaporg/decap-cms/issues/857)
1930
+
1931
+ [^242]: Netlify/Decap CMS [#192](https://github.com/decaporg/decap-cms/issues/192)
1932
+
1933
+ [^243]: Netlify/Decap CMS [#717](https://github.com/decaporg/decap-cms/issues/717), [#5750](https://github.com/decaporg/decap-cms/issues/5750), [#6895](https://github.com/decaporg/decap-cms/issues/6895)
1934
+
1935
+ [^244]: Netlify/Decap CMS [#1206](https://github.com/decaporg/decap-cms/issues/1206)
1936
+
1937
+ [^245]: Netlify/Decap CMS [#1769](https://github.com/decaporg/decap-cms/issues/1769)
1938
+
1939
+ [^246]: Netlify/Decap CMS [#1074](https://github.com/decaporg/decap-cms/issues/1074), [#1693](https://github.com/decaporg/decap-cms/issues/1693), [#3803](https://github.com/decaporg/decap-cms/issues/3803)
1940
+
1941
+ [^247]: Netlify/Decap CMS [#1794](https://github.com/decaporg/decap-cms/issues/1794), [#2966](https://github.com/decaporg/decap-cms/issues/2966)
1942
+
1943
+ [^248]: Netlify/Decap CMS [#836](https://github.com/decaporg/decap-cms/issues/836), [#3524](https://github.com/decaporg/decap-cms/issues/3524)
1944
+
1945
+ [^249]: Netlify/Decap CMS [#4208](https://github.com/decaporg/decap-cms/issues/4208)
1946
+
1947
+ [^250]: Netlify/Decap CMS [#6609](https://github.com/decaporg/decap-cms/issues/6609), [#6802](https://github.com/decaporg/decap-cms/issues/6802), [#6824](https://github.com/decaporg/decap-cms/issues/6824), [#6832](https://github.com/decaporg/decap-cms/issues/6832), [#6848](https://github.com/decaporg/decap-cms/issues/6848), [#6851](https://github.com/decaporg/decap-cms/issues/6851), [#7287](https://github.com/decaporg/decap-cms/issues/7287), [#7522](https://github.com/decaporg/decap-cms/issues/7522)