1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
.. _monorepos:
Releasing Packages from a Monorepo
==================================
A monorepo (mono-repository) is a software development strategy where code for multiple projects is stored in a single source control system. This approach streamlines and consolidates configuration, but introduces complexities when using automated tools like Python Semantic Release (PSR).
Previously, PSR offered limited compatibility with monorepos. As of v10.4.0, PSR introduces the :ref:`commit_parser-builtin-conventional-monorepo`, designed specifically for monorepo environments. To fully leverage this new parser, you must configure your monorepo as described below.
.. _monorepos-config:
Configuring PSR
---------------
.. _monorepos-config-example_simple:
Example: Simple
"""""""""""""""
**Directory Structure**: PSR does not yet support a single, workspace-level configuration definition. This means each package in the monorepo requires its own PSR configuration file. A compatible and common monorepo file structure looks like:
.. code::
project/
├── .git/
├── .venv/
├── packages/
│ ├── pkg1/
│ │ ├── docs/
│ │ │ └── source/
│ │ │ ├── conf.py
│ │ │ └── index.rst
│ │ │
│ │ ├── src/
│ │ │ └── pkg1/
│ │ │ ├── __init__.py
│ │ │ ├── __main__.py
│ │ │ └── py.typed
│ │ │
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ └── pyproject.toml <-- PSR Configuration for Package 1
│ │
│ └── pkg2/
│ ├── docs/
│ │ └── source/
│ │ ├── conf.py
│ │ └── index.rst
│ ├── src/
│ │ └── pkg2/
│ │ ├── __init__.py
│ │ ├── __main__.py
│ │ └── py.typed
│ │
│ ├── CHANGELOG.md
│ ├── README.md
│ └── pyproject.toml <-- PSR Configuration for Package 2
│
├── .gitignore
└── README.md
This is the most basic monorepo structure, where each package is self-contained with its own configuration files, documentation, and CHANGELOG files. To release a package, change your current working directory to the package directory and execute PSR's :ref:`cmd-version`. PSR will automatically read the package's ``pyproject.toml``, looking for the ``[tool.semantic_release]`` section to determine the package's versioning and release configuration, then search up the file tree to find the Git repository.
Because there is no workspace-level configuration, you must duplicate any common PSR configuration in each package's configuration file. Customize each configuration for each package to specify how PSR should distinguish between commits.
With the example file structure above, here is an example configuration file for each package:
.. code-block:: toml
# FILE: pkg1/pyproject.toml
[project]
name = "pkg1"
version = "1.0.0"
[tool.semantic_release]
commit_parser = "conventional-monorepo"
commit_message = """\
chore(release): pkg1@{version}`
Automatically generated by python-semantic-release
"""
tag_format = "pkg1-v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.commit_parser_options]
path_filters = ["."]
scope_prefix = "pkg1-"
.. code-block:: toml
# FILE: pkg2/pyproject.toml
[project]
name = "pkg2"
version = "1.0.0"
[tool.semantic_release]
commit_parser = "conventional-monorepo"
commit_message = """\
chore(release): pkg2@{version}`
Automatically generated by python-semantic-release
"""
tag_format = "pkg2-v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.commit_parser_options]
path_filters = ["."]
scope_prefix = "pkg2-"
These are the minimum configuration options required for each package. Note the use of :ref:`config-tag_format` to distinguish tags between packages. The commit parser options are specific to the new :ref:`commit_parser-builtin-conventional-monorepo` and play a significant role in identifying which commits are relevant to each package. Since you are expected to change directories to each package before releasing, file paths in each configuration file should be relative to the package directory.
Each package also defines a slightly different :ref:`config-commit_message` to reflect the package name in each message. This helps clarify which release number is being updated in the commit history.
Release Steps
'''''''''''''
Given the following Git history of a monorepo using a GitHub Flow branching strategy (without CI/CD):
.. image:: ./monorepos-ex-easy-before-release.png
To manually release both packages, run:
.. code-block:: bash
cd packages/pkg1
semantic-release version
# 1.0.1 (tag: pkg1-v1.0.1)
cd ../pkg2
semantic-release version
# 1.1.0 (tag: pkg2-v1.1.0)
After releasing both packages, the resulting Git history will look like:
.. image:: ./monorepos-ex-easy-post-release.png
.. seealso::
- :ref:`GitHub Actions with Monorepos <gh_actions-monorepo>`
Considerations
''''''''''''''
1. **Custom Changelogs**: Managing changelogs can be tricky depending on where you want to write the changelog files. In this simple example, the changelog is located within each package directory, and the changelog template does not have any package-specific formatting or naming convention. You can use one shared template directory at the root of the project and configure each package to point to the shared template directory.
.. code-block:: toml
# FILE: pkg1/pyproject.toml
[tool.semantic_release]
template_dir = "../../config/release-templates"
.. code-block:: toml
# FILE: pkg2/pyproject.toml
[tool.semantic_release]
template_dir = "../../config/release-templates"
.. code::
project/
├── .git/
├── config/
│ └── release-templates/
│ ├── CHANGELOG.md.j2
│ └── .release_notes.md.j2
├── packages/
│ ├── pkg1/
│ │ ├── CHANGELOG.md
│ │ └── pyproject.toml
│ │
│ └── pkg2/
│ ├── CHANGELOG.md
│ └── pyproject.toml
│
├── .gitignore
└── README.md
.. seealso::
- For situations with more complex documentation needs, see our :ref:`Advanced Example <monorepos-config-example_advanced>`.
2. **Package Prereleases**: Creating pre-releases is possible, but it is recommended to use package-prefixed branch names to avoid collisions between packages. For example, to enable alpha pre-releases for new features in both packages, use the following configuration:
.. code-block:: toml
# FILE: pkg1/pyproject.toml
[tool.semantic_release.branches.alpha-release]
match = "^pkg1/feat/.+" # <-- note pkg1 prefix
prerelease = true
prerelease_token = "alpha"
.. code-block:: toml
# FILE: pkg2/pyproject.toml
[tool.semantic_release.branches.alpha-release]
match = "^pkg2/feat/.+" # <-- note pkg2 prefix
prerelease = true
prerelease_token = "alpha"
----
.. _monorepos-config-example_advanced:
Example: Advanced
"""""""""""""""""
If you want to consolidate documentation into a single top-level directory, the setup becomes more complex. In this example, there is a common documentation folder at the top level, and each package has its own subfolder within the documentation folder.
Due to naming conventions, PSR cannot automatically accomplish this with its default changelog templates. For this scenario, you must copy the internal PSR templates into a custom directory (even if you do not modify them) and add custom scripting to prepare for each release.
The directory structure looks like:
.. code::
project/
├── .git/
├── docs/
│ ├── source/
│ │ ├── pkg1/
│ │ │ ├── changelog.md
│ │ │ └── README.md
│ │ ├── pkg2/
│ │ │ ├── changelog.md
│ │ │ └── README.md
│ │ └── index.rst
│ │
│ └── templates/
│ ├── .base_changelog_template/
│ │ ├── components/
│ │ │ ├── changelog_header.md.j2
│ │ │ ├── changelog_init.md.j2
│ │ │ ├── changelog_update.md.j2
│ │ │ ├── changes.md.j2
│ │ │ ├── first_release.md.j2
│ │ │ ├── macros.md.j2
│ │ │ ├── unreleased_changes.md.j2
│ │ │ └── versioned_changes.md.j2
│ │ └── changelog.md.j2
│ ├── .gitignore
│ └── .release_notes.md.j2
│
├── packages/
│ ├── pkg1/
│ │ ├── src/
│ │ │ └── pkg1/
│ │ │ ├── __init__.py
│ │ │ └── __main__.py
│ │ └── pyproject.toml
│ │
│ └── pkg2/
│ ├── src/
│ │ └── pkg2/
│ │ ├── __init__.py
│ │ └── __main__.py
│ └── pyproject.toml
│
└── scripts/
├── release-pkg1.sh
└── release-pkg2.sh
Each package should point to the ``docs/templates/`` directory to use a common release notes template. PSR ignores hidden files and directories when searching for template files to create, allowing you to hide shared templates in the directory for use in your release setup script.
Here is our configuration file for package 1 (package 2 is similarly defined):
.. code-block:: toml
# FILE: pkg1/pyproject.toml
[project]
name = "pkg1"
version = "1.0.0"
[tool.semantic_release]
commit_parser = "conventional-monorepo"
commit_message = """\
chore(release): Release `pkg1@{version}`
Automatically generated by python-semantic-release
"""
tag_format = "pkg1-v{version}"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.commit_parser_options]
path_filters = [
".",
"../../../docs/source/pkg1/**",
]
scope_prefix = "pkg1-"
[tool.semantic_release.changelog]
template_dir = "../../../docs/templates"
mode = "update"
exclude_commit_patterns = [
'''^chore(?:\([^)]*?\))?: .+''',
'''^ci(?:\([^)]*?\))?: .+''',
'''^refactor(?:\([^)]*?\))?: .+''',
'''^style(?:\([^)]*?\))?: .+''',
'''^test(?:\([^)]*?\))?: .+''',
'''^Initial [Cc]ommit''',
]
[tool.semantic_release.changelog.default_templates]
# To enable update mode: this value must set here because the default is not the
# same as the default in the other package & must be the final destination filename
# for the changelog relative to this file
changelog_file = "../../../docs/source/pkg1/changelog.md"
Note: In this configuration, we added path filters for additional documentation files related to the package so that the changelog will include documentation changes as well.
Next, define a release script to set up the common changelog templates in the correct directory format so PSR will create the desired files at the proper locations. Following the :ref:`changelog-templates-template-rendering` reference, you must define the folder structure from the root of the project within the templates directory so PSR will properly lay down the files across the repository. The script cleans up any previous templates, dynamically creates the necessary directories, and copies over the shared templates into a package-named directory. Now you are prepared to run PSR for a release of ``pkg1``.
.. code-block:: bash
#!/bin/bash
# FILE: scripts/release-pkg1.sh
set -euo pipefail
PROJECT_ROOT="$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")"
VIRTUAL_ENV="$PROJECT_ROOT/.venv"
PACKAGE_NAME="pkg1"
cd "$PROJECT_ROOT" || exit 1
# Setup documentation template
pushd "docs/templates" >/dev/null || exit 1
rm -rf docs/
mkdir -p "docs/source/"
cp -r .base_changelog_template/ "docs/source/$PACKAGE_NAME"
popd >/dev/null || exit 1
# Release the package
pushd "packages/$PACKAGE_NAME" >/dev/null || exit 1
printf '%s\n' "Releasing $PACKAGE_NAME..."
"$VIRTUAL_ENV/bin/semantic-release" -v version --no-push
popd >/dev/null || exit 1
That's it! This example demonstrates how to set up a monorepo with shared changelog templates and a consolidated documentation folder for multiple packages.
.. seealso::
- Advanced Example Monorepo: `codejedi365/psr-monorepo-poweralpha <https://github.com/codejedi365/psr-monorepo-poweralpha>`_
|