This is an automated email from the ASF dual-hosted git repository. github-merge-queue[bot] pushed a commit to branch gh-readonly-queue/main/pr-5716-8f164dc3dcb632d83c39712ff178549c97184200 in repository https://gitbox.apache.org/repos/asf/texera.git
commit debfc0935f8a58985defbf7a8c4fdf34a2a5431e Author: Matthew B. <[email protected]> AuthorDate: Tue Jun 16 13:29:44 2026 -0700 chore(frontend): remove unused @ai-sdk/openai dependency (#5716) ### What changes were proposed in this PR? - Remove `@ai-sdk/openai` from `frontend/package.json` dependencies; it is imported nowhere in `frontend/src` and `yarn.lock` lists it only as a direct dependency of the root workspace, not a transitive or peer dependency of the in-use `ai` package. - Regenerate `frontend/yarn.lock` to drop the now-unreferenced resolution. ### Any related issues, documentation, discussions? Closes: #5715 ### How was this PR tested? - Run `grep -rn "ai-sdk/openai" frontend/src` and confirm zero matches (the package is genuinely unused). - From `frontend/`, run `yarn install` then `yarn build`; expect the production build to succeed (exit 0), confirming nothing depended on the removed package. This was run locally and passed. ### Was this PR authored or co-authored using generative AI tooling? Co-authored with Claude Opus 4.8 in compliance with ASF --- frontend/package.json | 1 - frontend/yarn.lock | 13 ------------- 2 files changed, 14 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 4eaf207180..d374ed6612 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -21,7 +21,6 @@ "private": true, "dependencies": { "@abacritt/angularx-social-login": "2.3.0", - "@ai-sdk/openai": "2.0.67", "@ali-hm/angular-tree-component": "12.0.5", "@angular/animations": "21.2.10", "@angular/cdk": "21.2.8", diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 5831d762ad..59c4a83a8b 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -30,18 +30,6 @@ __metadata: languageName: node linkType: hard -"@ai-sdk/openai@npm:2.0.67": - version: 2.0.67 - resolution: "@ai-sdk/openai@npm:2.0.67" - dependencies: - "@ai-sdk/provider": "npm:2.0.0" - "@ai-sdk/provider-utils": "npm:3.0.17" - peerDependencies: - zod: ^3.25.76 || ^4.1.8 - checksum: 10c0/7e5c407504d7902c17c816aaccd83f642a3b82012cd8467c8f58aef5f08a49b6c31fff775439d541d40b0c8b5b94cc384f18096d1968e23670e22a56fe82d8bd - languageName: node - linkType: hard - "@ai-sdk/provider-utils@npm:3.0.17": version: 3.0.17 resolution: "@ai-sdk/provider-utils@npm:3.0.17" @@ -11035,7 +11023,6 @@ __metadata: resolution: "gui@workspace:." dependencies: "@abacritt/angularx-social-login": "npm:2.3.0" - "@ai-sdk/openai": "npm:2.0.67" "@ali-hm/angular-tree-component": "npm:12.0.5" "@angular-builders/custom-webpack": "npm:21.0.3" "@angular-devkit/build-angular": "npm:21.2.8"
