From 25544c8ca83ab0dd5ecff68f19bb7c805a04be07 Mon Sep 17 00:00:00 2001 From: epiphyte Date: Fri, 5 Feb 2021 01:46:05 +0000 Subject: [PATCH 1/2] Constrain lmdb for the time being. --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 57ccabe513..cec95424c5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pyOpenSSL>=16.2.0,<20.0.0 msgpack>=1.0.2,<1.1.0 xxhash>=1.4.4,<2.0.0 -lmdb>=1.0.0,<2.0.0 +lmdb>=1.0.0,<1.1.0 tornado>=6.0.3,<7.0.0 regex>=2020.5.14 PyYAML>=5.2,<6.0 diff --git a/setup.py b/setup.py index aaa10d5175..28f2f8bf2c 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def run(self): 'pyOpenSSL>=16.2.0,<20.0.0', 'msgpack>=1.0.2,<1.1.0', 'xxhash>=1.4.4,<2.0.0', - 'lmdb>=1.0.0,<2.0.0', + 'lmdb>=1.0.0,<1.1.0', 'tornado>=6.0.3,<7.0.0', 'regex>=2020.5.14', 'PyYAML>=5.2,<6.0', From 66da4bf547f333eb04cb0af6258fa9cb02660a9c Mon Sep 17 00:00:00 2001 From: epiphyte Date: Fri, 5 Feb 2021 01:52:36 +0000 Subject: [PATCH 2/2] Changelog for v2.26.0 --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5edd1768c5..46f7c77571 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,30 @@ Synapse Changelog ***************** +v2.26.0 - 2020-02-05 +==================== + +Features and Enhancements +------------------------- +- Add Storm commands for easily adding, deleting, and listing layer push + and pull configurations. + (`#2071 `_) + +Bugfixes +-------- +- Fix ``layer.getPropCount()`` API for universal properties. + (`#2073 `_) +- Add a missing async yield in ``Snap.addNodes()``. + (`#2074 `_) +- Constrain lmdb version due to unexpected behavior in ``v1.1.0``. + (`#2075 `_) + +Improved Documentation +---------------------- +- Update user docs for Storm flow control and data model references. + (`#2066 `_) + + v2.25.0 - 2020-02-01 ====================