Releases: alliedtelesis/apteryx-rest
Releases · alliedtelesis/apteryx-rest
v2.0.33
What's Changed
- Fix tests based on changes to schemas by @tony-vanderpeet in #74
Full Changelog: v2.0.32...v2.0.33
v2.0.32
What's Changed
- test_update: test case for crash in sch_apply_conditions by @tony-vanderpeet in #69
- Appweb by @carlgsmith in #70
- Use strtok_r instead of strtok by @carlgsmith in #71
- Run tests on all supported web servers by @carlgsmith in #72
- Fix an issue with exceeding long log messages by @gcampbell512 in #73
- Modify rest.c to use the changed call to sch_traverse_tree by @gcampbell512 in #68
Full Changelog: v2.0.31...v2.0.32
v2.0.31
Add some tests for a when clause based on an enum of names The new tests, test the handling of a when clause based on an enum with string values. The code should translate the enum name string into the internal database numeric value for the enum so the comparison works.
v2.0.30
Add tests to make sure we do not delete RO leaf-lists Also assert that we have not accidently set the leaf-list node a value (which was symptom of a poorly trimmed tree)
v2.0.29
Do not blindly percent-decode all URI's As per RFC3986, URI components must be parsed and separated before the percent-encoded octets within those components can be safely decoded. Add many tests test we properly handle percent-encoded characters in list keys as this is the primary place reserved URI characters could be encoded.
v2.0.28
Fix the response to the restconf depth parameter RFC 8040 section B.3.2 gives examples of how to respond to the depth parameter on a restconf query. The current output is not consistent with the example output.
v2.0.27
Stop the POST, PUT and PATCH of the data of a leaf list. A leaf list entry should be fully defined in the data portion of the set.
v2.0.26
Better checking of list numerical ordering
v2.0.25
Pass correct path to rpc handlers from DELETE
v2.0.24
Support RPC with the same name as a container Use _ to indicate the container above has an action rpc with the same name.