Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump fast-xml-parser from 4.2.7 to 4.4.1 in the npm_and_yarn group across 1 directory #6381

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion langchain/package.json
Original file line number Diff line number Diff line change
@@ -659,7 +659,7 @@
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-prettier": "^4.2.1",
"fast-xml-parser": "^4.2.7",
"fast-xml-parser": "^4.4.1",
"handlebars": "^4.7.8",
"html-to-text": "^9.0.5",
"ignore": "^5.2.0",
2 changes: 1 addition & 1 deletion libs/langchain-anthropic/package.json
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
"dependencies": {
"@anthropic-ai/sdk": "^0.22.0",
"@langchain/core": ">=0.2.16 <0.3.0",
"fast-xml-parser": "^4.3.5",
"fast-xml-parser": "^4.4.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
17 changes: 3 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -10844,7 +10844,7 @@ __metadata:
eslint-plugin-jest: ^27.6.0
eslint-plugin-no-instanceof: ^1.0.1
eslint-plugin-prettier: ^4.2.1
fast-xml-parser: ^4.3.5
fast-xml-parser: ^4.4.1
jest: ^29.5.0
jest-environment-node: ^29.6.4
prettier: ^2.8.3
@@ -26594,17 +26594,6 @@ __metadata:
languageName: node
linkType: hard

"fast-xml-parser@npm:^4.2.7":
version: 4.2.7
resolution: "fast-xml-parser@npm:4.2.7"
dependencies:
strnum: ^1.0.5
bin:
fxparser: src/cli/cli.js
checksum: d8b0c9e04756f6c43fa0399428f30149acadae21350e42e26e8fe98e24e6afa6b9b00aa554453795036b00e9fee974a1b556fe2ba18be391d51a9bf1ab790e7c
languageName: node
linkType: hard

"fast-xml-parser@npm:^4.3.0":
version: 4.3.4
resolution: "fast-xml-parser@npm:4.3.4"
@@ -26616,7 +26605,7 @@ __metadata:
languageName: node
linkType: hard

"fast-xml-parser@npm:^4.3.5":
"fast-xml-parser@npm:^4.4.1":
version: 4.4.1
resolution: "fast-xml-parser@npm:4.4.1"
dependencies:
@@ -31263,7 +31252,7 @@ __metadata:
eslint-plugin-jest: ^27.6.0
eslint-plugin-no-instanceof: ^1.0.1
eslint-plugin-prettier: ^4.2.1
fast-xml-parser: ^4.2.7
fast-xml-parser: ^4.4.1
handlebars: ^4.7.8
html-to-text: ^9.0.5
ignore: ^5.2.0

Unchanged files with check annotations Beta

/**
* Install a internal template to a given `root` directory.
*/
export async function installTemplate({ appName, root }: any) {

Check warning on line 10 in libs/create-langchain-integration/helpers/templates.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
/**
* Copy the template files to the target directory.
*/
* Update the package.json scripts.
*/
const packageJsonFile = path.join(root, "package.json");
const packageJson: any = JSON.parse(

Check warning on line 28 in libs/create-langchain-integration/helpers/templates.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
await fs.readFile(packageJsonFile, "utf8")
);
} from "@langchain/core/language_models/chat_models";
import { BaseMessageChunk } from "@langchain/core/messages";
export type RecordStringAny = Record<string, any>;

Check warning on line 7 in libs/langchain-standard-tests/src/base.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
export type BaseChatModelConstructor<
CallOptions extends BaseChatModelCallOptions = BaseChatModelCallOptions,
return;
}
const chatModel = new this.Cls(this.constructorArgs);
expect((chatModel as any).withStructuredOutput?.(person)).toBeDefined();

Check warning on line 108 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
}
testStandardParams() {
const expectedParams = this.expectedLsParams();
const chatModel = new this.Cls(this.constructorArgs);
const lsParams = chatModel.getLsParams({} as any);

Check warning on line 115 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
expect(lsParams).toBeDefined();
expect(Object.keys(lsParams).sort()).toEqual(
Object.keys(expectedParams).sort()
let allTestsPassed = true;
try {
this.testChatModelInit();
} catch (e: any) {

Check warning on line 132 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
allTestsPassed = false;
console.error("testChatModelInit failed", e);
}
try {
this.testChatModelInitApiKey();
} catch (e: any) {

Check warning on line 139 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
allTestsPassed = false;
console.error("testChatModelInitApiKey failed", e);
}
try {
this.testChatModelInitStreaming();
} catch (e: any) {

Check warning on line 146 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
allTestsPassed = false;
console.error("testChatModelInitStreaming failed", e);
}
try {
this.testChatModelWithBindTools();
} catch (e: any) {

Check warning on line 153 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
allTestsPassed = false;
console.error("testChatModelWithBindTools failed", e);
}
try {
this.testChatModelWithStructuredOutput();
} catch (e: any) {

Check warning on line 160 in libs/langchain-standard-tests/src/unit_tests/chat_models.ts

GitHub Actions / Check linting

Unexpected any. Specify a different type
allTestsPassed = false;
console.error("testChatModelWithStructuredOutput failed", e);
}