Skip to content

v4.0.0

Compare
Choose a tag to compare
@giorgiomartini0 giorgiomartini0 released this 25 Jun 01:37
· 22 commits to main since this release
ae2e6de

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 strings, 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