Skip to content

Commit 0735a19

Browse files
committed
New release 0.16.0
=== Breaking changes - Replaced all `slave` to `port`. (bfa1ec3) * `InfoBond::ActiveSlave` -> `InfoBond::ActivePort` * `InfoBond::AllSlavesActive` -> `InfoBond::AllPortsActive` * `InfoBond::PacketsPerSlave` -> `InfoBond::PacketsPerPort` * `SlaveState` -> `BondPortState` * `link_infos::Info::SlaveKind` -> `link_info::Info::PortKind` * `link_infos::Info::SlaveData` -> `link_info::Info::PortData` * `link_infos::InfoSlaveData` -> `link_info::InfoPortData` === New features - Add support of bond port settings. (83c9689) - Add support of TC matchall filter. (d71b961) - Add egress builder for TcNat type. (62d2411) - Add the nat action to tc. (c80c678) - Add XDP nlas structure support. (75ce74c) === Bug fixes - Set `NLM_F_NESTED` for `TCA_ACT_OPTIONS` type. (a93b651) Signed-off-by: Gris Ge <[email protected]>
1 parent bfa1ec3 commit 0735a19

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
# Changelog
2+
### [0.16.0] - 2023-06-25
3+
### Breaking changes
4+
- Replaced all `slave` to `port`. (bfa1ec3)
5+
* `InfoBond::ActiveSlave` -> `InfoBond::ActivePort`
6+
* `InfoBond::AllSlavesActive` -> `InfoBond::AllPortsActive`
7+
* `InfoBond::PacketsPerSlave` -> `InfoBond::PacketsPerPort`
8+
* `SlaveState` -> `BondPortState`
9+
* `link_infos::Info::SlaveKind` -> `link_info::Info::PortKind`
10+
* `link_infos::Info::SlaveData` -> `link_info::Info::PortData`
11+
* `link_infos::InfoSlaveData` -> `link_info::InfoPortData`
12+
13+
### New features
14+
- Add support of bond port settings. (83c9689)
15+
- Add support of TC matchall filter. (d71b961)
16+
- Add egress builder for TcNat type. (62d2411)
17+
- Add the nat action to tc. (c80c678)
18+
- Add XDP nlas structure support. (75ce74c)
19+
20+
### Bug fixes
21+
- Set `NLM_F_NESTED` for `TCA_ACT_OPTIONS` type. (a93b651)
22+
223
## [0.15.0] - 2023-01-28
324
### Breaking changes
425
- Removed these reexports. (8784586)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Corentin Henry <[email protected]>"]
33
name = "netlink-packet-route"
4-
version = "0.15.0"
4+
version = "0.16.0"
55
edition = "2018"
66

77
homepage = "https://github.com/rust-netlink/netlink-packet-route"
@@ -29,7 +29,7 @@ name = "dump_packet_links"
2929
criterion = "0.3.0"
3030
pcap-file = "1.1.1"
3131
lazy_static = "1.4.0"
32-
netlink-sys = { version = "0.8.4" }
32+
netlink-sys = { version = "0.8.5" }
3333
pretty_assertions = "0.7.2"
3434

3535
[[bench]]

0 commit comments

Comments
 (0)