@launchdarkly/node-server-sdk-redis 4.0.5 → 4.1.0
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.
- package/CHANGELOG.md +26 -0
- package/README.md +4 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -84,6 +84,32 @@
|
|
|
84
84
|
* devDependencies
|
|
85
85
|
* @launchdarkly/node-server-sdk bumped from 9.0.4 to 9.0.5
|
|
86
86
|
|
|
87
|
+
## [4.1.0](https://github.com/launchdarkly/js-core/compare/node-server-sdk-redis-v4.0.6...node-server-sdk-redis-v4.1.0) (2024-02-06)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Features
|
|
91
|
+
|
|
92
|
+
* React-native support for auto-env attributes. Only affects react-native package. ([deea99c](https://github.com/launchdarkly/js-core/commit/deea99ca2fbb3865f2ce55a83b2cf12e0ae2db5e))
|
|
93
|
+
* Update eslint jest configuration and versions. ([deea99c](https://github.com/launchdarkly/js-core/commit/deea99ca2fbb3865f2ce55a83b2cf12e0ae2db5e))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Dependencies
|
|
97
|
+
|
|
98
|
+
* The following workspace dependencies were updated
|
|
99
|
+
* devDependencies
|
|
100
|
+
* @launchdarkly/node-server-sdk bumped from 9.0.6 to 9.1.0
|
|
101
|
+
|
|
102
|
+
## [4.0.6](https://github.com/launchdarkly/js-core/compare/node-server-sdk-redis-v4.0.5...node-server-sdk-redis-v4.0.6) (2024-01-16)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Dependencies
|
|
106
|
+
|
|
107
|
+
* The following workspace dependencies were updated
|
|
108
|
+
* devDependencies
|
|
109
|
+
* @launchdarkly/node-server-sdk bumped from 9.0.5 to 9.0.6
|
|
110
|
+
* peerDependencies
|
|
111
|
+
* @launchdarkly/node-server-sdk bumped from 8.x to 9.0.6
|
|
112
|
+
|
|
87
113
|
## [4.0.0](https://github.com/launchdarkly/js-core/compare/node-server-sdk-redis-v3.0.11...node-server-sdk-redis-v4.0.0) (2023-10-16)
|
|
88
114
|
|
|
89
115
|
|
package/README.md
CHANGED
|
@@ -66,6 +66,10 @@ const factory = RedisFeatureStoreFactory({ cacheTTL: 0 });
|
|
|
66
66
|
|
|
67
67
|
We encourage pull requests and other contributions from the community. Check out our [contributing guidelines](CONTRIBUTING.md) for instructions on how to contribute to this SDK.
|
|
68
68
|
|
|
69
|
+
## Verifying SDK build provenance with the SLSA framework
|
|
70
|
+
|
|
71
|
+
LaunchDarkly uses the [SLSA framework](https://slsa.dev/spec/v1.0/about) (Supply-chain Levels for Software Artifacts) to help developers make their supply chain more secure by ensuring the authenticity and build integrity of our published SDK packages. To learn more, see the [provenance guide](PROVENANCE.md).
|
|
72
|
+
|
|
69
73
|
## About LaunchDarkly
|
|
70
74
|
|
|
71
75
|
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launchdarkly/node-server-sdk-redis",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Redis-backed feature store for the LaunchDarkly Server-Side SDK for Node.js",
|
|
5
5
|
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/store/node-server-sdk-redis",
|
|
6
6
|
"repository": {
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"ioredis": "^5.3.2"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@launchdarkly/node-server-sdk": "
|
|
33
|
+
"@launchdarkly/node-server-sdk": "9.0.6"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@launchdarkly/node-server-sdk": "9.0
|
|
36
|
+
"@launchdarkly/node-server-sdk": "9.1.0",
|
|
37
37
|
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
|
|
38
38
|
"@types/jest": "^29.4.0",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
40
|
-
"@typescript-eslint/parser": "^6.
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
40
|
+
"@typescript-eslint/parser": "^6.20.0",
|
|
41
41
|
"eslint": "^8.45.0",
|
|
42
42
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
43
43
|
"eslint-config-airbnb-typescript": "^17.1.0",
|