-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #886 from ywc689/v1.9.4
v1.9.4 release
- Loading branch information
Showing
1 changed file
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,28 @@ | ||
#!/bin/sh | ||
# program: dpvs | ||
# Sep 13, 2022 | ||
# Apr 20, 2023 | ||
# | ||
# New Features: | ||
# * Ctrl Plane Improvements | ||
# * Multi-instance Supports | ||
# Features | ||
# - Dpvs: Multiple instance deployment support. | ||
# - Dpvs: IPC improvements between keepalived/ipvsadm and dpvs by combining data structs. | ||
# | ||
# Nov 28, 2022 | ||
# * Fix using uninitialized "af" variable problem in keepalived | ||
# Bugfixes | ||
# - Dpvs: Fix memory problem when setting MATCH service. | ||
# - Ipvsadm: Fix service list problem when dpvs lcore ids are not continuous. | ||
# - Ipvsadm: Fix the problem that service/dest/laddr cannot be listed per-lcore. | ||
# - Ipvsadm: Support version info. | ||
# - Fix several spelling mistakes. | ||
# - Fix compiling errors on RHEL 9, Ubuntu 22.04 and microsoft standard WSL2. | ||
# - Keepalived: Fix service deletion by mistake problem caused by uninitialized local variable. | ||
# - Dpvs: Do not increase service num unless it's hashed sucessfully. | ||
# - Dpvs: Fix sa_entry leak when flushing snat connections. | ||
# - Keepalived: Fix ipvs allow/deny list config problem caused by incorrect parameters. | ||
# - Dpvs: Fix dead lock problem of eal-mem show and rte_free. | ||
# - Dpvs: Fix crash problem caused by msg_destroy when msg->refcnt==0. | ||
# - Dpvs: Fix eal-mem module uninitialized problem. | ||
# - Dpvs: Fix memory leak problem in ipvs allow list. | ||
|
||
export VERSION=1.9 | ||
export RELEASE=3 | ||
export RELEASE=4 | ||
|
||
echo $VERSION-$RELEASE |