mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Updated bigchaindb-abci (#2689)
* Updated bigchaindb-abci Reason: gevent API change breaks BigchainDB installation Signed-off-by: David Dashyan <mail@davie.li> * Version bump Signed-off-by: David Dashyan <mail@davie.li> * Updated changelog
This commit is contained in:
parent
9e99c024d3
commit
186cd87444
19
CHANGELOG.md
19
CHANGELOG.md
@ -25,6 +25,25 @@ For reference, the possible headings are:
|
||||
* **Known Issues**
|
||||
* **Notes**
|
||||
|
||||
## [2.2.1] - 2020-04-14
|
||||
|
||||
### Fixed
|
||||
|
||||
Gevent library API update is incompatible with bigchaindb-abci 1.0.1 version.
|
||||
Updated bigchaindb-abci.
|
||||
|
||||
## [2.2.0] - 2020-02-20
|
||||
|
||||
### Added
|
||||
|
||||
Support for multiple ABCI versions.
|
||||
|
||||
## [2.1.0] - 2019-11-06
|
||||
|
||||
### Added
|
||||
|
||||
Option for last transaction retrieval added.
|
||||
|
||||
## [2.0] - 2019-09-26
|
||||
|
||||
### Changed
|
||||
|
@ -66,8 +66,11 @@ def send_naughty_tx(asset, metadata):
|
||||
# Then she expects a nicely formatted error code
|
||||
status_code = sent_transaction.status_code
|
||||
error = sent_transaction.error
|
||||
regex = '\{"message":"Invalid transaction \\(ValidationError\\): Invalid key name .* in asset object. ' \
|
||||
'The key name cannot contain characters .* or null characters","status":400\}\n'
|
||||
regex = (
|
||||
r'\{\s*\n*'
|
||||
r'\s*"message": "Invalid transaction \(ValidationError\): Invalid key name.*The key name cannot contain characters.*\n*' # noqa
|
||||
r'\s*"status": 400\n*'
|
||||
r'\s*\}\n*')
|
||||
assert status_code == 400
|
||||
assert re.fullmatch(regex, error), sent_transaction
|
||||
# Otherwise, she expects to see her transaction in the database
|
||||
|
@ -3,7 +3,7 @@
|
||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
||||
|
||||
__version__ = '2.2.0'
|
||||
__version__ = '2.2.1'
|
||||
__short_version__ = '2.2'
|
||||
|
||||
# Supported Tendermint versions
|
||||
|
6
setup.py
6
setup.py
@ -77,15 +77,15 @@ install_requires = [
|
||||
'cryptoconditions==0.8.0',
|
||||
'python-rapidjson~=0.6.0',
|
||||
'logstats~=0.2.1',
|
||||
'flask>=0.10.1',
|
||||
'flask~=0.12.4',
|
||||
'flask-cors~=3.0.0',
|
||||
'flask-restful~=0.3.0',
|
||||
'requests>=2.20.0',
|
||||
'requests~=2.20.0',
|
||||
'gunicorn~=19.0',
|
||||
'jsonschema~=2.5.1',
|
||||
'pyyaml>=4.2b1',
|
||||
'aiohttp~=3.0',
|
||||
'bigchaindb-abci==1.0.1',
|
||||
'bigchaindb-abci>=1.0.2',
|
||||
'setproctitle~=1.1.0',
|
||||
'packaging~=18.0',
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user