chore(deps): update dependency flagsmith to v8 #374
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.4.3
->8.0.0
Release Notes
Flagsmith/flagsmith-dotnet-client (Flagsmith)
v8.0.0
What's Changed
BREAKING CHANGES
Full Changelog: Flagsmith/flagsmith-dotnet-client@v7.1.1...v8.0.0
v7.1.1
What's Changed
Full Changelog: Flagsmith/flagsmith-dotnet-client@v7.1.0...v7.1.1
v7.1.0
What's Changed
Deprecated
FlagsmithClient
constructors with more than one parameterThe preferred way to instantiate a
FlagsmithClient
is now to use theFlagsmithClient(FlagsmithConfiguration)
constructor. All other constructors are deprecated.For example, if you were previously initialising the client like this:
You should pass the equivalent
FlagsmithConfiguration
object instead:This gives us more flexibility as SDK authors to add or change configuration options without requiring further breaking changes. It also allows us to provide better inline documentation for each configuration parameter.
Deprecated
ApiUrl
,EnableClientSideEvaluation
, andEnvironmentRefreshIntervalSeconds
optionsInstead, use
ApiUri
,EnableLocalEvaluation
, andEnvironmentRefreshInterval
respectively. This change makes this SDK more consistent with Flagsmith documentation and other SDKs, and improves type safety by acceptingUri
andTimeSpan
objects instead of deriving them from raw strings or numbers.Deprecated
PollingManager(Func<Task>, int)
constructorInstead, use
new PollingManager(callback, TimeSpan.FromSeconds(intervalSeconds))
. Almost no users will be affected by this change, asPollingManager
is meant for internal use.v7.0.1
What's Changed
Full Changelog: Flagsmith/flagsmith-dotnet-client@v7.0.0...v7.0.1
v7.0.0
What's Changed
Breaking Changes
Version 7 removes the
Id
methods from theIFlag
interface andFlag
class to avoid deserialisation problems if this ID is null. A flag's internal ID is an implementation detail that should not be relevant to SDK users. If you have a use case that requires using a flag's internal ID, please create an issue here: https://github.com/Flagsmith/flagsmith-dotnet-client/issuesFull Changelog: Flagsmith/flagsmith-dotnet-client@v6.0.0...v7.0.0
v6.0.0
What's Changed
Breaking Changes
The changes in this release affect the encoding of identifiers. This is technically fixing an issue where an identifier such as
"abc&def"
would actually retrieve the flags for the identity"abc"
and discard the"&def"
portion. Since this change will affect the behaviour for these identities, we are marking it as a major version release.New Contributors
Full Changelog: Flagsmith/flagsmith-dotnet-client@v5.4.3...v6.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.