Mpyl

Latest version: v1.7.5

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

Scan your dependencies

Page 9 of 15

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

1.0.9

Highlights

Support for reference environment variables
Support for reference environment variables. All standard types: `secretkeyref`, `fieldRef` and `resourceFieldRef` are
support. This allows one to reference secrets, fields and resource fields from other resources in the same namespace.

Repo command
`mpyl repo` is new command group with the following subcommands:

- `status` shows the status of the repository in terms of branch checked out, revision and revisions since branching off from base (main/master).
- `init` allows you to initialize the local repository to prepare it for use with MPyL PR builds.

What's Changed
* [TECH-480] Remove the checkout scm step from the mpyl jenkinsfile to … by Jorg88 in https://github.com/Vandebron/mpyl/pull/160
* [TECH-474] Add .idea watchertasks to the gitignore since they are per… by Jorg88 in https://github.com/Vandebron/mpyl/pull/164
* [TECH-400] Add black cli as a dependency by SamTheisens in https://github.com/Vandebron/mpyl/pull/161
* Feature/tech 484 add support for normal secrets by Jorg88 in https://github.com/Vandebron/mpyl/pull/165
* [TECH-440] Implement a new way to get changes in branch that ignores … by Jorg88 in https://github.com/Vandebron/mpyl/pull/166
* Add an actual pull to update the local main branch when needed by Jorg88 in https://github.com/Vandebron/mpyl/pull/170
* fix/namespace interpolation for tag deployments by koeves in https://github.com/Vandebron/mpyl/pull/169
* feature/TECH 488 namespace logic by koeves in https://github.com/Vandebron/mpyl/pull/167
* Test {{ replacement for template by peterrutg in https://github.com/Vandebron/mpyl/pull/172
* Feature/tech 475 increase code coverage by Jorg88 in https://github.com/Vandebron/mpyl/pull/168
* Improve git change detection logic by SamTheisens in https://github.com/Vandebron/mpyl/pull/174


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

Page 9 of 15

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.