Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit e3d70d9

Browse files
committed
docs: update for 4.0.0 release
1 parent 47957ad commit e3d70d9

File tree

7 files changed

+17
-24
lines changed

7 files changed

+17
-24
lines changed

BREAKING_CHANGES.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/docs/content/docs/decap-migration-guide.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ title: Decap / Netlify Migration Guide
44
weight: 190
55
---
66

7-
<Alert severity="warning">
8-
This page is a work in progress! It will likely change before v4.0.0 goes live.
9-
</Alert>
10-
117
Static CMS is a fork of [Decap](https://github.com/decaporg/decap-cms) (previously Netlify CMS). Many changes have been made, some big, some small.
128

139
In this guide, we will walk you through the steps of migrating from Decap or Netlify to Static CMS.
@@ -33,7 +29,7 @@ Netlify (_remove_):
3329
Static CMS (_add_):
3430

3531
```html
36-
<script src="https://unpkg.com/@staticcms/app@^4.0.0-beta.15/dist/static-cms-app.js"></script>
32+
<script src="https://unpkg.com/@staticcms/app@^4.0.0/dist/static-cms-app.js"></script>
3733
```
3834

3935
### Bundling

packages/docs/content/docs/editorial-workflow.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ beta: true
66
---
77

88
<Alert severity="warning">
9-
Editorial Workflow currently does not work for the Gitea backend. Support coming soon.
9+
Editorial Workflow is not available for the Gitea backend.
1010
</Alert>
1111

1212
By default, all entries created or edited in Static CMS are committed directly into the main repository branch.

packages/docs/content/docs/gitea-backend.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ group: Backends
44
weight: 45
55
---
66

7+
<Alert severity="warning">
8+
Gitea backend cannot be used with the Editorial Workflow.
9+
</Alert>
10+
711
- **Name**: `gitea`
812

913
For repositories stored on Gitea, the `gitea` backend allows CMS users to log in directly with their Gitea account. Note that all users must have push access to your content repository for this to work.

packages/docs/content/docs/migration-guide-v4.mdx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ title: How to Upgrade to v4
44
weight: 101
55
---
66

7-
<Alert severity="warning">
8-
This page is a work in progress! It will likely change before v4.0.0 goes live.
9-
</Alert>
10-
117
Static CMS v4 introduces:
128

139
- [Custom themes](/docs/custom-theme)
@@ -23,23 +19,23 @@ Please [report any issues](https://github.com/StaticJsCMS/static-cms/issues/new)
2319
To install the latest version of Static CMS:
2420

2521
```bash
26-
npm install @staticcms/core@^4.0.0-beta.15
22+
npm install @staticcms/core@^4.0.0
2723
```
2824

2925
Or if you are using yarn:
3026

3127
```bash
32-
yarn add @staticcms/core@^4.0.0-beta.15
28+
yarn add @staticcms/core@^4.0.0
3329
```
3430

3531
If you are using a CDN to load Static CMS, simply change your URLs:
3632

3733
```html
38-
<link rel="stylesheet" href="https://unpkg.com/@staticcms/app@^4.0.0-beta.15/dist/main.css" />
34+
<link rel="stylesheet" href="https://unpkg.com/@staticcms/app@^4.0.0/dist/main.css" />
3935
```
4036

4137
```html
42-
<script src="https://unpkg.com/@staticcms/app@^4.0.0-beta.15/dist/static-cms-app.js"></script>
38+
<script src="https://unpkg.com/@staticcms/app@^4.0.0/dist/static-cms-app.js"></script>
4339
```
4440

4541
## View Filters

packages/docs/content/docs/open-authoring.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ beta: true
66
---
77

88
<Alert severity="warning">
9-
Open Authoring only works with the [GitHub backend](/docs/github-backend) and must be used with the [Editorial Workflow](/docs/editorial-workflow).
9+
Open Authoring is only available with the [GitHub backend](/docs/github-backend) and must be used with the [Editorial Workflow](/docs/editorial-workflow).
1010
</Alert>
1111

1212
When using the [GitHub backend](/docs/github-backend), you can use Static CMS to accept contributions from GitHub users without giving them access to your repository. When they make changes in the CMS, the CMS forks your repository for them behind the scenes, and all the changes are made to the fork. When the contributor is ready to submit their changes, they can set their draft as ready for review in the CMS. This triggers a pull request to your repository, which makes it appear in the Dashboard for maintainers.

packages/docs/content/releases.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
{
22
"releases": [
3+
{
4+
"date": "2024-01-03T10:00:00.000Z",
5+
"version": "v4.0.0",
6+
"type": "major",
7+
"description": "Editorial workflow, open authoring and theming"
8+
},
39
{
410
"date": "2024-01-02T11:00:00.000Z",
511
"version": "v4.0.0-beta.17",

0 commit comments

Comments
 (0)