@spotify-confidence/openfeature-server-provider-local 0.12.0 → 0.13.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 +22 -0
- package/dist/confidence_resolver.wasm +0 -0
- package/dist/index.fetch.js +2 -2
- package/dist/index.inlined.js +3 -3
- package/dist/index.node.js +2 -2
- package/dist/pages-router/api.d.ts +20 -0
- package/dist/pages-router/api.js +62 -0
- package/dist/pages-router/client.d.ts +69 -0
- package/dist/pages-router/client.js +32 -0
- package/dist/pages-router/server.d.ts +112 -0
- package/dist/pages-router/server.js +121 -0
- package/dist/server.js +5 -1
- package/package.json +18 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.0](https://github.com/spotify/confidence-resolver/compare/openfeature-provider-js-v0.12.1...openfeature-provider-js-v0.13.0) (2026-05-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **js:** Next.js Pages Router support ([#393](https://github.com/spotify/confidence-resolver/issues/393)) ([8efd0ae](https://github.com/spotify/confidence-resolver/commit/8efd0aee9581edaddd531bc15ba63e741e598eff))
|
|
9
|
+
|
|
10
|
+
## [0.12.1](https://github.com/spotify/confidence-resolver/compare/openfeature-provider-js-v0.12.0...openfeature-provider-js-v0.12.1) (2026-04-28)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **js:** strip resolveToken from RSC client bundle ([#388](https://github.com/spotify/confidence-resolver/issues/388)) ([f202f56](https://github.com/spotify/confidence-resolver/commit/f202f56f119faf791f26e0011c30ace259939f5e))
|
|
16
|
+
* surface apply_flags errors instead of swallowing ([#386](https://github.com/spotify/confidence-resolver/issues/386)) ([7785f9f](https://github.com/spotify/confidence-resolver/commit/7785f9ff116c8151daa70b9fbaab9e66d8e88794))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* The following workspace dependencies were updated
|
|
22
|
+
* dependencies
|
|
23
|
+
* rust-guest bumped from 0.1.22 to 0.1.23
|
|
24
|
+
|
|
3
25
|
## [0.12.0](https://github.com/spotify/confidence-resolver/compare/openfeature-provider-js-v0.11.2...openfeature-provider-js-v0.12.0) (2026-04-15)
|
|
4
26
|
|
|
5
27
|
|
|
Binary file
|
package/dist/index.fetch.js
CHANGED
|
@@ -1418,7 +1418,7 @@ function isObject(value) {
|
|
|
1418
1418
|
function isSet$3(value) {
|
|
1419
1419
|
return value !== null && value !== void 0;
|
|
1420
1420
|
}
|
|
1421
|
-
const VERSION = "0.
|
|
1421
|
+
const VERSION = "0.13.0";
|
|
1422
1422
|
const NOOP_LOG_FN = Object.assign(() => {}, { enabled: false });
|
|
1423
1423
|
const debugBackend = loadDebug();
|
|
1424
1424
|
const logger$2 = new class LoggerImpl {
|
|
@@ -3741,7 +3741,7 @@ var WasmResolver = class {
|
|
|
3741
3741
|
this.delegate.applyFlags(request);
|
|
3742
3742
|
} catch (error$1) {
|
|
3743
3743
|
if (error$1 instanceof WebAssembly.RuntimeError) this.reloadInstance(error$1);
|
|
3744
|
-
|
|
3744
|
+
else logger.warn("Failed to apply flags:", error$1);
|
|
3745
3745
|
}
|
|
3746
3746
|
}
|
|
3747
3747
|
prometheusSnapshot(instance) {
|