aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/mdlayher/netlink/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mdlayher/netlink/CHANGELOG.md')
-rw-r--r--vendor/github.com/mdlayher/netlink/CHANGELOG.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/github.com/mdlayher/netlink/CHANGELOG.md b/vendor/github.com/mdlayher/netlink/CHANGELOG.md
new file mode 100644
index 0000000..9b5f766
--- /dev/null
+++ b/vendor/github.com/mdlayher/netlink/CHANGELOG.md
@@ -0,0 +1,22 @@
1# CHANGELOG
2
3## Unreleased
4
5- n/a
6
7## v1.1.0
8
9- [New API] [#157](https://github.com/mdlayher/netlink/pull/157): the
10 `netlink.AttributeDecoder.TypeFlags` method enables retrieval of the type bits
11 stored in a netlink attribute's type field, because the existing `Type` method
12 masks away these bits. Thanks @ti-mo!
13- [Performance] [#157](https://github.com/mdlayher/netlink/pull/157): `netlink.AttributeDecoder`
14 now decodes netlink attributes on demand, enabling callers who only need a
15 limited number of attributes to exit early from decoding loops. Thanks @ti-mo!
16- [Improvement] [#161](https://github.com/mdlayher/netlink/pull/161): `netlink.Conn`
17 system calls are now ready for Go 1.14+'s changes to goroutine preemption.
18 See the PR for details.
19
20## v1.0.0
21
22- Initial stable commit.