Skip to content

Commit

Permalink
Bump version to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfehler committed Apr 20, 2020
1 parent f717f60 commit 740affb
Show file tree
Hide file tree
Showing 2 changed files with 165 additions and 159 deletions.
258 changes: 132 additions & 126 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,126 +1,132 @@
# Changelog
All notable changes to this project will be documented in this file.


## [0.15.0] - 2019-12-15
### Changed
- Speed up is_not_<x> methods. Requires splinter >=0.13.0.

## [0.14.0] - 2019-11-19
### Fixed
- Repeating.has_children no longer fails if no children found.
- Repeating.has_children no longer builds a list of children containers, just checks roots.

## [0.13.0] - 2019-11-16
### Added
- Field.is_<x> and Field.is_not_<x> methods now use Stere.retry_time if not specified.
- Stere.retry_time can be set through the stere.ini file.
- Repeating and RepeatingArea now have the has_children() method.

### Changed
- FindByDataStarAttribute renamed to FindByAttribute

### Fixed
- Field.is_present() and Field.is_not_present() now work correctly with FindByAttribute

## [0.12.0] - 2019-10-21
### Fixed
- Field.is_present() and Field.is_not_present() now work with Fields inside a RepeatingArea

## [0.11.0] - 2019-10-17
### Added
- Page.page_url now built from Stere.base_url and Page.url_suffix

## [0.10.0] - 2019-10-09
### Changed
- An Area can now be placed inside a RepeatingArea
- Areas.containing now accepts nested values
- Areas.contain now accepts nested values

## [0.9.0] - 2019-09-12
### Added
- .is_clickable() and .is_not_clickable() are now available for splinter Fields.

## [0.8.0] - 2019-05-30
### Added
- Added Money Field in Splinter integration. [py-moneyed](https://github.com/limist/py-moneyed) is used to provide functionality.

## [0.7.0] - 2019-03-14
### Added
- Splinter and Appium Input Fields can now take a default_value parameter
- Stere.url_navigator has a default value when Splinter is used

### Changed
- If an invalid locator strategy is used, the error message now reports valid strategies

## [0.6.1] - 2019-02-22
### Changed
- Base Field, Root, and Text now use @stere_performer instead of a custom perform method

### Fixed
- Implicit Field calls now work with all Fields

## [0.6.0] - 2019-02-22
### Added
- Field can take the keyword argument "returns". The object given will be returned after Field.perform() is called
- Field now executes Field.perform() when called

### Changed
- Stere decorators can now be used by importing Field.decorators

## [0.5.0] - 2019-01-15
### Added
- Add Field.value_equals() and Field.value_contains() methods
- Add Areas.containing()
- Add Repeating class to handle ridiculously nested collections

### Changed
- Deprecated RepeatingArea.area_with()
- Areas container only accepts Area objects inside it

### Fixed
- FindByDataStarAttribute inherits from SplinterBase

## [0.4.0] - 2019-01-02
### Added
- Added RepeatingArea.areas.contain() method

### Changed
- RepeatingArea.areas now returns a list-like object instead of a list
- Page.navigate() returns the Page instance

### Fixed
- If a Field is found multiple times, ensure an error is thrown when Field.find() is used

## [0.3.0] - 2018-11-06
### Added
- Appium compatibility started

### Changed
- RepeatingArea can now use any Field as a root
- Root Field no longer overrides Field.find()

## [0.2.3] - 2018-10-19
### Fixed
- Preserve class name on Fields that implement a performer
- Fix implementation of is_visible and is_not_visible when using Splinter

## [0.2.2] - 2018-10-16
### Added
- python 3.7 now supported
- stere.ini config file can be used to specify automation library
- Field implements the \__repr__ method
- RepeatingArea implements the \__len__ method

### Changed
- Splinter specific implementation refactored in Field.find()

## [0.2.1] - 2018-09-12
### Added
- Area.perform() can now take keyword arguments

## [0.2.0] - 2018-08-23
### Added
- Page class is now a Context Manager
- Added is_visible and is_not_visible methods to Field
- Added CHANGELOG file
# Changelog
All notable changes to this project will be documented in this file.


## [0.16.0] - 2020-04-20
### Changed
- Field.value_contains and Field.value_equals use Stere.retry_time as a default value
- Splinter Dropdown.select() retries if value is not found


## [0.15.0] - 2019-12-15
### Changed
- Speed up is_not_<x> methods. Requires splinter >=0.13.0.

## [0.14.0] - 2019-11-19
### Fixed
- Repeating.has_children no longer fails if no children found.
- Repeating.has_children no longer builds a list of children containers, just checks roots.

## [0.13.0] - 2019-11-16
### Added
- Field.is_<x> and Field.is_not_<x> methods now use Stere.retry_time if not specified.
- Stere.retry_time can be set through the stere.ini file.
- Repeating and RepeatingArea now have the has_children() method.

### Changed
- FindByDataStarAttribute renamed to FindByAttribute

### Fixed
- Field.is_present() and Field.is_not_present() now work correctly with FindByAttribute

## [0.12.0] - 2019-10-21
### Fixed
- Field.is_present() and Field.is_not_present() now work with Fields inside a RepeatingArea

## [0.11.0] - 2019-10-17
### Added
- Page.page_url now built from Stere.base_url and Page.url_suffix

## [0.10.0] - 2019-10-09
### Changed
- An Area can now be placed inside a RepeatingArea
- Areas.containing now accepts nested values
- Areas.contain now accepts nested values

## [0.9.0] - 2019-09-12
### Added
- .is_clickable() and .is_not_clickable() are now available for splinter Fields.

## [0.8.0] - 2019-05-30
### Added
- Added Money Field in Splinter integration. [py-moneyed](https://github.com/limist/py-moneyed) is used to provide functionality.

## [0.7.0] - 2019-03-14
### Added
- Splinter and Appium Input Fields can now take a default_value parameter
- Stere.url_navigator has a default value when Splinter is used

### Changed
- If an invalid locator strategy is used, the error message now reports valid strategies

## [0.6.1] - 2019-02-22
### Changed
- Base Field, Root, and Text now use @stere_performer instead of a custom perform method

### Fixed
- Implicit Field calls now work with all Fields

## [0.6.0] - 2019-02-22
### Added
- Field can take the keyword argument "returns". The object given will be returned after Field.perform() is called
- Field now executes Field.perform() when called

### Changed
- Stere decorators can now be used by importing Field.decorators

## [0.5.0] - 2019-01-15
### Added
- Add Field.value_equals() and Field.value_contains() methods
- Add Areas.containing()
- Add Repeating class to handle ridiculously nested collections

### Changed
- Deprecated RepeatingArea.area_with()
- Areas container only accepts Area objects inside it

### Fixed
- FindByDataStarAttribute inherits from SplinterBase

## [0.4.0] - 2019-01-02
### Added
- Added RepeatingArea.areas.contain() method

### Changed
- RepeatingArea.areas now returns a list-like object instead of a list
- Page.navigate() returns the Page instance

### Fixed
- If a Field is found multiple times, ensure an error is thrown when Field.find() is used

## [0.3.0] - 2018-11-06
### Added
- Appium compatibility started

### Changed
- RepeatingArea can now use any Field as a root
- Root Field no longer overrides Field.find()

## [0.2.3] - 2018-10-19
### Fixed
- Preserve class name on Fields that implement a performer
- Fix implementation of is_visible and is_not_visible when using Splinter

## [0.2.2] - 2018-10-16
### Added
- python 3.7 now supported
- stere.ini config file can be used to specify automation library
- Field implements the \__repr__ method
- RepeatingArea implements the \__len__ method

### Changed
- Splinter specific implementation refactored in Field.find()

## [0.2.1] - 2018-09-12
### Added
- Area.perform() can now take keyword arguments

## [0.2.0] - 2018-08-23
### Added
- Page class is now a Context Manager
- Added is_visible and is_not_visible methods to Field
- Added CHANGELOG file
66 changes: 33 additions & 33 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
import os

from setuptools import find_packages, setup


def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, 'r') as f:
return f.read()


setup(
name="stere",
version="0.15.0",
description="A nice way of implementing the Page Object pattern.",
long_description=read('README.rst'),
author="Joshua Fehler",
author_email="jsfehler@gmail.com",
license="MIT",
url="https://github.com/jsfehler/stere",
packages=find_packages(),
install_requires=[
'py-moneyed==0.8.0',
],
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
),
)
import os

from setuptools import find_packages, setup


def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, 'r') as f:
return f.read()


setup(
name="stere",
version="0.16.0",
description="A nice way of implementing the Page Object pattern.",
long_description=read('README.rst'),
author="Joshua Fehler",
author_email="jsfehler@gmail.com",
license="MIT",
url="https://github.com/jsfehler/stere",
packages=find_packages(),
install_requires=[
'py-moneyed==0.8.0',
],
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
),
)

0 comments on commit 740affb

Please sign in to comment.