Skip to content

Commit

Permalink
New release v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Kubala committed Jan 23, 2020
1 parent 0e11982 commit 9b42578
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 30 deletions.
59 changes: 32 additions & 27 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,81 +1,86 @@
## moler 1.5.1

### Fixed
* SSH regex for fingerptint prompt

## moler 1.5.0

### Added
* Termianl binary debug
* Termianl binary debug

### Improved
* CI pipeline
* ls command
* CI pipeline
* ls command

### Changed
* Redefined timeout for telnet and ssh
* RegexHelper checks if parameter is not None
* Redefined timeout for telnet and ssh
* RegexHelper checks if parameter is not None


## moler 1.4.0

### Changed
* connection name returned by iperf2 uses "port@host" format to not confuse on IPv6 (fd00::1:0:5901 -> 5901@fd00::1:0)
* connection name returned by iperf2 uses "port@host" format to not confuse on IPv6 (fd00::1:0:5901 -> 5901@fd00::1:0)

### Deprecated
* `config_type` parameter of `load_config()` is not needed, configuration type is autodetected
* `config_type` parameter of `load_config()` is not needed, configuration type is autodetected


## moler 1.3.1

### Added
* possibility to enable/disable logging each occurrence of event
* backward compatibility for load_device_from_config()
* possibility to enable/disable logging each occurrence of event
* backward compatibility for load_device_from_config()

### Fixed
* device closing (dev.remove() method) fails if device was already closed
* device closing (dev.remove() method) fails if device was already closed


## moler 1.3.0

### Added
* force Unix device to return into local shell when device is closing (that would close ssh if was open)
* allow adding devices after initial load of configuration
* new UNIX command handled by moler: **devmem**
* iperf command refactored into iperf2 command
* force Unix device to return into local shell when device is closing (that would close ssh if was open)
* allow adding devices after initial load of configuration
* new UNIX command handled by moler: **devmem**
* iperf command refactored into iperf2 command

### Fixed
* wrong iperf bandwidth calculation when bandwidth displayed in Kbits/sec, Mbits/sec, Gbits/sec
* first moler prompt to catch
* removal of new line characters on some connections
* wrong iperf bandwidth calculation when bandwidth displayed in Kbits/sec, Mbits/sec, Gbits/sec
* first moler prompt to catch
* removal of new line characters on some connections

### Deprecated
* stop using Iperf command from moler.cmd.unix.iperf; use Iperf2 from moler.cmd.unix.iperf2 instead
* stop using Iperf command from moler.cmd.unix.iperf; use Iperf2 from moler.cmd.unix.iperf2 instead


## moler v1.2.0

### Added
* Possibility to forget device
* Change number of retry whe terminal not operable yet
* Possibility to forget device
* Change number of retry whe terminal not operable yet

### Fixed
* fix calculating timeout of sudo command
* fix calculating timeout of sudo command


## moler v1.1.0

### Added
* new UNIX command handled by moler: **gzip**
* skip asyncio test under python 2 (internal CI of moler)
* new UNIX command handled by moler: **gzip**
* skip asyncio test under python 2 (internal CI of moler)

### Fixed
* wrong processing of chunked lines by textual events
* sudo command incorrectly handling result of sudo-embedded command
* wrong processing of chunked lines by textual events
* sudo command incorrectly handling result of sudo-embedded command


## moler v1.0.1

### Added
* improved documentation generation
* improved documentation generation


## moler v1.0.0

### Added
* first official release of Moler
* first official release of Moler
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![image](https://img.shields.io/badge/pypi-v1.5.0-blue.svg)](https://pypi.org/project/moler/)
[![image](https://img.shields.io/badge/pypi-v1.5.1-blue.svg)](https://pypi.org/project/moler/)
[![image](https://img.shields.io/badge/python-2.7%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue.svg)](https://pypi.org/project/moler/)
[![Build Status](https://travis-ci.org/nokia/moler.svg?branch=master)](https://travis-ci.org/nokia/moler)
[![Coverage Status](https://coveralls.io/repos/github/nokia/moler/badge.svg?branch=master)](https://coveralls.io/github/nokia/moler?branch=master)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'Nokia'

# The short X.Y version
version = '1.5.0'
version = '1.5.1'
# The full version, including alpha/beta/rc tags
release = 'stable'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='moler', # Required
version='1.5.0', # Required
version='1.5.1', # Required
description='Moler is library to help in building automated tests', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
Expand Down

0 comments on commit 9b42578

Please sign in to comment.