Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
7.1.1 (Feb 11, 2021)
7.1.1 (March XX, 2021)
- Removed unused logic for HTTP and requests dependency.
- Removed all producer logic for Storages.
- Added SafeRedisWrapper for handling exception in Redis.
- Fixed typos in bucket and CONTRIBUTORS-GUIDE.

7.1.0 (Dec 3, 2021)
- Added a new option to use when running Redis in cluster mode called `keyHashTags` which receives a list of hashtags from which the SDK will randomly pick one to use on the generated instance.
Expand Down
32 changes: 20 additions & 12 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,53 +5,61 @@
<php>
<const name="REDIS_HOST" value="localhost"/>
<const name="REDIS_PORT" value="6379"/>
<const name="TEST_PREFIX" value="SPLITIO_TEST:."/>
</php>

<testsuites>
<testsuite name="splitio">
<directory suffix="Test.php">tests/</directory>
</testsuite>
<testsuite name="redis-adapter">
<file>tests/Suite/Redis/CacheInterfacesTest.php</file>
<testsuite name="adapter">
<directory suffix="Test.php">tests/Suite/Adapter</directory>
</testsuite>
<testsuite name="attributes">
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
</testsuite>
<testsuite name="common">
<directory suffix="Test.php">tests/Suite/Common/</directory>
</testsuite>
<testsuite name="component">
<directory suffix="Test.php">tests/Suite/Component/</directory>
</testsuite>
<testsuite name="dynamic_configurations">
<directory suffix="Test.php">tests/Suite/DynamicConfigurations/</directory>
</testsuite>
<testsuite name="engine">
<directory suffix="Test.php">tests/Suite/Engine/</directory>
</testsuite>
<testsuite name="input_validation">
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
</testsuite>
<testsuite name="matchers">
<directory suffix="Test.php">tests/Suite/Matchers/</directory>
</testsuite>
<testsuite name="metrics">
<directory suffix="Test.php">tests/Suite/Metrics/</directory>
</testsuite>
<testsuite name="redis">
<directory suffix="Test.php">tests/Suite/Redis/</directory>
</testsuite>
<testsuite name="sdk">
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
</testsuite>
<testsuite name="attributes">
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
</testsuite>
<testsuite name="input_validation">
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
</testsuite>



<testsuite name="integration">
<directory suffix="Test.php">tests/Suite/Adapter/</directory>
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
<directory suffix="Test.php">tests/Suite/Common/</directory>
<directory suffix="Test.php">tests/Suite/Component/</directory>
<directory suffix="Test.php">tests/Suite/DynamicConfigurations/</directory>
<directory suffix="Test.php">tests/Suite/Engine/</directory>
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
<directory suffix="Test.php">tests/Suite/Matchers/</directory>
<directory suffix="Test.php">tests/Suite/Metrics/</directory>
<directory suffix="Test.php">tests/Suite/Redis/</directory>
<directory suffix="Test.php">tests/Suite/Sdk/</directory>
<directory suffix="Test.php">tests/Suite/Adapter/</directory>
<directory suffix="Test.php">tests/Suite/Attributes/</directory>
<directory suffix="Test.php">tests/Suite/InputValidation/</directory>
<directory suffix="Test.php">tests/Suite/DynamicConfigurations/</directory>
</testsuite>
</testsuites>

Expand Down
174 changes: 0 additions & 174 deletions src/SplitIO/Component/Cache/Item.php

This file was deleted.

Loading