Skip to content

Commit 609154f

Browse files
committed
release ifstate 1.13.0
1 parent 1503762 commit 609154f

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# ChangeLog
22

3+
## 1.13.0 - 2024-10-20
4+
5+
Changes:
6+
- schema: add missing UDP port configuration for VxLAN tunnels
7+
- vrrp: add support for keepalived's `stop` state
8+
9+
Fixes:
10+
- link: fix exception handling in get_link wrapper
11+
- routing: add /usr/share/iproute2 for routing table map lookups (Debian)
12+
- routing: configure connected routes before static routes (#50)
13+
- vrrp: refactor vrrp-fifo, replacing mp.Process with subprocess.Popen
14+
implementation (#58 #59 #60)
15+
16+
This release contains a rector of the vrrp-fifo implementation used to run
17+
ifstate from keepalived. The previous implementation seems to trigger race
18+
conditions in the pyroute2 backend sockets when using complex setups with
19+
multiple netns. I is highly recommended to upgrade if you use the `vrrp-fifo`
20+
action.
21+
322
## 1.12.0 - 2024-09-12
423

524
Changes:

Diff for: libifstate/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
import errno
4949
import logging
5050

51-
__version__ = "1.12.0"
51+
__version__ = "1.13.0"
5252

5353

5454
class IfState():

0 commit comments

Comments
 (0)