Releases: launchdarkly/go-server-sdk
5.0.0-beta.7
[5.0.0-beta.7] - 2020-09-14
Added:
- The
sharedtest/ldtestdata
package provides an alternative toldfiledata
for simulating feature flag data in test code.
Changed:
- The
EvaluationDetail
type fromgo-sdk-common
now uses a new type,ldvalue.OptionalInt
, for theVariationIndex
field. Previously, this field was anint
and used the special value-1
to represent "undefined".OptionalInt
has a clearer way of indicating when the value is undefined.
5.0.0-beta.6
[5.0.0-beta.6] - 2020-08-19
Fixed:
- An unintentional import of a module-only dependency prevented non-module-based applications from building with the SDK.
5.0.0-beta.5
[5.0.0-beta.5] - 2020-08-10
A version was skipped because the 5.0.0-beta.4 tag had been applied to the wrong commit.
Added:
LDClient.WithEventsDisabled()
is a decorator that allows you to temporarily turn off analytics events even if events are enabled in your configuration.- The object returned by
AllFlagsState()
can now be constructed (such as for testing purposes) withflagstate.NewAllFlagsBuilder()
. - In
interfaces
,LDClientInterface
,LDClientEvaluations
, andLDClientEvents
are new interfaces describing the existing methods ofLDClient
. These may be useful for creating mocks in testing.
Changed:
- Types related to
LDClient.AllFlagsState()
are now in theinterfaces/flagstate
package, and their names have changed as follows:FeatureFlagsState
is nowflagstate.AllFlags
;ClientSideOnly
is nowflagstate.OptionClientSideOnly()
;DetailsOnlyForTrackedFlags is now
flagstate.OptionDetailsOnlyForTrackedFlags()`.
4.17.3
[4.17.3] - 2020-07-29
Added:
- The SDK now recognizes a
clientSideAvailability
property which may be sent by LaunchDarkly services as an alternate way of indicating whether a flag is enabled for use by client-side JavaScript SDKs. This change does not introduce any new SDK functionality.
5.0.0-beta.3
[5.0.0-beta.3] - 2020-07-09
This beta release is being made available for testing and user feedback, due to the large number of changes from Go SDK 4.x. Features are still subject to change in the final 5.0.0 release. API documentation for this version is at https://pkg.go.dev/gopkg.in/launchdarkly/[email protected] and https://pkg.go.dev/gopkg.in/launchdarkly/[email protected].
Changes from the previous beta release:
Removed:
- The
ldredis
,lddynamodb
, andldconsul
packages are no longer in this repository. They have been moved to separate projects: http://github.com/launchdarkly/go-server-sdk-redis, http://github.com/launchdarkly/go-server-sdk-dynamodb, http://github.com/launchdarkly/go-server-sdk-consul. This removes the transitive dependencies on Redigo, AWS, etc.--which would otherwise be loaded for all Go modules that reference the SDK, even if you do not reference the subpackages that use them-- and also allows fixes or new features to be released for those integrations without requiring a new SDK release.
5.0.0-beta.2
[5.0.0-beta.2] - 2020-07-03
This beta release is being made available for testing and user feedback, due to the large number of changes from Go SDK 4.x. Features are still subject to change in the final 5.0.0 release. API documentation for this version is at https://pkg.go.dev/gopkg.in/launchdarkly/[email protected] and https://pkg.go.dev/gopkg.in/launchdarkly/[email protected].
This is a major rewrite that introduces a cleaner API design, adds new features, and makes the SDK code easier to maintain and extend. See the Go 4.x to 5.0 migration guide for an in-depth look at the changes in this version; the following is a summary.
Added:
- You can tell the SDK to notify you whenever a feature flag's configuration has changed (either in general, or in terms of its result for a specific user), using
LDClient.GetFlagTracker()
. - You can monitor the status of the SDK's data source (which normally means the streaming connection to the LaunchDarkly service) with
LDClient.GetDataSourceStatusProvider()
. This allows you to check the current connection status, and to be notified if this status changes. - You can monitor the status of a persistent data store with
LDClient.GetDataStoreStatusProvider()
. This allows you to check whether database updates are succeeding, to be notified if this status changes, and to get caching statistics. LDConfig.Logging
is a new configuration category for options related to logging. Seeldcomponents.Logging()
.
Changed (breaking changes from 4.x):
- The
User
andUserBuilder
types are now in the packagegopkg.in/launchdarkly/go-sdk-common.v2/lduser
. Users can no longer be created as inline structs; you must uselduser.NewUser
,lduser.NewAnonymousUser
, orlduser.NewUserBuilder
. - The
EvaluationDetail
andEvaluationReason
types are now in the packagegopkg.in/launchdarkly/go-sdk-common.v2/ldreason
. EvaluationReason
is now a struct rather than an interface, and is just one type rather than having separate types for eachKind
.- The
ldlog.Loggers
abstraction is now in the packagegopkg.in/launchdarkly/go-sdk-common.v2/ldlog
. - Configuration properties that are specific to one mode of operation are no longer represented as fields in
Config
, but as builder methods on a component that is provided by the newldcomponents
package and is then placed inConfig
. For instance, instead of settingCapacity: 1000
, you would now setEvents: ldcomponents.SendEvents().Capacity(1000)
; to disable events, instead of settingSendEvents: false
, you would setEvents: ldcomponents.NoEvents()
(note thatNoEvents
does not allow you to setCapacity
, since that would be meaningless if events are disabled). Similarly, to disable streaming and use polling, setDataSource: ldcomponents.PollingDataSource()
which then provides optional methods for configuring polling. SeeConfig
andldcomponents
for more details. - The
redis
package has been renamed toldredis
. - The integrations in
ldconsul
,lddynamodb
,ldredis
, andldfiledata
now use a builder pattern (like the rest of the SDK component configurations) instead of a factory function with option arguments. For instance, you would writeldredis.DataSource().URL("redis://host").Prefix("prefix")
instead ofredis.NewRedisDataStoreFactory(redis.URL("redis://host"), redis.Prefix("prefix"))
. - The component interfaces
FeatureStore
andUpdateProcessor
have been renamed toDataStore
andDataSource
. The factory interfaces for these components now receive SDK configuration options in a different way that does not expose other components' configurations to each other. - The
PersistentDataStore
interface for creating your own database integrations has been simplified by moving all of the serialization and caching logic into the main SDK code. FeatureFlag
,Segment
, and other data model types are now in the packagegopkg.in/launchdarkly/go-server-sdk-evaluation.v1
. Application code will not normally need to refer to these types.- All types related to the low-level handling of analytics events are now in the package
gopkg.in/launchdarkly/go-sdk-events.v1
. Application code will not normally need to refer to these types.
Changed (requirements/dependencies/build):
- The lowest supported Go version is 1.13.
- The SDK is now a Go module. If you are not using modules yet, and are managing dependencies with another tool such as
dep
orgovendor
, you will still be able to import the SDK the same as before; however, be aware that it now has several dependent repositories (all undergopkg.in/launchdarkly
), so whenever you update to a newer version of the SDK you may need to update those as well—the SDK cannot specify its own preferred dependency versions unless you use modules. - Code coverage reports and benchmarks are now generated in every build. Unit test coverage of the entire SDK codebase has been greatly improved.
Changed (behavioral changes):
- If analytics events are disabled, the SDK now avoids generating any analytics event objects internally. Previously they were created and then discarded, causing unnecessary heap churn.
- Network failures and server errors for streaming or polling requests were previously logged at
ERROR
level in most cases but sometimes atWARN
level. They are now all atWARN
level, but with a new behavior: if connection failures continue without a successful retry for a certain amount of time, the SDK will log a specialERROR
-level message to warn you that this is not just a brief outage. The amount of time is one minute by default, but can be changed with the newLogDataSourceOutageAsErrorAfter
option inLoggingConfigurationBuilder
. - Improved the performance of flag evaluations when there is a very long user target list in a feature flag or user segment, by representing the user key collection internally as a map.
- Evaluation of rules involving regex matches, date/time values, and semantic versions, has been speeded up by pre-parsing the values in the rules. Also, parsing of date/time values and semantic versions in user attributes now uses a faster implementation and does not make any heap allocations.
- Evaluation of rules involving an equality match to multiple values (such as "name is one of X, Y, Z") has been speeded up by converting the list of values to a map.
- Many internal methods have been rewritten to reduce the number of heap allocations in general.
Removed:
DefaultConfig
was removed since it is no longer necessary: an emptyConfig{}
is valid and will provide all of the documented default behavior. If you need to access the default value for a property, use the corresponding constant, such asldcomponents.DefaultEventsCapacity
.- The
sharedtest
subpackage, which contains test helpers for the SDK itself, is now internal and cannot be used from application code. Test helpers that were meant to be public are now in thetesthelpers
subpackage. - Removed all types, fields, and methods that were deprecated as of the most recent 4.x release.
5.0.0-beta.1
Please use v5.0.0-beta.2 instead. The beta.1 release was created with an incorrect Git tag, which cannot be corrected due to Go module proxy caching. The beta.2 release is identical except for the version string and the tag.
5.0.0-alpha.3
We are pushing some updates to the public repositories before the beta release is ready, in order to be able to test code that can only be built against public repos and not the development repos. This tag will be removed after the GA release.
4.17.2
[4.17.2] - 2020-05-13
Fixed:
- Updated the version of
go-yaml
that is optionally used by the file data source feature, to version 2.3.0, due to a vulnerability warning on version 2.2.1. Note that this is just the dependency version used when building the SDK; an application that uses the SDK may get different versions of its transitive dependencies depending on the package management system being used. The vulnerability would not affect normal usage of the SDK without the file data source, or with YAML files in the SDK's correct documented format.
4.17.1
[4.17.1] - 2020-04-16
Fixed:
- In streaming mode, a bug introduced in version 4.17.0 could cause a panic if the stream connection was broken and remained unavailable for a fairly long time (over half an hour).