All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to Semantic Versioning.
6.3.0 (2024-10-22)
6.2.0 (2024-06-11)
6.1.0 (2024-03-15)
Warning
If you are using the Relay Proxy, please make sure to update to v8.4.0 before updating to this version of the SDK. Failure to do so will affect the events sent to LaunchDarkly and any support data export integrations.
- Redact anonymous attributes within feature events (#193) (cdad89a)
- Update to event schema v4 (#192) (475727f)
6.0.2 (2024-01-23)
6.0.1 (2023-12-01)
The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized.
For detailed information about this version, refer to the list below. For information on how to upgrade from the previous version, read the migration guide.
- A new
Migrator
type which provides an out-of-the-box configurable migration framework. - For more advanced use cases, added new
migrationVariation
andtrackMigrationOperation
methods onLDClient
.
- PHP 8.0 support was removed.
- The legacy user format for contexts is no longer supported. To learn more, read the Contexts documentation.
- Methods which originally took an
LDContext
or anLDUser
now only accept anLDContext
. - Previously deprecated test data flag builder methods
variationForAllUsers
,valueForAllUsers
, andclearUserTargets
have been removed.
LDUser
is now deprecated in favor ofLDContext
.
- Invalid context log message now includes the flag key as part of the Psr\Log context. (Thanks, mrtus!)
- Error logging now includes the exception in the Psr\Log exception context key. (Thanks, mrtus!)
- Introduced support for an
application_info
config property which sets application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations.
- Introduced support for an
application_info
config property which sets application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations.
The latest version of this SDK supports LaunchDarkly's new custom contexts feature. Contexts are an evolution of a previously-existing concept, "users." Contexts let you create targeting rules for feature flags based on a variety of different information, including attributes pertaining to users, organizations, devices, and more. You can even combine contexts to create "multi-contexts."
For detailed information about this version, please refer to the list below. For information on how to upgrade from the previous version, please read the migration guide.
- The type
LDContext
defines the new "context" model. "Contexts" are a replacement for the earlier concept of "users"; they can be populated with attributes in more or less the same way as before, but they also support new behaviors. To learn more, read the documentation. - For all SDK methods that took an
LDUser
parameter, the parameter type can now be eitherLDUser
orLDContext
. The SDK still supportsLDUser
for now, butLDContext
is the preferred model andLDUser
may be removed in a future version.
- It was previously allowable to set a user key to an empty string. In the new context model, the key is not allowed to be empty. Trying to use an empty key will cause evaluations to fail and return the default value.
- There is no longer such a thing as a
secondary
meta-attribute that affects percentage rollouts. If you set an attribute with that name inLDContext
, it will simply be a custom attribute like any other. - Component interface types like
EventPublisher
andFeatureRequester
which applications are unlikely to reference directly (except when defining a custom component implementation) have been moved out of the main namespace into a new namespace,LaunchDarkly\Subsystems
.
- The minimum PHP version is now 8.0.
- The SDK is now more strictly compliant with the LaunchDarkly specification for date and semantic version values. This means that some values that might have been accepted in the past, which other SDKs would not accept, are now correctly considered invalid. Please review the LaunchDarkly documentation on Using date/time and semantic version operators.
- Analytics event data now uses a new JSON schema due to differences between the context model and the old user model.
- Fixed a bug in the parsing of string values in feature flags and user attributes when they were referenced with date/time operators in a targeting rule. As described in LaunchDarkly documentation, such values must use the RFC3339 date/time format; the SDK was also accepting strings in other formats (for instance, ones that did not have a time or a time zone), which would cause undefined behavior inconsistent with evaluations done by other LaunchDarkly services. This fix ensures that all targeting rules that reference an invalid date/time value are a non-match, and does not affect how the SDK treats values that are in the correct format.
- The SDK was allowing numeric values to be treated as semantic versions in targeting rules. It now correctly only allows strings, as described in LaunchDarkly documentation.
- Removed all types, fields, and methods that were deprecated as of the most recent 4.x release.
- Removed the
secondary
meta-attribute inLDUser
andLDUserBuilder
. - The
alias
method no longer exists because alias events are not needed in the new context model. - The
inline_users_in_events
option no longer exists because it is not relevant in the new context model.
- CI builds now include a cross-platform test suite implemented in https://github.com/launchdarkly/sdk-test-harness. This is in addition to unit test coverage, and ensures consistent behavior across SDKs.
- Setting a
base_uri
orevents_uri
with a non-empty path, such ashttp://my-reverse-proxy-host/launchdarkly-requests
, did not work. - The object returned by
allFlagsState()
, when converted to JSON, had an incorrect format in the case where no flags exist.
- Expanded upper version restriction on Monolog.
- The TestData class was incorrectly generating an error when updating a changed flag. (Thanks, aretenz!)
- Expanded lower version restriction on Guzzle.
- Add support for psr/log v2 and v3.
- The LaunchDarkly\Integrations\TestData is a new way to inject feature flag data programmatically into the SDK for testing—either with fixed values for each flag, or with targets and/or rules that can return different values for different users. Unlike LaunchDarkly\Integrations\Files, this mechanism does not use any external resources, only the data that your test code has provided.
- The curl command used for publishing events will now honor the connect_timeout parameter.
- Publishing events on Windows will now use PowerShell and Invoke-WebRequest instead of curl.
- Numeric strings are no longer treated like numbers in equality checks.
- User attributes with values of 0 or false will no longer be filtered out of event payloads.
- When using allFlagsState to produce bootstrap data for the JavaScript SDK, the PHP SDK was not returning the correct metadata for evaluations that involved an experiment. As a result, the analytics events produced by the JavaScript SDK did not correctly reflect experimentation results.
This major version release is for updating PHP compatibility, simplifying the SDK's dependencies, and removing deprecated names.
Except for the dependency changes described below which may require minor changes in your build, usage of the SDK has not changed in this release. For more details about changes that may be necessary, see the 3.x to 4.0 migration guide.
Dropping support for obsolete PHP versions makes it easier to maintain the SDK and keep its dependencies up to date. See LaunchDarkly's End of Life Policy regarding platform version support.
Simplifying dependencies by moving optional integration features into separate packages reduces the size of the SDK bundle, as well as reducing potential compatibility problems and vulnerabilities.
- Added type declarations to all methods. These could result in a
TypeError
at runtime if you have been passing values of the wrong types to SDK methods (including passing anull
value for a parameter that should not be null)-- although in most cases, this would have caused an error anyway at some point in the SDK code, just not such a clearly identifiable error. To detect type mistakes before runtime, you can use a static analysis tool such as Psalm.
- The minimum PHP version is now 7.3.
- Updated many dependencies to newer versions and/or more actively maintained packages.
- Removed the bundled Redis, DynamoDB, and Consul integrations. These are now provided as separate packages; see php-server-sdk-redis-predis, php-server-sdk-redis-phpredis, php-server-sdk-dynamodb, and php-server-sdk-consul.
- Removed all types and methods that were deprecated in the last 3.x version.
- Removed implementation types from the
LaunchDarkly
namespace that were annotated as@internal
and not documented, such as types that are part of the internal feature data model. These are not meant for use by application code, and are always subject to change. They have been moved intoLaunchDarklyImpl
.
- The
phpredis
integration was ignoring thephpredis_client
option for passing in a preconfigured Redis client. (Thanks, CameronHall!)
- The SDK now supports the ability to control the proportion of traffic allocation to an experiment. This works in conjunction with a new platform feature now available to early access customers.
- Added the
alias
method toLDClient
. This can be used to associate two user objects for analytics purposes with an alias event.
- When using
Files.featureRequester
, if a data file did not contain valid JSON, the SDK would throw a PHP syntax error instead of the expected "File is not valid JSON" error. (Thanks, GuiEloiSantos!)
PHPRedis::featureRequester
was not recognizing thephpredis_client
option. (Thanks, riekelt!)
- Fixed a warning message which erroneously referred to the wrong method.
- When using the DynamoDB data store integration with a prefix string, the prefix was being prepended to keys with a slash separator (example:
my-prefix/features:my-flag-key
). This was inconsistent with the colon separator that is used in the other server-side SDKs (example:my-prefix:features:my-flag-key
), making the PHP SDK unable to read flags that were put into the database by other SDKs or by the Relay Proxy, if a prefix was used. This has been fixed to be consistent with the other SDKs. (#138)
- The SDK could try to send analytics events even if
send_events
had been set to false. This bug was introduced in the 3.6.0 release. - A
use
statement with the wrong namespace was causing Composer to print a deprecation warning. (Thanks, bfenton-smugmug!)
- 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 has similar functionality to the already-supportedpredis
but may have better performance (sincepredis
is written in pure PHP, whereasphpredis
uses a C extension). 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 Persistent data stores. - 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.