All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to Semantic Versioning.
- Loosened the Monolog dependency constraint so that it will accept either a 1.x or a 2.x version. This should be compatible with all currently supported PHP versions; the SDK's use of Monolog does not rely on any features that are specific to 1.x. (Thanks, mrtus!)
- In rare circumstances (depending on the exact data in the flag configuration, the flag's salt value, and the user properties), a percentage rollout could fail and return a default value, logging the error "Data inconsistency in feature flag ... variation/rollout object with no variation or rollout". This would happen if the user's hashed value fell exactly at the end of the last "bucket" (the last variation defined in the rollout). This has been fixed so that the user will get the last variation.
- Added integration with the
phpredis
extension, which supports persistent Redis connections unlike the existingpredis
integration. SeeLaunchDarkly::Integrations::PHPRedis
. (Thanks, nicofff!)
- Added support for upcoming LaunchDarkly experimentation features. See
LDClient.track
.
- The SDK could throw an exception when calling
allFlagsState()
if APC/APCu caching was enabled. This bug was introduced in the 3.5.0 release. (Thanks, omnicolor!) - Improved unit test coverage for the caching logic.
- Changed the package name from
launchdarkly/launchdarkly-php
tolaunchdarkly/server-sdk
There are no other changes in this release. Substituting launchdarkly/launchdarkly-php
version 3.5.3 with launchdarkly/server-sdk
version 3.5.4 will not affect functionality.
- Segment rollout calculations did not work correctly if the rollout was based on a user attribute other than
key
; all users would end up in the same bucket. (Thanks, m6w6!) - Running the SDK unit tests is now simpler, as the database integrations can be skipped. See
CONTRIBUTING.md
.
The LaunchDarkly SDK repositories are being renamed for consistency. This repository is now php-server-sdk
rather than php-client
.
The package name will also change. In the 3.5.3 release, it is still launchdarkly/launchdarkly-php
; in all future releases, it will be launchdarkly/server-sdk
. No further updates to the launchdarkly/launchdarkly-php
package will be published after this release.
- In the 3.5.1 release, the
VERSION
constant was incorrectly still reporting the version as "3.5.0". The constant is now correct. There are no other changes in this release.
- Setting user attributes to non-string values when a string was expected would cause analytics events not to be processed. The SDK will now convert attribute values to strings as needed.
- If
track
oridentify
is called without a user, the SDK now logs a warning, and does not send an analytics event to LaunchDarkly (since it would not be processed without a user).
- It is now possible to use Consul or DynamoDB as a data store with
ld-relay
, similar to the existing Redis integration. SeeLaunchDarkly\Integrations\Consul
andLaunchDarkly\Integrations\DynamoDb
, and the reference guide Using a persistent feature store. - When using the Redis integration, you can specify a Redis connection timeout different from the default of 5 seconds by setting the option
redis_timeout
to the desired number of seconds. (Thanks, jjozefowicz!) - It is now possible to inject feature flags into the client from local JSON files, replacing the normal LaunchDarkly connection. This would typically be for testing purposes. See
LaunchDarkly\Integrations\Files
. - The
allFlagsState
method now accepts a new option,detailsOnlyForTrackedFlags
, which reduces the size of the JSON representation of the flag state by omitting some metadata. Specifically, it omits any data that is normally used for generating detailed evaluation events if a flag does not have event tracking or debugging turned on.
- The
feature_requester
andevent_publisher
configuration options now work differently: you can still set them to an instance of an implementation object, but you can also set them to a class or a class name (i.e. the same as thefeature_requester_class
option), or a factory function. Therefore, the_class
versions of these options are no longer necessary. However, the old semantics still work, so you can for instance setevent_publisher_class
to"LaunchDarkly\GuzzleEventPublisher"
, even though the new preferred way is to setevent_publisher
toLaunchDarkly\Integrations\Guzzle::featureRequester()
.
- JSON data from
allFlagsState
is now slightly smaller even if you do not use the new option described above, because it omits the flag property for event tracking unless that property is true. - The
$_anonymous
property of theLDUser
class was showing up as public rather than protected. (Thanks, dstockto!)
- Improved the performance of
allFlags
/allFlagsState
by not making redundant individual requests for prerequisite flags, when a flag is being evaluated that has prerequisites. Instead it will reuse the same flag data that it already obtained from LaunchDarkly in the "get all the flags" request.
- The new
LDClient
methodvariationDetail
allows you to evaluate a feature flag (using the same parameters as you would forvariation
) and receive more information about how the value was calculated. This information is returned in an object that contains both the result value and a "reason" object which will tell you, for instance, if the user was individually targeted for the flag or was matched by one of the flag's rules, or if the flag returned the default value due to an error.
- When evaluating a prerequisite feature flag, the analytics event for the evaluation did not include the result value if the prerequisite flag was off.
- The new
LDClient
methodallFlagsState()
should be used instead ofallFlags()
if you are passing flag data to the front end for use with the JavaScript SDK. It preserves some flag metadata that the front end requires in order to send analytics events correctly. Versions 2.5.0 and above of the JavaScript SDK are able to use this metadata, but the output ofallFlagsState()
will still work with older versions. - The
allFlagsState()
method also allows you to select only client-side-enabled flags to pass to the front end, by using the optionclientSideOnly => true
.
LDClient.allFlags()
- The
LDClient::VERSION
constant has been fixed to report the current version. In the previous release, it was still set to 3.1.0.
- The client now treats most HTTP 4xx errors as unrecoverable: that is, after receiving such an error, it will take the client offline (for the lifetime of the client instance, which in most PHP applications is just the current request-response cycle). This is because such errors indicate either a configuration problem (invalid SDK key) or a bug, which is not likely to resolve without a restart or an upgrade. This does not apply if the error is 400, 408, 429, or any 5xx error.
- Made various changes to project settings to improve the IDE experience and the build; enforced PSR-2 coding style. (Thanks, localheinz!)
- Analytics events for feature evaluations now have a
variation
property (the variation index) as well asvalue
. This will allow for better performance in future versions ofld-relay
when it is used with the PHP client.
- Fixed a bug that made segment-based rules always fall through when using
LDDFeatureRequester
.
- Support for a new LaunchDarkly feature: reusable user segments.
- Adds support for a future LaunchDarkly feature, coming soon: semantic version user attributes.
- Support for private user attributes.
- Stop retrying HTTP requests if the API key has been invalidated.
- User bucketing supports integer attributes. Thanks @mlund01!
- Source code complies with the PSR-2 standard. Thanks @valerianpereira!
- The PSR-4 autoloading specification is now correct. Thanks @jenssegers!
- New
flush
method forces events to be published to the LaunchDarkly service. This can be useful ifLDClient
is not automatically destroyed at the end of a request. Thanks @foxted!
- Documentation comment references the correct namespace for
CacheStorageInterface
. Thanks @pmeth!
- Support for publishing events via ld-relay
- Allow
EventPublisher
to be injected into the client. GuzzleEventPublisher
as a synchronous, in-process alternative to publishing events via background processes.- Allow the
curl
path used byCurlEventPublisher
to be customized via thecurl
option toLDClient
. Thanks @abacaphiliac!
- Relaxed the requirement on
kevinrob/guzzle-cache-middleware
for the defaultGuzzleFeatureRequester
. - Added package suggestions in
composer.json
.
- Better handling of possibly null variations. Thanks @idirouhab!
- Better handling of possibly null targets. Thanks @idirouhab!
- Better handling of possibly null rules.
- Allow FeatureRequester to be injected into the client. Thanks @abacaphiliac!
- Allow Predis\Client to be overriden in LDDFeatureRequester. Thanks @abacaphiliac!
- Use logger interface method instead of Monolog method. Thanks @abacaphiliac!
- Improve type hinting for default. Thanks @jdrieghe!
- Removed warning when calling
allFlags
viaLDDFeatureRequester
- Removed warning when a feature flag's prerequisites happen to be null
- Use minimum versions in composer.json
- Made Monolog dependency version less strict
- Made Composer requirements less strict
- Fixed botched 2.0.2 release: Better handling of null vs false when evaluating.
- Better handling of null vs false when evaluating.
- Monolog is now a required dependency
- Support for multivariate feature flags. In addition to booleans, feature flags can now return numbers, strings, dictionaries, or arrays via the
variation
method. - New
allFlags
method returns all flag values for a specified user. - New
secureModeHash
function computes a hash suitable for the new LaunchDarkly JavaScript client's secure mode feature.
- The
FeatureRep
data model has been replaced withFeatureFlag
.FeatureFlag
is not generic.
- The
toggle
call has been deprecated in favor ofvariation
.
- The
getFlag
function has been removed.