Skip to content

Commit

Permalink
chore: Release version 1.22.0
Browse files Browse the repository at this point in the history
Releasing new mrack version
  • Loading branch information
github-actions committed Oct 17, 2024
1 parent f43d20f commit aa2e385
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 3 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,53 @@



## v1.22.0 (2024-10-17)

### Chore

* chore: setup: package seccomp filter

Add seccomp.json to setup mrack package so it is included on pkg install.

Signed-off-by: Alexander Bokovoy <[email protected]> ([`4d0b63c`](https://github.com/neoave/mrack/commit/4d0b63c5e15a0cd90fb7f44b2a1d340704618bd9))

### Documentation

* docs: Update seccomp configuration example

seccomp.json example from FreeIPA Azure CI tests. It works well for both
docker and podman, both root and rootless.

Signed-off-by: Alexander Bokovoy <[email protected]> ([`9b2d980`](https://github.com/neoave/mrack/commit/9b2d98093aaad4a8fdb7f2391aa94a6281590162))

### Feature

* feat: podman: handle custom network configuration

Allow to add custom network configuration to the network bridge
activated via podman provider.

Signed-off-by: Alexander Bokovoy <[email protected]> ([`f3deca1`](https://github.com/neoave/mrack/commit/f3deca12138c1470cf2b399d00baf81875aa1ef2))

### Fix

* fix: podman: set podman connection information for ansible

Ansible connection.podman.podman connection module uses ansible_host as
a container ID to connect to. Use container ID instead of IP address
which cannot be reached in rootless setup anyway.

It makes `ansible -c podman -i metadata-inventory.yaml` usable in
rootless podman setup because one cannot connect over IP addresses to
the containers as the networking bridge is not visible from the host.

Signed-off-by: Alexander Bokovoy <[email protected]> ([`768bba5`](https://github.com/neoave/mrack/commit/768bba5e4a098ad513a1123400aea03a90156e7d))

### Style

* style: Reformat by black ([`f43d20f`](https://github.com/neoave/mrack/commit/f43d20f486352cd21fada90d301173c98cf5dca5))


## v1.21.0 (2024-08-06)

### Feature
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Petr Vobornik"

# The full version, including alpha/beta/rc tags
release = "1.21.0"
release = "1.22.0"

# to work with ReadTheDocs which is using version < 2.0
master_doc = "index"
Expand Down
9 changes: 8 additions & 1 deletion mrack.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: mrack
Version: 1.21.0
Version: 1.22.0
Release: 1%{?dist}
Summary: Multicloud use-case based multihost async provisioner

Expand Down Expand Up @@ -185,6 +185,13 @@ rm -r src/%{name}.egg-info
%{python3_sitelib}/%{name}/providers/utils/{,__pycache__/}testcloud.*

%changelog
* Thu Oct 17 2024 David Pascual Hernandez <[email protected]> - 1.22.0-1
- f43d20f style: Reformat by black (David Pascual)
- 768bba5 fix: podman: set podman connection information for ansible (David Pascual)
- 4d0b63c chore: setup: package seccomp filter (David Pascual)
- 9b2d980 docs: Update seccomp configuration example (David Pascual)
- f3deca1 feat: podman: handle custom network configuration (David Pascual)

* Tue Aug 06 2024 Kaleemullah Siddiqui <[email protected]> - 1.21.0-1
- b3e0f7d feat: update pytest-mh output to work with latest version (Kaleemullah Siddiqui)

Expand Down
2 changes: 1 addition & 1 deletion src/mrack/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""mrack library version."""

VERSION = "1.21.0"
VERSION = "1.22.0"

0 comments on commit aa2e385

Please sign in to comment.