Skip to content

Commit e029085

Browse files
authored
Merge pull request #6 from ygorelik/0.8.4
Merging private 0.8.4 to private master
2 parents 42f4cbd + 9f1bf7e commit e029085

File tree

161 files changed

+6381
-1540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+6381
-1540
lines changed

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ debug.log
1616
netconf.log
1717
protocol.log
1818
myenv
19-
mypython
20-
mypython3
2119
py2env
2220
py3env
23-
v/
21+
venv/
2422
gittmp*/
2523
.DS_Store
2624
gen-api/
@@ -39,3 +37,4 @@ protobuf-3.5.0
3937
sdk/python/gnmi/build
4038
sdk/python/gnmi/dist
4139
sdk/python/gnmi/ydk_service_gnmi.egg-info
40+
venv

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ matrix:
1818
go: 1.9
1919
# - env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=2.7
2020
# - env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=2.7 GNMI=true
21-
- env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=2.7
22-
- env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=2.7 GNMI=true
21+
- env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=3.6
22+
- env: DOCKER=true OS_TYPE=centos OS_VERSION=centos7 PYTHON_VERSION=3.6 GNMI=true
2323
# - env: DOCKER=true OS_TYPE=ubuntu OS_VERSION=xenial PYTHON_VERSION=2.7
2424
# - env: DOCKER=true OS_TYPE=ubuntu OS_VERSION=xenial PYTHON_VERSION=2.7 GNMI=true
2525
- env: DOCKER=true OS_TYPE=ubuntu OS_VERSION=xenial PYTHON_VERSION=3.5

CHANGES.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
### 2019-10-15 version 0.8.4
2+
3+
#### New features and enhancements
4+
* Expanded meta data in Python bundles by adding flags `has_must` and `has_when` ([#927](https://github.com/CiscoDevNet/ydk-gen/issues/927))
5+
* Added utility function to compare two entities and build diff ([#925](https://github.com/CiscoDevNet/ydk-gen/issues/925))
6+
* Adjusted C++ code to work with gcc compiler version 4.8.5 (default for CentOS-7.x)
7+
8+
#### Resolved GitHub issues
9+
* 'ietf-netconf-monitoring:get-schema' returns schema with escape sequences ([#614](https://github.com/CiscoDevNet/ydk-gen/issues/614))
10+
* NETCONF provider should raise more appropriate exceptions ([#774](https://github.com/CiscoDevNet/ydk-gen/issues/774))
11+
* YList test fails when list entity added before keys are initialized ([#800](https://github.com/CiscoDevNet/ydk-gen/issues/800))
12+
* Inherited classes not initialized properly in Python3 when constructor uses super() ([#921](https://github.com/CiscoDevNet/ydk-gen/issues/921))
13+
* Delete operation fails on container ([#931](https://github.com/CiscoDevNet/ydk-gen/issues/931))
14+
* Absolute path for generated entity of second level list child is incorrect ([#933](https://github.com/CiscoDevNet/ydk-gen/issues/933))
15+
* Go: When entity having children is built from model API the child entities parent is nil ([#938](https://github.com/CiscoDevNet/ydk-gen/issues/938))
16+
* gNMI Provider does not preserve original strings ([#940](https://github.com/CiscoDevNet/ydk-gen/issues/940))
17+
* gNMISession fails to decode GetRequest response when returned values is empty string ([#943](https://github.com/CiscoDevNet/ydk-gen/issues/943))
18+
* No way to retrieve numeric value of enums in cpp generated code ([#944](https://github.com/CiscoDevNet/ydk-gen/issues/944))
19+
* XmlSubtreeCodec fails decode payload with augmented component ([#956](https://github.com/CiscoDevNet/ydk-gen/issues/956))
20+
* Debian package for C++ bundles getting installed to wrong location ([#962](https://github.com/CiscoDevNet/ydk-gen/issues/962))
21+
22+
#### Documentation improvements
23+
Added documentation for XmlSubtreeCodec and JsonSubtreeCodec.
24+
25+
#### Bundle improvements
26+
* Released cisco-nx-os bundle to support Cisco NX OS 9.3.1
27+
* Released cisco-ios-xr bundle to support Cisco IOS XR OS 6.5.3
28+
29+
130
### 2019-05-15 version 0.8.3
231

332
#### Bundle improvements

0 commit comments

Comments
 (0)