Mpyl

Latest version: v1.8.5

Safety actively analyzes 723947 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 10 of 16

1.2.0

Automated project.yml upgrades

A new cli command `mpyl projects upgrade` allows you to upgrade your `project.yml` to the latest version. It will
automatically add new sections and fields when necessary.

Future upgrade scripts should be added to `mpyl.projects.versioning`.
Kubernetes deploy actions
In `mpyl_config.yaml` the deploy action now needs to be explicitly set.
yaml
kubernetes:
deployAction: HelmDeploy

There are four deploy actions available:
- `HelmDeploy` - deploys the helm chart
- `HelmDryRun` - runs a helm dry run against the cluster
- `HelmTemplate` - renders a helm chart on the file system to the folder specified in the `helmTemplateOutputPath` property
- `KubectlManifest` - renders the deployment as manifest file specified in the `kubectlManifestOutputPath` property. This manifest can be deployed with a `kubectl -f <path>` command.

Image pull secrets
Default image pull secrets now need to be configured globally in `mpyl_config.yml`
yaml
deployment:
kubernetes:
imagePullSecrets:
- name: 'acme-registry'



What's Changed
* Run validation tasks in parallel by SamTheisens in https://github.com/Vandebron/mpyl/pull/220
* Add logo to documentation by SamTheisens in https://github.com/Vandebron/mpyl/pull/224
* feature/add contributing md by SamTheisens in https://github.com/Vandebron/mpyl/pull/225
* [TECH-491] Run pytest tests in parallel by SamTheisens in https://github.com/Vandebron/mpyl/pull/228
* Feature/tech 116 dagster deploy step by kgrunert in https://github.com/Vandebron/mpyl/pull/146
* [TECH-507] Try local main first and only then origin/main by Jorg88 in https://github.com/Vandebron/mpyl/pull/229
* [TECH-507] Revert the change to the base revision by Jorg88 in https://github.com/Vandebron/mpyl/pull/230
* [TECH-568] Also catch CancelledError to prevent errors on build cmd by Jorg88 in https://github.com/Vandebron/mpyl/pull/231
* [TECH-507] Add manifest render as deploy target by SamTheisens in https://github.com/Vandebron/mpyl/pull/232
* feature/TECH 556 config upgrades by SamTheisens in https://github.com/Vandebron/mpyl/pull/207
* [TECH-513] Ask for target input when deploying a tag by koeves in https://github.com/Vandebron/mpyl/pull/235
* feature/TECH 561 gha integration test by SamTheisens in https://github.com/Vandebron/mpyl/pull/233
* Feature/tech 580 catch jira exception by Jorg88 in https://github.com/Vandebron/mpyl/pull/240
* feature/TECH 563 fix docker test issue by Jorg88 in https://github.com/Vandebron/mpyl/pull/222
* [TECH-513] Update usage readme by koeves in https://github.com/Vandebron/mpyl/pull/234
* Bump aiohttp from 3.8.4 to 3.8.5 by dependabot in https://github.com/Vandebron/mpyl/pull/242
* Release candidate mechanism by SamTheisens in https://github.com/Vandebron/mpyl/pull/241
* feature/TECH 560 ignore net zero changes by SamTheisens in https://github.com/Vandebron/mpyl/pull/238
* Cache docker test results by SamTheisens in https://github.com/Vandebron/mpyl/pull/248

New Contributors
* kgrunert made their first contribution in https://github.com/Vandebron/mpyl/pull/146

**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.1.0...1.2.0

1.2.0rc3

**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.2.0rc2...1.2.0rc3

1.2.0rc2

**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.2.0rc1...1.2.0rc2

1.2.0rc1

New Contributors
* kgrunert made their first contribution in https://github.com/Vandebron/mpyl/pull/146

**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.1.0...1.2.0rc1

1.1.0

Highlights

Hotfix for mapping multiple ports to the same service

Due to a bug in the mapping of multiple ports to the same service, the following configuration:
yaml
deployment:
kubernetes:
portMappings:
8081: 8081
traefik:
hosts:
...
- host:
all: "Host(`some.other.host.com`)"
servicePort: 4091
priority: 1000

resulted in `8081` being used as servicePort in the treafik rule instead of `4091`.

Release notes

The release notes (as you are reading them now) are generated from the `releases/notes` directory in the project repository.
Whenever a release has changes that require your attention like: new cli commands, new features, breaking changes, upgrade
instructions, etc. they will be included here.

Create startup probes by default

When a project is using livenesProbes, but has no startupProbe defined, we resort to creating a startup probe from the
default values defined in the `mpyl_config.yml` file. This is done to prevent the project from being marked as
unhealthy.

Fix namespace interpolation in the Traefik default hosts

The default hosts for Traefik are now interpolated with the namespace of the project in test/acceptance/production.


What's Changed
* Feature/tech 548 fix multiple port mapping by Jorg88 in https://github.com/Vandebron/mpyl/pull/199
* Correctly parse resource requests and replica count by koeves in https://github.com/Vandebron/mpyl/pull/197
* Release notes by SamTheisens in https://github.com/Vandebron/mpyl/pull/194
* [TECH-470] Prevent titles in release notes from messing up the TOC by SamTheisens in https://github.com/Vandebron/mpyl/pull/204
* feature/TECH 553 fix startup probes by koeves in https://github.com/Vandebron/mpyl/pull/201
* [TECH-477] Updating AWS credential requirements by benjaminlynch100 in https://github.com/Vandebron/mpyl/pull/196
* [TECH-552] Replace namespace in default traeffik configuration by koeves in https://github.com/Vandebron/mpyl/pull/200
* [TECH-556] Upgrade outdated libraries by SamTheisens in https://github.com/Vandebron/mpyl/pull/209
* [TECH-470] Correct pattern for releases.txt by SamTheisens in https://github.com/Vandebron/mpyl/pull/208
* feature/TECH 293 pylint test code by SamTheisens in https://github.com/Vandebron/mpyl/pull/211
* [TECH-554] Do not reassign ticket by koeves in https://github.com/Vandebron/mpyl/pull/202
* Run release check via pipenv by SamTheisens in https://github.com/Vandebron/mpyl/pull/214
* Fix release check by SamTheisens in https://github.com/Vandebron/mpyl/pull/215
* Emit clearer message by SamTheisens in https://github.com/Vandebron/mpyl/pull/216
* Revert if by SamTheisens in https://github.com/Vandebron/mpyl/pull/217
* fix/TECH 542 fix linting tag status by koeves in https://github.com/Vandebron/mpyl/pull/213
* Deprecate 1.0.11 release in favor of 1.1.0 by SamTheisens in https://github.com/Vandebron/mpyl/pull/221


**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.0.10...1.1.0

1.0.10

Highlights

Support for service monitor
The prometheus [ServiceMonitor](https://doc.crds.dev/github.com/prometheus-operator/kube-prometheus/monitoring.coreos.com/ServiceMonitor/v1v0.7.0)
CRD and a corresponding [PrometheusRule](https://doc.crds.dev/github.com/prometheus-operator/kube-prometheus/monitoring.coreos.com/PrometheusRule/v1v0.7.0)
are deployed whenever the `metrics` field is defined in `project.yml`

What's Changed
* Prepare MPyL for use in GHA by SamTheisens in https://github.com/Vandebron/mpyl/pull/163
* Feature/tech 496 improve code quality by Jorg88 in https://github.com/Vandebron/mpyl/pull/186
* [TECH-529] Implement service monitor chart by Jorg88 in https://github.com/Vandebron/mpyl/pull/189
* [TECH-543] First delete the local pr branch to prevent conflicts by Jorg88 in https://github.com/Vandebron/mpyl/pull/190


**Full Changelog**: https://github.com/Vandebron/mpyl/compare/1.0.9...1.0.10

Page 10 of 16

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.