-
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Steve Piercy <[email protected]> Co-authored-by: David Glick <[email protected]> Co-authored-by: Maurits van Rees <[email protected]>
- Loading branch information
1 parent
9c09b45
commit 305e03b
Showing
11 changed files
with
79 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,13 @@ canary | |
During the development process, a canary release will be cut from the `main` branch. | ||
When it becomes worthy of a beta or release candidate version, a new numbered branch should be cut, and non-breaking changes must be merged into it. | ||
|
||
legacy | ||
: The term _legacy_ refers to a version that is no longer supported or actively maintained. | ||
They are the versions between official Plone minor releases. | ||
You should update to minor Plone releases as soon as possible. | ||
Legacy versions won't receive any new features. | ||
They might receive occasional bug fixes or security updates, subject to approval from the Volto Team. | ||
|
||
`main` | ||
: This is the bleeding edge branch in git. | ||
It is the branch upon which future development occurs, and from which future releases shall be cut. | ||
|
@@ -31,11 +38,19 @@ canary | |
|
||
If the pull request is a feature or a bugfix, and if the release manager deems it useful to the latest version's branch, they may ask you to backport it to that branch. | ||
|
||
`17.x.x` | ||
: `17.x.x` is the current stable and actively developed branch in git. | ||
Upon the final release of version `18.0.0`, the `17.x.x` branch line will be no longer supported. | ||
`18.x.x` | ||
: `18.x.x` is the current stable and actively developed branch in git. | ||
This version of Volto has the [same maintenance and support schedule as Plone 6.1](https://plone.org/download/release-schedule). | ||
Any new feature will be merged into the `main` branch, and only backported to and released in older versions, if the Volto Team approves it. | ||
|
||
`17.x.x` | ||
: `17.x.x` is no longer supported and became _legacy_ (see above definition) when Volto 18 was released. | ||
You should upgrade to the latest released version of Volto 18. | ||
You can use Cookieplone to generate a new Volto 18 project, then copy-paste over the relevant parts from your existing project into the new one. | ||
See {ref}`volto-upgrade-guide-18.x.x`. | ||
If you need a bug fix, please create an issue to discuss with the Volto Team. | ||
For security issues, please contact the Plone Security Team by sending email to [email protected]. | ||
|
||
`16.x.x` | ||
: This version of Volto has the [same maintenance and support schedule as Plone 6.0](https://plone.org/download/release-schedule). | ||
It receives bug fixes and security updates. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
```{deprecated} Volto 18 | ||
Semantic UI development and maintenance has been inconsistent since 2018. | ||
The Volto Team made the decision to move forward in a sustainable direction. | ||
Plone 7 will use a different theming approach, based on the [`@plone/components`](https://www.npmjs.com/package/@plone/components)—which in turn is based on [React Aria Components](https://react-spectrum.adobe.com/react-aria/components.html)—and [`@plone/theming`](https://github.com/plone/volto/tree/main/packages/theming) packages. | ||
Using Semantic UI theming for your project or add-on is deprecated from Volto 18 onward, and will be removed in Plone 7. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Amended version policy documentation. @sneridagh | ||
Added deprecation notice for Semantic UI theming. |