@spotify-confidence/openfeature-server-provider-local 0.8.0 → 0.8.1
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 +9 -0
- package/dist/client.js +1 -0
- package/dist/confidence_resolver.wasm +0 -0
- package/dist/index.fetch.js +2 -1
- package/dist/index.inlined.js +3 -2
- package/dist/index.node.js +2 -1
- package/dist/server.js +1 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.8.1](https://github.com/spotify/confidence-resolver/compare/openfeature-provider-js-v0.8.0...openfeature-provider-js-v0.8.1) (2026-02-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* rust-guest bumped from 0.1.14 to 0.1.15
|
|
11
|
+
|
|
3
12
|
## [0.8.0](https://github.com/spotify/confidence-resolver/compare/openfeature-provider-js-v0.7.0...openfeature-provider-js-v0.8.0) (2026-01-27)
|
|
4
13
|
|
|
5
14
|
|
package/dist/client.js
CHANGED
|
@@ -26,6 +26,7 @@ const logger = new class LoggerImpl {
|
|
|
26
26
|
case infoFn.enabled: warnFn.enabled = true;
|
|
27
27
|
case warnFn.enabled: errorFn.enabled = true;
|
|
28
28
|
}
|
|
29
|
+
for (const child of this.childLoggers.values()) child.configure(debug);
|
|
29
30
|
}
|
|
30
31
|
getLogger(name) {
|
|
31
32
|
let child = (this.childLoggers.get(name));
|
|
Binary file
|
package/dist/index.fetch.js
CHANGED
|
@@ -1402,7 +1402,7 @@ function isObject(value) {
|
|
|
1402
1402
|
function isSet$3(value) {
|
|
1403
1403
|
return value !== null && value !== void 0;
|
|
1404
1404
|
}
|
|
1405
|
-
const VERSION = "0.8.
|
|
1405
|
+
const VERSION = "0.8.1";
|
|
1406
1406
|
const NOOP_LOG_FN = Object.assign(() => {}, { enabled: false });
|
|
1407
1407
|
const debugBackend = loadDebug();
|
|
1408
1408
|
const logger$2 = new class LoggerImpl {
|
|
@@ -1427,6 +1427,7 @@ const logger$2 = new class LoggerImpl {
|
|
|
1427
1427
|
case infoFn.enabled: warnFn.enabled = true;
|
|
1428
1428
|
case warnFn.enabled: errorFn.enabled = true;
|
|
1429
1429
|
}
|
|
1430
|
+
for (const child of this.childLoggers.values()) child.configure(debug);
|
|
1430
1431
|
}
|
|
1431
1432
|
getLogger(name) {
|
|
1432
1433
|
let child = (this.childLoggers.get(name));
|