@openfeature/server-sdk 1.13.1 → 1.13.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -16,8 +16,8 @@
16
16
  <img alt="Specification" src="https://img.shields.io/static/v1?label=specification&message=v0.7.0&color=yellow&style=for-the-badge" />
17
17
  </a>
18
18
  <!-- x-release-please-start-version -->
19
- <a href="https://github.com/open-feature/js-sdk/releases/tag/server-sdk-v1.13.1">
20
- <img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.13.1&color=blue&style=for-the-badge" />
19
+ <a href="https://github.com/open-feature/js-sdk/releases/tag/server-sdk-v1.13.2">
20
+ <img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.13.2&color=blue&style=for-the-badge" />
21
21
  </a>
22
22
  <!-- x-release-please-end -->
23
23
  <br/>
@@ -86,17 +86,17 @@ See [here](https://open-feature.github.io/js-sdk/modules/_openfeature_server_sdk
86
86
 
87
87
  ## 🌟 Features
88
88
 
89
- | Status | Features | Description |
90
- |--------|---------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|
91
- | ✅ | [Providers](#providers) | Integrate with a commercial, open source, or in-house feature management tool. |
92
- | ✅ | [Targeting](#targeting) | Contextually-aware flag evaluation using [evaluation context](https://openfeature.dev/docs/reference/concepts/evaluation-context). |
93
- | ✅ | [Hooks](#hooks) | Add functionality to various stages of the flag evaluation life-cycle. |
94
- | ✅ | [Logging](#logging) | Integrate with popular logging packages. |
95
- | ✅ | [Domains](#domains) | Logically bind clients with providers. |
96
- | ✅ | [Eventing](#eventing) | React to state changes in the provider or flag management system. |
97
- | ✅ | [Shutdown](#shutdown) | Gracefully clean up a provider during application shutdown. |
98
- | ✅ | [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) | |
99
- | ✅ | [Extending](#extending) | Extend OpenFeature with custom providers and hooks. |
89
+ | Status | Features | Description |
90
+ | ------ | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
91
+ | ✅ | [Providers](#providers) | Integrate with a commercial, open source, or in-house feature management tool. |
92
+ | ✅ | [Targeting](#targeting) | Contextually-aware flag evaluation using [evaluation context](/docs/reference/concepts/evaluation-context). |
93
+ | ✅ | [Hooks](#hooks) | Add functionality to various stages of the flag evaluation life-cycle. |
94
+ | ✅ | [Logging](#logging) | Integrate with popular logging packages. |
95
+ | ✅ | [Domains](#domains) | Logically bind clients with providers. |
96
+ | ✅ | [Eventing](#eventing) | React to state changes in the provider or flag management system. |
97
+ | ✅ | [Shutdown](#shutdown) | Gracefully clean up a provider during application shutdown. |
98
+ | ✅ | [Transaction Context Propagation](#transaction-context-propagation) | Set a specific [evaluation context](/docs/reference/concepts/evaluation-context) for a transaction (e.g. an HTTP request or a thread) |
99
+ | ✅ | [Extending](#extending) | Extend OpenFeature with custom providers and hooks. |
100
100
 
101
101
  <sub>Implemented: ✅ | In-progress: ⚠️ | Not implemented yet: ❌</sub>
102
102
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfeature/server-sdk",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "description": "OpenFeature SDK for JavaScript",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "files": [
@@ -48,9 +48,9 @@
48
48
  "node": ">=16"
49
49
  },
50
50
  "peerDependencies": {
51
- "@openfeature/core": "0.0.28"
51
+ "@openfeature/core": "1.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@openfeature/core": "0.0.28"
54
+ "@openfeature/core": "1.0.0"
55
55
  }
56
56
  }