@sveltia/cms 0.36.2 → 0.36.3

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
@@ -47,10 +47,11 @@ While we are fixing reported bugs as fast as we can, the overall progress may be
47
47
  - Ensuring maximum [compatibility with existing versions of Netlify/Decap CMS](#compatibility)
48
48
  - Tackling as many [issues reported to Netlify/Decap CMS](https://github.com/decaporg/decap-cms/issues) as possible
49
49
  - So far, 110+ of them (or 185+ including duplicates) have been effectively solved in Sveltia CMS
50
- - Target: 150 issues by GA, 250 in a future release
50
+ - Target: 125 issues by GA, 250 in a future release
51
51
  - [Let us know](https://github.com/sveltia/sveltia-cms/issues/new) if you have any specific issues you’d like to see solved!
52
52
  - Responding to user feedback
53
53
  - Implementing our own UX enhancement ideas
54
+ - Upgrading to [Svelte 5](https://svelte.dev/blog/svelte-5-release-candidate) for unparalleled performance
54
55
 
55
56
  Sveltia CMS **version 1.0 is expected to ship by the end of 2024**. Check our [release notes](https://github.com/sveltia/sveltia-cms/releases) for updates. See also our [roadmap](#roadmap).
56
57
 
@@ -78,7 +79,7 @@ We are working hard to create a **significantly better alternative to Netlify CM
78
79
 
79
80
  - Built completely from scratch with Svelte instead of forking React-based Netlify/Decap CMS. The app starts fast and stays fast. The compiled code is vanilla JavaScript — you can use it with any framework that can load static data files while building your website or application.
80
81
  - Small footprint: The bundle size is less than 500 KB when minified and gzipped, which is much lighter than Netlify CMS (1.5 MB), Decap CMS (1.8 MB) and Static CMS (2.6 MB), even though we haven’t implemented some features yet[^57][^64].
81
- - The upcoming [Svelte 5](https://svelte.dev/blog/svelte-5-release-candidate) upgrade is anticipated to deliver further performance improvements, including accelerated speed and even smaller bundle size (an estimated 100 KB reduction).
82
+ - The ongoing [Svelte 5](https://svelte.dev/blog/svelte-5-release-candidate) upgrade is anticipated to deliver further performance improvements, including accelerated speed and even smaller bundle size (an estimated 100 KB reduction).
82
83
  - Sveltia CMS is free of technical debt and [virtual DOM overhead](https://svelte.dev/blog/virtual-dom-is-pure-overhead).
83
84
  - Uses the GraphQL API for GitHub and GitLab to quickly fetch content at once, so that entries and assets can be listed and searched instantly[^32][^65]. It also avoids the slowness and potential API rate limit violations caused by hundreds of requests with Relation widgets[^14].
84
85
  - Saving entries and assets to GitHub is also much faster thanks to the [GraphQL mutation](https://github.blog/changelog/2021-09-13-a-simpler-api-for-authoring-commits/).
@@ -303,12 +304,13 @@ We are trying to make Sveltia CMS as compatible as possible with Netlify/Decap C
303
304
 
304
305
  ### Current limitations
305
306
 
306
- These limitations are expected to be resolved before GA:
307
+ These limitations are expected to be resolved before or shortly after GA:
307
308
 
308
309
  | Feature | Status in Sveltia CMS |
309
310
  | --- | --- |
310
- | Backends | Only GitHub and GitLab are available. We’ll add the Test backend for our demo site and see if Azure can also be supported. |
311
- | Configuration | The application UI locales are only available in English and Japanese. Comprehensive config validation is not yet implemented. |
311
+ | Backends | The Test backend needed for our demo site is not yet added. We’ll see if Azure can also be supported. |
312
+ | Configuration | Comprehensive config validation is not yet implemented. |
313
+ | Localization | The application UI is only available in English and Japanese at this time. |
312
314
  | Media Libraries | Cloudinary and Uploadcare are not yet supported. |
313
315
  | Workflow | Editorial Workflow and Open Authoring are not yet supported. |
314
316
  | Collections | Nested collections are not yet supported. |
@@ -343,7 +345,7 @@ Missing any other features? Let us know by [filing an issue](https://github.com/
343
345
  - [Tackling more Netlify/Decap CMS issues](#development-status)
344
346
  - Broad automation test coverage (Vitest + Playwright)
345
347
  - [Svelte 5](https://svelte.dev/blog/svelte-5-release-candidate) migration
346
- - Localization with [Fluent](https://projectfluent.org)
348
+ - Localization with the new, [Fluent](https://projectfluent.org)-powered `sveltia-i18n` library
347
349
  - Documentation
348
350
  - Marketing site
349
351
  - Live demo site
@@ -441,7 +443,8 @@ If you get an “Authentication Aborted” error when trying to sign in to GitHu
441
443
  You can use Sveltia CMS with a local Git repository like Netlify/Decap CMS, but Sveltia CMS has simplified the workflow by removing the need for additional configuration (the `local_backend` property) and a proxy server, thanks to the [File System Access API](https://developer.chrome.com/articles/file-system-access/) available in [some modern browsers](https://developer.mozilla.org/en-US/docs/web/api/window/showopenfilepicker#browser_compatibility).
442
444
 
443
445
  1. Make sure you have configured the [GitHub](https://decapcms.org/docs/github-backend/) or [GitLab](https://decapcms.org/docs/gitlab-backend/) backend.
444
- - Please note that the Git Gateway backend mentioned in the Netlify/Decap CMS [local Git repository document](https://decapcms.org/docs/working-with-a-local-git-repository/) is not supported in Sveltia CMS. You can remove the `local_backend` property, which is ignored in Sveltia CMS.
446
+ - Please note that the Git Gateway backend mentioned in the Netlify/Decap CMS [local Git repository document](https://decapcms.org/docs/working-with-a-local-git-repository/) is not supported in Sveltia CMS, so `name: git-gateway` won’t work. You’ll need either `name: github` or `name: gitlab` along with the `repo` definition.
447
+ - You can remove `local_backend` from your configuration, as it will be ignored by Sveltia CMS.
445
448
  1. Launch the local development server for your frontend framework, typically with `npm run dev` or `pnpm dev`.
446
449
  1. Visit `http://localhost:[port]/admin/index.html` with Chrome or Edge. The port number varies by framework.
447
450
  - Other Chromium-based browsers may also work. In Brave, you need to enable the File System Access API [with a flag](https://github.com/brave/brave-browser/issues/20563#issuecomment-1021567573).
@@ -770,7 +773,7 @@ Looking to build a website with Sveltia CMS? Maintainer [@kyoshino](https://gith
770
773
 
771
774
  ## Contributions
772
775
 
773
- Since Sveltia CMS is still in beta, we expect various problems. Please [report any bugs to us](https://github.com/sveltia/sveltia-cms/issues/new) so we can make it better for everyone. Feel free to submit feature requests as well. Meanwhile, pull requests may not be accepted for the time being due to limited review resources and the upcoming Svelte 5 migration. As we get closer to the 1.0 release, we’ll be welcoming [localizers](https://github.com/sveltia/sveltia-cms/blob/main/src/lib/locales/README.md).
776
+ Since Sveltia CMS is still in beta, we expect various problems. Please [report any bugs to us](https://github.com/sveltia/sveltia-cms/issues/new) so we can make it better for everyone. Feel free to submit feature requests as well. Meanwhile, pull requests may not be accepted for the time being due to limited review resources and the ongoing Svelte 5 migration. As we get closer to the 1.0 release, we’ll be welcoming [localizers](https://github.com/sveltia/sveltia-cms/blob/main/src/lib/locales/README.md).
774
777
 
775
778
  Tips are always welcome! The project hasn’t set up a sponsorship program, but maintainer [@kyoshino](https://github.com/kyoshino) has a [PayPal account](https://paypal.me/kohei).
776
779