v4.0.0
What's Changed
This release fixes the order of parameters for Get<Type>Assignment
methods to bring it in line with other v3 SDKs.
- Before (v3):
GetStringAssignment(subjectKey string, flagKey string, subjectAttributes SubjectAttributes, defaultValue string)
- After (v4):
GetStringAssignment(flagKey string, subjectKey string, subjectAttributes SubjectAttributes, defaultValue string)
The first two parameters are swapped. These are both string
s, so your code will likely still compile. You must ensure that your code respects the new parameter order, otherwise your code will break.
Other than this change, there is no major change in functionality or scope compared to the v3.0.0 SDK or all other Eppo SDKs v3.x.x. This is released as a new major version because of the breaking change above.
Full Changelog: v3.0.0...v4.0.0