@launchdarkly/server-sdk-ai 0.16.8 → 0.17.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 CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.17.1](https://github.com/launchdarkly/js-core/compare/server-sdk-ai-v0.17.0...server-sdk-ai-v0.17.1) (2026-04-24)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * devDependencies
10
+ * @launchdarkly/js-server-sdk-common bumped from 2.18.4 to 2.18.5
11
+ * peerDependencies
12
+ * @launchdarkly/js-server-sdk-common bumped from 2.x to 2.18.5
13
+
14
+ ## [0.17.0](https://github.com/launchdarkly/js-core/compare/server-sdk-ai-v0.16.8...server-sdk-ai-v0.17.0) (2026-04-21)
15
+
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * Flatten JudgeResponse and EvalScore into new LDJudgeResult ([#1284](https://github.com/launchdarkly/js-core/issues/1284))
20
+ * `LDAIConfigTracker.trackJudgeResponse()` and `trackEvalScores()` methods removed; replaced by `trackJudgeResult()` ([#1284](https://github.com/launchdarkly/js-core/issues/1284))
21
+ * `Judge.evaluate()` and `Judge.evaluateMessages()` now always return `LDJudgeResult` (never `undefined`); check `result.sampled` to determine if evaluation was performed ([#1284](https://github.com/launchdarkly/js-core/issues/1284))
22
+ * Add per-execution runId, at-most-once tracking, and cross-process tracker resumption ([#1270](https://github.com/launchdarkly/js-core/issues/1270))
23
+ * `config.tracker` property on AI config objects replaced with `config.createTracker()` factory function ([#1270](https://github.com/launchdarkly/js-core/issues/1270))
24
+ * `TrackedChat` and `Judge` constructors no longer accept a tracker parameter; tracker is now created on-demand via `createTracker()` ([#1270](https://github.com/launchdarkly/js-core/issues/1270))
25
+ * `TrackedChat.getTracker()` and `Judge.getTracker()` methods removed ([#1270](https://github.com/launchdarkly/js-core/issues/1270))
26
+
27
+ ### Features
28
+
29
+ * Add per-execution runId, at-most-once tracking, and cross-process tracker resumption ([#1270](https://github.com/launchdarkly/js-core/issues/1270)) ([fc25ab7](https://github.com/launchdarkly/js-core/commit/fc25ab7bd9577dbd1ea9826547793366a4e6814b))
30
+ * Flatten JudgeResponse and EvalScore into new LDJudgeResult ([#1284](https://github.com/launchdarkly/js-core/issues/1284)) ([aba1221](https://github.com/launchdarkly/js-core/commit/aba1221d3b3d9f4eff44d805ed1c5e9f4d088e4a))
31
+ * Implement agent graph definitions ([#1282](https://github.com/launchdarkly/js-core/issues/1282)) ([e7d08e5](https://github.com/launchdarkly/js-core/commit/e7d08e5e3b84020e543fd54d40a8530ddc514f20))
32
+ * simplify evaluation schema to flat score/reasoning shape ([#1286](https://github.com/launchdarkly/js-core/issues/1286)) ([c132e9f](https://github.com/launchdarkly/js-core/commit/c132e9f44c8113cc5b795edfa6330f26c38081a6))
33
+ * Add `LDAIClient.createTracker()` and `createGraphTracker()` methods to continue tracking a run from a separate process ([#1270](https://github.com/launchdarkly/js-core/issues/1270)) ([fc25ab7](https://github.com/launchdarkly/js-core/commit/fc25ab7bd9577dbd1ea9826547793366a4e6814b))
34
+ * Add `LDAIConfigTracker.trackToolCall()` and `trackToolCalls()` methods ([#1270](https://github.com/launchdarkly/js-core/issues/1270)) ([fc25ab7](https://github.com/launchdarkly/js-core/commit/fc25ab7bd9577dbd1ea9826547793366a4e6814b))
35
+
36
+
37
+ ### Bug Fixes
38
+
39
+ * Add support for graph metric tracking ([#1269](https://github.com/launchdarkly/js-core/issues/1269)) ([034a89d](https://github.com/launchdarkly/js-core/commit/034a89d3a8d8b718aecb459190f94f6e2ab14a3d))
40
+
3
41
  ## [0.16.8](https://github.com/launchdarkly/js-core/compare/server-sdk-ai-v0.16.7...server-sdk-ai-v0.16.8) (2026-04-14)
4
42
 
5
43