Skip to content

Commit 1ae380c

Browse files
authored
fix(langchainjs): deprecate v0.1 support for security reasons (#1328)
1 parent a45722f commit 1ae380c

File tree

7 files changed

+15
-833
lines changed

7 files changed

+15
-833
lines changed

js/.changeset/cute-clouds-tell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@arizeai/openinference-instrumentation-langchain": major
3+
---
4+
5+
deprecate support for v0.1

js/packages/openinference-instrumentation-langchain/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,7 @@ lcInstrumentation.manuallyInstrument(CallbackManagerModule);
2626
```
2727

2828
For more information on OpenTelemetry Node.js SDK, see the [OpenTelemetry Node.js SDK documentation](https://opentelemetry.io/docs/instrumentation/js/getting-started/nodejs/).
29+
30+
## Deprecations
31+
32+
LangChain v0.1 was deprecated on 2025-03-02 due to security vulerabilities in the core package.

js/packages/openinference-instrumentation-langchain/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,13 @@
4040
"@opentelemetry/instrumentation": "^0.46.0"
4141
},
4242
"peerDependencies": {
43-
"@langchain/core": "^0.1.0 || ^0.2.0 || ^0.3.0"
43+
"@langchain/core": "^0.2.0 || ^0.3.0"
4444
},
4545
"devDependencies": {
4646
"@langchain/core": "^0.3.13",
4747
"@langchain/coreV0.2": "npm:@langchain/core@^0.2.0",
48-
"@langchain/coreV0.1": "npm:@langchain/core@^0.1.0",
4948
"@langchain/openai": "^0.3.11",
5049
"@langchain/openaiV0.2": "npm:@langchain/openai@^0.2.0",
51-
"@langchain/openaiV0.1": "npm:@langchain/openai@^0.1.0",
5250
"@opentelemetry/exporter-trace-otlp-proto": "^0.50.0",
5351
"@opentelemetry/resources": "^1.25.1",
5452
"@opentelemetry/sdk-trace-base": "^1.25.1",

js/packages/openinference-instrumentation-langchain/src/instrumentation.ts

+1-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type * as CallbackManagerModuleV02 from "@langchain/core/callbacks/manager";
2-
import type * as CallbackManagerModuleV01 from "@langchain/coreV0.1/callbacks/manager";
32
import {
43
InstrumentationBase,
54
InstrumentationConfig,
@@ -27,9 +26,7 @@ export function isPatched() {
2726
return _isOpenInferencePatched;
2827
}
2928

30-
type CallbackManagerModule =
31-
| typeof CallbackManagerModuleV01
32-
| typeof CallbackManagerModuleV02;
29+
type CallbackManagerModule = typeof CallbackManagerModuleV02;
3330

3431
/**
3532
* An auto instrumentation class for LangChain that creates {@link https://github.com/Arize-ai/openinference/blob/main/spec/semantic_conventions.md|OpenInference} Compliant spans for LangChain
@@ -121,24 +118,6 @@ export class LangChainInstrumentation extends InstrumentationBase<CallbackManage
121118
);
122119
args[0] = newInheritableHandlers;
123120

124-
return original.apply(this, args);
125-
};
126-
});
127-
} else {
128-
this._wrap(module.CallbackManager, "configure", (original) => {
129-
return function (
130-
this: typeof CallbackManagerModuleV01,
131-
...args: Parameters<
132-
(typeof CallbackManagerModuleV01.CallbackManager)["configure"]
133-
>
134-
) {
135-
const handlers = args[0];
136-
const newHandlers = addTracerToHandlers(
137-
instrumentation.oiTracer,
138-
handlers,
139-
);
140-
args[0] = newHandlers;
141-
142121
return original.apply(this, args);
143122
};
144123
});

js/packages/openinference-instrumentation-langchain/src/instrumentationUtils.ts

+2-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type * as CallbackManagerModuleV02 from "@langchain/core/callbacks/manager";
2-
import type * as CallbackManagerModuleV01 from "@langchain/coreV0.1/callbacks/manager";
32
import { LangChainTracer } from "./tracer";
43
import { OITracer } from "@arizeai/openinference-core";
54

@@ -10,25 +9,15 @@ import { OITracer } from "@arizeai/openinference-core";
109
* @returns the callback handlers with the {@link LangChainTracer} added
1110
*
1211
* If the handlers are an array, we add the tracer to the array if it is not already present
13-
*
14-
* There are some slight differences in the CallbackHandler interface between V0.1 and v0.2
15-
* So we have to cast our tracer to any to avoid type errors
16-
* We support both versions and our tracer is compatible with either as it will extend the BaseTracer from the installed version which will be the same as the version of handlers passed in here
1712
*/
18-
export function addTracerToHandlers(
19-
tracer: OITracer,
20-
handlers?: CallbackManagerModuleV01.Callbacks,
21-
): CallbackManagerModuleV01.Callbacks;
2213
export function addTracerToHandlers(
2314
tracer: OITracer,
2415
handlers?: CallbackManagerModuleV02.Callbacks,
2516
): CallbackManagerModuleV02.Callbacks;
2617
export function addTracerToHandlers(
2718
tracer: OITracer,
28-
handlers?:
29-
| CallbackManagerModuleV01.Callbacks
30-
| CallbackManagerModuleV02.Callbacks,
31-
): CallbackManagerModuleV01.Callbacks | CallbackManagerModuleV02.Callbacks {
19+
handlers?: CallbackManagerModuleV02.Callbacks,
20+
): CallbackManagerModuleV02.Callbacks {
3221
if (handlers == null) {
3322
return [new LangChainTracer(tracer)];
3423
}

0 commit comments

Comments
 (0)