(Or why I’m getting tired of managing 150 add ons and projects at the same time)
In this presentation I share the challenges and (possible) solutions for managing Plone codebases -- projects, distributions, add-ons -- in 2025.
plone.org.br … • What • Uses https://prismjs.com/ • Needs to be moved to https://shiki.style/ • Reasons: • PrismJS is “dead" • Current implementation is hard to extend (add new languages) • Shiki is not “dead"
:-) • There is async code involved somewhere, somehow • Have code highlighting while you edit the block • (This “works" today with Prism) • I’m not a frontend developer :-) • Prize • Beers (or co ff ee)
CMS based on top of Products.CMFPlone • We could say Plone is the new CMF • It should control the dependencies constraints — like Plone does — after all, it is a CMS and you should have versions, upgrades, etc, etc • Headless or not? • Classic-based • plone.restapi • Some examples • plone.classicui • plone.volto (Volto) • kitconcept.intranet • portalbrasil.* (plonegovbr/portabrasl-intranet)
project, based on an existing distribution, to solve somebody’s problem • It should have a tighter control on all dependencies used: Products.CMFPlone == 6.1.1, @plone/volto == 18.10.1 • Based on Classic • A Python “policy package” that will “bend" Plone to your will • Docs • CI / CD / Deployment con fi guration • Based on Volto (Mono repo) • Backend: A Python “policy package” that will “bend" Plone to your needs • Frontend: A Node “policy package” to "bend" Volto to your needs • Docs • CI / CD / Deployment con fi guration
be shared between projects • A package containing code to implement new features for Plone, Volto, or both • Usually it will be published to PyPi / NPM • It needs to run (and be tested) on a matrix of versions of Python / Plone / Node / Volto • It can be: • Just Python code: ✅ (pas.plugins.oidc, pas.plugins.authomatic) • Just Node code: ✅ (@plonegovbr/volto-code-block, @eea/*) • Python + Node: ❗ • volto-form-support / collective.voltoformsupport • @plone-collective/volto-bookmarks / collective.bookmarks • @kitconcept/volto-light-theme / kitconcept.voltolighttheme
one version of Python / Node • Always pin exact versions for important dependencies on (setup.py, pyproject.toml, package.json) • Products.CMFPlone == 6.1.1 (instead of Products.CMFPlone) • Maintain its own list of constraints • In the old buildout days we had that with versions.cfg • Testing: • Speci fi c Python / Plone • Speci fi c Node / Volto
you require / need / want to have backend and frontend code => mono repo • Uni fi ed releases: • Both components will always have the same version number • Pros: • Easy to test • Easy to maintain • Reduced overhead • Cons: • Our current toolset is not prepared for this
Add on • uv based • Installation via uv pip install • pyproject.toml (No more setup.py): • Build: hatchling • [tool.uv]: managed = false • Supports an environment variable PLONE_VERSION to download / install the version you want • mxdev: Generated fi les are on .gitignore (also requirements.txt) • Version in the __init__.py of the package (PEP440) • Change log with towncrier • GHA work fl ow tests the matrix of Python x Plone versions
Add on • Uses package-centric approach • Change log with towncrier • Version in the package.json of the add on package (SemVer) • GHA work fl ow only testing on speci fi c Volto version (this need to be changed)
• Focus on project, not publishable on PyPi / NPM • 3 change log locations: root, backend, frontend • To keep track of all changes, and package changes • repository.toml con fi g • Talk about that later • version.txt with project version (PEP440)
existing tools (towncrier, mxdev) • Dependency management for backend packages managed by uv • uv run repo deps plone 6.1.1 • Updates Products.CMFPlone version in [project.dependencies] • Updates [tool.uv.constraints] with list from dist.plone.org • Uni fi ed mono repo release (github.com/plonegovbr/br fi eldsandwidgets) • uv run repo changelog • uv run repo release do 1.0.0a1 • Update root: CHANGELOG.md, version.txt, docker-compose.yml • Release backend package (plonegovbr.br fi elds) to PyPi • Release frontend package (@plonegovbr/volto-brwidgest) to NPM • Create new tag, pushes to origin WIP
Speci fi c Products.CMFPlone version • Add on: github.com/plonegovbr/br fi eldsandwidgets • Matrix of versions • Add on: github.com/kitconcept/volto-light-theme • Matrix of versions • Project: Internal Simples Consultoria project • Speci fi c Products.CMFPlone version • No publishing to NPM / PyPi WIP
mono repo Project • Distribution • Already with correct trove classi fi er • distributions.zcml • distributions/ • Frontend / Backend Add on • Add on with backend and frontend packages
version on PyPi • Usage will be • uvx —from ‘plone-repo-helper’ repo <command> • What else: • Handle dependencies other than Products.CMFPlone (plone.volto, kitconcept.intranet)
• Add to plone/meta • Composite actions to setup Python, setup Node, build container images • Shared work fl ows for Backend lint / test, Frontend lint / test / i18n • New shared work fl ows on Tag push • NPM: build and publish package • PyPi: build and publish package (recommended way by PyPA)