-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement tracking as per spec #1020
Conversation
c7ae35a
to
c914326
Compare
Inspired by [this comment](#1020 (comment)) I've added a lint rule to enforce `import type`, and some additional package changes to add a `lint:fix`. The only changes I made manually here is to add the lint rule, and the package.json script. All the changes are auto-generated by the `lint:fix`. --------- Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
567b836
to
9a15354
Compare
The `tracking API` enables the association of feature flag evaluations with subsequent actions or application states, in order to facilitate experimentation and analysis of the impact of feature flags on business objectives. Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
9a15354
to
dcdb631
Compare
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm. Would be nice to hook it up to @beeme1mr s test app?
That's the plan! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Left two minor comments :)
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
I'm merge this tomorrow unless I hear objections |
🤖 I have created a release *beep* *boop* --- ## [1.5.0](core-v1.4.0...core-v1.5.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com> Signed-off-by: openfeature-peer-update-bot <openfeature-peer-update-bot@openfeature.dev> Co-authored-by: openfeature-peer-update-bot <openfeature-peer-update-bot@openfeature.dev>
🤖 I have created a release *beep* *boop* --- ## [1.3.0](web-sdk-v1.2.4...web-sdk-v1.3.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) * **main:** release core 1.5.0 ([#1040](#1040)) ([fe3ad8e](fe3ad8e)) ### 📚 Documentation * update domain context terminology ([#1037](#1037)) ([924802b](924802b)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [0.4.7](react-sdk-v0.4.6...react-sdk-v0.4.7) (2024-10-29) ### ✨ New Features * avoid re-resolving flags unaffected by a change event ([#1024](#1024)) ([b8f9b4e](b8f9b4e)) * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) * use mutate context hook ([#1031](#1031)) ([ec3d967](ec3d967)) ### 🧹 Chore * add js docs for context mutator hook ([#1045](#1045)) ([def3fe8](def3fe8)) * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
🤖 I have created a release *beep* *boop* --- ## [1.16.0](server-sdk-v1.15.1...server-sdk-v1.16.0) (2024-10-29) ### ✨ New Features * implement tracking as per spec ([#1020](#1020)) ([80f182e](80f182e)) ### 🧹 Chore * import type lint rule and fixes ([#1039](#1039)) ([01fcb93](01fcb93)) * **main:** release core 1.5.0 ([#1040](#1040)) ([fe3ad8e](fe3ad8e)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com> Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
📣 This was a draft for a while, but is now ready for review! 📣
This implements tracking as per spec, in the server, web, and react SDKs.
I don't think the Angular or Nest SDKs need specific implementations, but please advise (cc @luizgribeiro @lukas-reining).
Fixes: #1033
Fixes: #1034