Skip to content

Commit 6b945f3

Browse files
brian-chebonABC2015beeme1mrubabar123openfeaturebot
authored
chore: merge development to main (#52)
## This PR - Updates the main branch with the changes in development branch - Adds evaluation details parameter to the finally hook stage - Implements OpenTelemetry-compatible telemetry utility functions - updates notification workflows to cover new branches ## Related Issues - Fixes Add evaluation details to finally hook stage #27 - Fixes Add OpenTelemetry-Compatible Telemetry Utility Function #26 --------- Signed-off-by: Jeremy Andrews <[email protected]> Signed-off-by: Michael Beemer <[email protected]> Signed-off-by: Usman <[email protected]> Signed-off-by: ubabar123 <[email protected]> Signed-off-by: Brian Chebon <[email protected]> Signed-off-by: OpenFeature Bot <[email protected]> Co-authored-by: Jeremy Andrews <[email protected]> Co-authored-by: Michael Beemer <[email protected]> Co-authored-by: ubabar123 <[email protected]> Co-authored-by: ABC2015 <[email protected]> Co-authored-by: OpenFeature Bot <[email protected]>
1 parent d81281b commit 6b945f3

8 files changed

+542
-575
lines changed

.github/workflows/contributor-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ jobs:
113113
dart-server-sdk-openfeature/info_report.txt
114114
dart-server-sdk-openfeature/warning_report.txt
115115
dart-server-sdk-openfeature/error_report.txt
116-
retention-days: 7
116+
retention-days: 7

.github/workflows/notifications.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Notifications
22

33
on:
4-
pull_request:
54
push:
65
branches:
76
- main

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.dart_tool/
2-
pubspec.lock
2+
**/pubspec.lock

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@
2626
<!-- x-release-please-end -->
2727
<br/>
2828
<!-- Dart-Specific Badges -->
29-
<a href="https://pub.dev/packages/open_feature">
30-
<img alt="Pub Version" src="https://img.shields.io/pub/v/open_feature.svg?style=for-the-badge" />
29+
<a href="https://pub.dev/packages/openfeature_dart_server_sdk">
30+
<img alt="Pub Version" src="https://img.shields.io/pub/v/openfeature_dart_server_sdk.svg?style=for-the-badge" />
3131
</a>
32-
<a href="https://pub.dev/documentation/open_feature/latest/">
32+
<a href="https://openfeature.dev/docs/reference/intro">
3333
<img alt="API Reference" src="https://img.shields.io/badge/API-reference-blue.svg?style=for-the-badge" />
3434
</a>
3535
<a href="https://codecov.io/gh/open-feature/dart-server-sdk">
3636
<img alt="Code Coverage" src="https://codecov.io/gh/open-feature/dart-server-sdk/branch/main/graph/badge.svg?token=FZ17BHNSU5" />
3737
</a>
38-
<a href="https://github.com/open-feature/dart-server-sdk/actions/workflows/ci.yml">
39-
<img alt="GitHub CI Status" src="https://github.com/open-feature/dart-server-sdk/actions/workflows/ci.yml/badge.svg?style=for-the-badge" />
38+
<a href="https://github.com/open-feature/dart-server-sdk/actions/workflows/validation-workflow.yml">
39+
<img alt="GitHub CI Status" src="https://github.com/open-feature/dart-server-sdk/actions/workflows/validation-workflow.yml/badge.svg?style=for-the-badge" />
4040
</a>
4141
</p>
4242
<!-- x-hide-in-docs-start -->
@@ -68,15 +68,15 @@ See [TBD](TBD) for the complete API documentation.
6868

6969
| Status | Features | Description |
7070
| ------ |---------------------------------| --------------------------------------------------------------------------------------------------------------------------------- |
71-
| | [Providers](#providers) | Integrate with a commercial, open source, or in-house feature management tool. |
72-
| | [Targeting](#targeting) | Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
73-
| | [Hooks](#hooks) | Add functionality to various stages of the flag evaluation life-cycle. |
74-
| | [Logging](#logging) | Integrate with popular logging packages. |
75-
| | [Domains](#domains) | Logically bind clients with providers.|
76-
| | [Eventing](#eventing) | React to state changes in the provider or flag management system. |
77-
| | [Shutdown](#shutdown) | Gracefully clean up a provider during application shutdown. |
78-
| | [Transaction Context Propagation](#transaction-context-propagation) | Set a specific [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context) for a transaction (e.g. an HTTP request or a thread) |
79-
| | [Extending](#extending) | Extend OpenFeature with custom providers and hooks. |
71+
| | [Providers](#providers) | Integrate with a commercial, open source, or in-house feature management tool. |
72+
| | [Targeting](#targeting) | Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
73+
| | [Hooks](#hooks) | Add functionality to various stages of the flag evaluation life-cycle. |
74+
| | [Logging](#logging) | Integrate with popular logging packages. |
75+
| | [Domains](#domains) | Logically bind clients with providers.|
76+
| | [Eventing](#eventing) | React to state changes in the provider or flag management system. |
77+
| | [Shutdown](#shutdown) | Gracefully clean up a provider during application shutdown. |
78+
| | [Transaction Context Propagation](#transaction-context-propagation) | Set a specific [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context) for a transaction (e.g. an HTTP request or a thread) |
79+
| | [Extending](#extending) | Extend OpenFeature with custom providers and hooks. |
8080

8181
<sub>Implemented: ✅ | In-progress: ⚠️ | Not implemented yet: ❌</sub>
8282

0 commit comments

Comments
 (0)