Skip to content

Commit

Permalink
New release 0.16.0
Browse files Browse the repository at this point in the history
=== 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]>
  • Loading branch information
cathay4t committed Jun 25, 2023
1 parent bfa1ec3 commit 0735a19
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
# Changelog
### [0.16.0] - 2023-06-25
### 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)

## [0.15.0] - 2023-01-28
### Breaking changes
- Removed these reexports. (8784586)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Corentin Henry <[email protected]>"]
name = "netlink-packet-route"
version = "0.15.0"
version = "0.16.0"
edition = "2018"

homepage = "https://github.com/rust-netlink/netlink-packet-route"
Expand Down Expand Up @@ -29,7 +29,7 @@ name = "dump_packet_links"
criterion = "0.3.0"
pcap-file = "1.1.1"
lazy_static = "1.4.0"
netlink-sys = { version = "0.8.4" }
netlink-sys = { version = "0.8.5" }
pretty_assertions = "0.7.2"

[[bench]]
Expand Down

0 comments on commit 0735a19

Please sign in to comment.