Skip to content

Commit 8a8bd2b

Browse files
committed
Merge branch 'gather/input-validation-v2' of github.com:splitio/python-client into feature/input-validation-v2-split-names
2 parents 2dfdd2c + 538fd29 commit 8a8bd2b

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22

33
python:
44
- "2.7"
5+
- "3.6"
56

67
services:
78
- redis-server

CHANGES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
8.0.0 (Apr 24, 2019)
2+
- Full SDK Refactor/rewrite.
3+
- New block until ready behaviour.
4+
- Support for async destroy.
5+
- Dynamic configs.
6+
- Impressions not flushing on destroy bugfix.
7+
- Removed unnecessary dependencies.
8+
- Test suite rewritten.
19
7.0.1 (Mar 8, 2019)
210
- Updated Splits refreshing rate.
311
- Replaced exception log level to error level.

splitio/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '8.0.0-rc1'
1+
__version__ = '8.0.0'

tests/integration/test_client_e2e.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,7 @@ def test_localhost_e2e(self):
576576
"""Instantiate a client with a YAML file and issue get_treatment() calls."""
577577
filename = os.path.join(os.path.dirname(__file__), 'files', 'file2.yaml')
578578
factory = get_factory('localhost', config={'splitFile': filename})
579+
factory.block_until_ready()
579580
client = factory.client()
580581
assert client.get_treatment_with_config('key', 'my_feature') == ('on', '{"desc" : "this applies only to ON treatment"}')
581582
assert client.get_treatment_with_config('only_key', 'my_feature') == (

0 commit comments

Comments
 (0)