@sveltia/cms 0.110.1 → 0.111.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
@@ -1,6 +1,6 @@
1
1
  # Sveltia CMS: Netlify/Decap CMS successor
2
2
 
3
- Sveltia CMS is a Git-based lightweight headless CMS under active development as a modern, powerful, effortless replacement for Netlify CMS (now Decap CMS). While some features are still missing, we’ve already solved over 260 issues reported in the predecessor’s repository, from critical bugs to top feature requests.
3
+ Sveltia CMS is a Git-based lightweight headless CMS under active development as a modern, powerful, direct replacement for Netlify CMS (now Decap CMS). While some features are still missing, we’ve already solved over 260 issues reported in the predecessor’s repository, from critical bugs to top feature requests.
4
4
 
5
5
  Built from the ground up, Sveltia CMS offers excellent UX, DX, performance, security and internationalization (i18n) support. Our numerous enhancements across the board ensure smooth daily workflows. This free, open source alternative to Netlify/Decap CMS is currently in public beta, with version 1.0 expected in early 2026.
6
6
 
@@ -605,6 +605,8 @@ Sveltia CMS supports all the [built-in widgets](https://decapcms.org/docs/widget
605
605
  - Unlike Netlify/Decap CMS, files are uploaded with their original names. Sanitization is still applied to avoid issues with special characters, but uppercase letters and spaces are not converted to lowercase letters and hyphens.[^97] If you want to slugify filenames according to the [`slug` option](https://decapcms.org/docs/configuration-options/#slug-type), use the `slugify_filename` [default media library option](#configuring-multiple-media-libraries).
606
606
  - Uploadcare
607
607
  - An API-based integration allows users to select existing files from their Uploadcare account.[^247]
608
+ - Supports [signed uploads](https://uploadcare.com/docs/security/secure-uploads/) to prevent unauthorized uploads. Files are uploaded with a signature computed using your secret key.
609
+ - No error is raised for file collections if the `media_folder` option is not defined.[^295]
608
610
  - Other integrations
609
611
  - Integrates stock photo providers, including Pexels, Pixabay and Unsplash.[^8] Developers can [disable them](#disabling-stock-assets) if needed.
610
612
  - More integration options, including Amazon S3 and Cloudflare R2/Images/Stream, would be added in the future.
@@ -822,7 +824,7 @@ For a better DX, we recommend [setting up the JSON schema](#enabling-autocomplet
822
824
 
823
825
  If you’re using any features listed in the [current limitations](#current-limitations) section, you’ll need to wait until they are implemented in Sveltia CMS. We’re working hard to add these features in the coming months.
824
826
 
825
- If you’re using any [features that are not going to be implemented](#features-not-to-be-implemented), you need to find a workaround. For example, if you’re using the Azure or Bitbucket backend, consider migrating to GitHub, GitLab, Gitea or Forgejo. See the next section if you’re a Git Gateway user.
827
+ If you’re using any [features that are not going to be implemented](#features-not-to-be-implemented), you’ll need to find a workaround. For example, if you’re using the Azure or Bitbucket backend, consider migrating to GitHub, GitLab, Gitea or Forgejo. See the next section if you’re a Git Gateway user.
826
828
 
827
829
  #### Migrating from Git Gateway backend
828
830
 
@@ -1806,6 +1808,16 @@ Then, add the following origins depending on your Git backend and enabled integr
1806
1808
  ```
1807
1809
  https://*.openstreetmap.org
1808
1810
  ```
1811
+ - Uploadcare:
1812
+ - `img-src`
1813
+ ```
1814
+ https://*.ucarecd.net https://ucarecdn.com
1815
+ ```
1816
+ or a custom domain if configured
1817
+ - `connect-src`
1818
+ ```
1819
+ https://upload.uploadcare.com https://api.uploadcare.com
1820
+ ```
1809
1821
  - Pexels:
1810
1822
  - `img-src`
1811
1823
  ```
@@ -1928,7 +1940,7 @@ Due mid-2026
1928
1940
 
1929
1941
  - Implementing [a few deferred Netlify/Decap CMS features](#current-limitations), including editorial workflow and nested collections, while addressing a number of bugs in their implementations
1930
1942
  - They will probably first be included as beta features in v1.x releases
1931
- - Tackling even more Netlify/Decap CMS issues to bring the total number of issues solved to 300:
1943
+ - Tackling even more Netlify/Decap CMS issues:
1932
1944
  - [Manual entry sorting](https://github.com/sveltia/sveltia-cms/issues/214)[^125]
1933
1945
  - [Directory navigation in the Asset Library](https://github.com/sveltia/sveltia-cms/issues/420)[^240]
1934
1946
  - and a few more from the TBD list below
@@ -1967,7 +1979,7 @@ Due late 2026
1967
1979
  - [Automatic asset file renaming with templates](https://github.com/sveltia/sveltia-cms/issues/422)[^241]
1968
1980
  - PKCE for GitHub[^285] — It’s [not yet supported](https://github.com/orgs/community/discussions/15752) by GitHub
1969
1981
  - and many more (100+ issues and discussions)
1970
- - Enhancements to Sveltia CMS Additions (some may be included in v3.0):
1982
+ - Enhancements to **Sveltia CMS Additions** (some may be included in v3.0):
1971
1983
  - Post locking[^166] (like [WordPress](https://codex.wordpress.org/Post_Locking))
1972
1984
  - Scheduled posts[^167]
1973
1985
  - [Credential management](https://github.com/sveltia/sveltia-cms/issues/444) for service API keys, deploy hook URL, etc.
@@ -2616,3 +2628,5 @@ This project would not have been possible without the open source Netlify CMS pr
2616
2628
  [^293]: Netlify/Decap CMS [7616](https://github.com/decaporg/decap-cms/issues/7616)
2617
2629
 
2618
2630
  [^294]: Netlify/Decap CMS [#7576](https://github.com/decaporg/decap-cms/issues/7576), [#7587](https://github.com/decaporg/decap-cms/issues/7587)
2631
+
2632
+ [^295]: Netlify/Decap CMS [6243](https://github.com/decaporg/decap-cms/issues/6243)