diff options
author | Ole Troan <ot@cisco.com> | 2017-03-01 19:27:24 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-03-01 21:34:04 +0000 |
commit | 46c75cf65c56eb9d46c94fb97975e5494f95c69e (patch) | |
tree | fa58942e02e40ce20a694cc746d77f1562ad6f6a /RELEASE.md | |
parent | 04ab60edd5eefc811a6693cbbf9f9523b8f2ad70 (diff) |
Initial Release notes for 17.04.
Change-Id: I91a38fe02646438a0cdad92cbb66342a437e8ff9
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'RELEASE.md')
-rw-r--r-- | RELEASE.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/RELEASE.md b/RELEASE.md index 8bb5b705fe3..392bbb6f839 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -7,6 +7,26 @@ @page release_notes_1704 Release notes for VPP 17.04 +## API changes + +- Python API: To avoid conflicts between VPP API messages names and + the Python API binding function names, VPP API methods are put in a + separate proxy object. + https://gerrit.fd.io/r/#/c/5570/ + The api methods are now referenced as: + vpp_handle = VPP(jsonfiles) + vpp_handle.connect(...) + vpp = vpp_handle.api + vpp.show_version() + vpp_handle.disconnect() + + For backwards compatibility VPP API methods are left in the main + name space (VPP), but will be removed from 17.07. + +- create_loopback message to be replaced with create_loopback_instance + create_loopback will be removed from 17.07. + https://gerrit.fd.io/r/#/c/5572/ + @todo Release 17.04 needs release notes. @page release_notes_1701 Release notes for VPP 17.01 |