mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
0ec9e80960
21
CHANGELOG.md
21
CHANGELOG.md
@ -15,8 +15,29 @@ For reference, the possible headings are:
|
|||||||
* **Fixed** for any bug fixes.
|
* **Fixed** for any bug fixes.
|
||||||
* **Security** to invite users to upgrade in case of vulnerabilities.
|
* **Security** to invite users to upgrade in case of vulnerabilities.
|
||||||
* **External Contributors** to list contributors outside of BigchainDB GmbH.
|
* **External Contributors** to list contributors outside of BigchainDB GmbH.
|
||||||
|
* **Known Issues**
|
||||||
* **Notes**
|
* **Notes**
|
||||||
|
|
||||||
|
## [2.0 Beta 1] - 2018-06-01
|
||||||
|
|
||||||
|
Tag name: v2.0.0b1
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fixed a bug that arose with some code that treated transactions-waiting-for-block-inclusion as if they were already stored in MongoDB (i.e. already in a block). [Pull request #2318](https://github.com/bigchaindb/bigchaindb/pull/2318)
|
||||||
|
* If a user asked for a block and it happened to be an empty block, BigchainDB returned 404 Not Found, as if the block did not exist. Now it returns a 200 OK with a block containing no transactions, i.e. an empty block. [Pull request #2321](https://github.com/bigchaindb/bigchaindb/pull/2321)
|
||||||
|
|
||||||
|
### Known Issues
|
||||||
|
|
||||||
|
* An issue was found with the `bigchaindb upsert-validator` command. A solution was proposed in [BEP-19](https://github.com/bigchaindb/BEPs/pull/45) and is being implemented in [pull request #2314](https://github.com/bigchaindb/bigchaindb/pull/2314)
|
||||||
|
* Some users are reporting that they sometimes lose the ability to post new transactions, but they can still retrieve existing transactions; see [issue #2322](https://github.com/bigchaindb/bigchaindb/pull/2322). It seems the issue may be with Tendermint; see [tendermint/tendermint#1642](https://github.com/tendermint/tendermint/issues/1642)
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
|
||||||
|
* There's a [new docs page](https://docs.bigchaindb.com/projects/server/en/v2.0.0b1/simple-network-setup.html) about how to set up a network where each node uses a single virtual machine.
|
||||||
|
* We checked, and BigchainDB 2.0 Beta 1 works with MongoDB 3.6 (and 3.4).
|
||||||
|
* Support for RethinkDB is completely gone.
|
||||||
|
|
||||||
## [2.0 Alpha 6] - 2018-05-17
|
## [2.0 Alpha 6] - 2018-05-17
|
||||||
|
|
||||||
Tag name: v2.0.0a6
|
Tag name: v2.0.0a6
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
__version__ = '2.0.0a6'
|
__version__ = '2.0.0b1'
|
||||||
__short_version__ = '2.0a6'
|
__short_version__ = '2.0b1'
|
||||||
|
|||||||
@ -154,7 +154,7 @@ spec:
|
|||||||
timeoutSeconds: 15
|
timeoutSeconds: 15
|
||||||
# BigchainDB container
|
# BigchainDB container
|
||||||
- name: bigchaindb
|
- name: bigchaindb
|
||||||
image: bigchaindb/bigchaindb:2.0.0-alpha6
|
image: bigchaindb/bigchaindb:2.0.0-beta1
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
args:
|
args:
|
||||||
- start
|
- start
|
||||||
|
|||||||
@ -34,7 +34,7 @@ spec:
|
|||||||
terminationGracePeriodSeconds: 10
|
terminationGracePeriodSeconds: 10
|
||||||
containers:
|
containers:
|
||||||
- name: bigchaindb
|
- name: bigchaindb
|
||||||
image: bigchaindb/bigchaindb:2.0.0-alpha6
|
image: bigchaindb/bigchaindb:2.0.0-beta1
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
args:
|
args:
|
||||||
- start
|
- start
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -111,7 +111,7 @@ setup(
|
|||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 4 - Beta',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Topic :: Database',
|
'Topic :: Database',
|
||||||
'Topic :: Database :: Database Engines/Servers',
|
'Topic :: Database :: Database Engines/Servers',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user