-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from thorgate/fix/current-issues
Fix current issues
- Loading branch information
Showing
10 changed files
with
224 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.1.0] - 2021-07-07 | ||
|
||
### Added | ||
|
||
- Requests timing out in 2 minutes (can be overridden by subclassing the `ElvisClient`), | ||
previously, there was no timeout and requests could hang for long time causing resource | ||
leaks | ||
- Add helper to provide choices tuples from Enums (can be used with Django) | ||
- This changelog | ||
|
||
### Changed | ||
|
||
- Date fields are now properly parsed to datetime | ||
- Elvis proxy exception formatting is improved so that exceptions can actually | ||
be read | ||
|
||
### Fixed | ||
|
||
- ElvisModel was mutating its constructor argument, sometimes causing undesired data changes | ||
- Getting transport orders now works in python 3 | ||
|
||
## [1.0.1] - 2017-01-05 | ||
|
||
### Added | ||
|
||
- Released to PyPi | ||
|
||
### Fixed | ||
|
||
- Misc fixes related to automated deploys and quality checks | ||
|
||
[1.1.0]: https://github.com/thorgate/python-lvis/compare/v1.0.1...v1.1.0 | ||
[1.0.1]: https://github.com/thorgate/python-lvis/compare/1.0.0-rc3...v1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
include AUTHORS.rst | ||
include LICENSE | ||
include README.md | ||
include CHANGELOG.md | ||
recursive-include elvis *py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
python-lvis | ||
=========== | ||
# python-lvis | ||
|
||
[![pypi Status](https://badge.fury.io/py/python-lvis.png)](https://badge.fury.io/py/python-lvis) | ||
[![Build Status](https://travis-ci.org/thorgate/python-lvis.svg?branch=master)](https://travis-ci.org/thorgate/python-lvis) | ||
|
||
https://www.veoseleht.ee | ||
Python bindings for https://www.veoseleht.ee API (aka ELVIS), requires ELVIS proxy that translates requests from | ||
rest to SOAP (you can use https://gitlab.com/thorgate-public/lvisproxy/ proxy for this) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = '1.0.1' | ||
__version__ = '1.1.0' | ||
__all__ = ['api', 'enums', 'models'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.