Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a notice in the upgrade guide for CookiePlone as the recommended way for generating projects and add-on boilerplate #6286

Merged
merged 3 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/source/upgrade-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,21 @@ schema: {
The `Tags` component has been moved to the `belowContent` slot.
It now receives the `content` property instead of the `tags` property.

### CookiePlone is now the recommended project and add-on generator for Volto 18

```{versionadded} 18.0.0-alpha.43
```
The recommended way for developing Volto projects will be using [Cookieplone](https:/plone/cookieplone) as a boilerplate generator.
Cookieplone uses the frontend code installed using `pnpm` instead of `yarn`.
This affects the way that we generate the official Docker images, since they have to be compatible with the `pnpm` setup.

From Volto `18.0.0-alpha.43` the official `plone-frontend` Docker image will be the one using `pnpm`.
During all the 18 series, a new image with the suffix `-yarn` (`plone-frontend:18-yarn`) will be generated as well for those of you that won't migrate your boilerplate and code to the new setup yet. When Volto 19 is out, we won't support it nor build it anymore.

```{deprecated} 18.0.0-alpha.43
The `yarn`-based generator `@plone/generator-volto` package and project boilerplates generated with it are deprecated and will not receive any further updates. The recommended way of generating a project boilerplate is Cookieplone. Please update your code to the `pnpm` based setup.
```

(volto-upgrade-guide-17.x.x)=

## Upgrading to Volto 17.x.x
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/6286.documentation
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added upgrade guide notice about CookiePlone as the recommended way for generating projects and add-on boilerplate @sneridagh
Loading