You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->
## Spec v0.8 adherence
- Created "ProviderStatus.swift" according to
[Specification](https://github.com/open-feature/spec/blob/634f2b52f990232b0b1c54c38f422cbff2c507bc/specification/types.md#provider-status).
- ProviderState is now maintained by the SDK, and not by the Provider
implementations
- Align "ProviderEvent.swift" with
[Specification](https://github.com/open-feature/spec/blob/634f2b52f990232b0b1c54c38f422cbff2c507bc/specification/types.md#provider-events)
- Basic events like `Ready`, `Error` or `Fatal` are emitted by the SDK
and are not expected by the Provider implementations.
- Makes `initialize` and `onContextChange` protocols throwing, allowing
for the OpenFeatureAPI layer to detect cases where `Error` events should
be emitted
- Makes `initialize` and `onContextChange` protocols async for an easier
Provider implementation (in most cases)
### Missing parts
- From the
[Specification](https://openfeature.dev/specification/sections/events#conditional-requirement-5342):
`It's possible that the on context changed function is invoked
simultaneously or in quick succession; in this case the SDK will only
run the PROVIDER_CONTEXT_CHANGED handlers after all reentrant
invocations have terminated, and the last to terminate was successful
(terminated normally)`
- This is not part of this PR: subsequent calls are serialized and
executed in sequence, each returning from its execution even if more
same functions are queued
- Handling of [spontaneous Provider
events](https://openfeature.dev/specification/sections/events#requirement-535)
missing in this PR
## Changes unrelated to Spec v0.8
- Added `setEvaluationContextAndWait` to provide the same better
ergonomics that `setProviderAndWait` already offers
- Evaluation returns early if provider state is not "ready"
- Refactor `afterAll` hook to adhere to latest conventions
## Notes on backwards compatibility
- A backwards incompatible aspect of this change is that the
`initialize()` implementation needs to throw in case of errors, rather
than emitting the `ERROR` event. The latter is now responsibility of the
SDK. This is also valid for `onContextChange`.
- This change in semantics is not enforced with code, and it might be
easy for the Provider implementer to make mistakes when adopting this
new version of the SDK (e.g. forget to remove `ERROR` emission from the
Provider side)
## Example Adoption
The Confidence OpenFeature Provider adopting this version of the SDK is
in the works here:
spotify/confidence-sdk-swift#184
---------
Signed-off-by: Fabrizio Demaria <[email protected]>
Co-authored-by: Michael Beemer <[email protected]>
| ✅ |[Providers](#providers)| Integrate with a commercial, open source, or in-house feature management tool. |
96
96
| ✅ |[Targeting](#targeting)| Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
97
97
| ✅ |[Hooks](#hooks)| Add functionality to various stages of the flag evaluation life-cycle. |
98
+
| ❌ |[Tracking](#tracking)| Associate user actions with feature flag evaluations. |
98
99
| ❌ |[Logging](#logging)| Integrate with popular logging packages. |
99
100
| ❌ |[Named clients](#named-clients)| Utilize multiple providers in a single application. |
100
101
| ✅ |[Eventing](#eventing)| React to state changes in the provider or flag management system. |
0 commit comments