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

chore(deps-dev): bump @types/node from 22.10.1 to 22.10.2 #240

Closed
wants to merge 1 commit into from
Closed
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 extensions/vscode/package.json
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@
"@eslint/js": "^9.16.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/node": "^22.10.2",
"@types/vscode": "~1.80.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.32.0",
2 changes: 1 addition & 1 deletion packages/api-bindings/package.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
"@amzn/eslint-config": "workspace:^",
"@amzn/tsconfig": "workspace:^",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.1",
"@types/node": "^22.10.2",
"@typescript/analyze-trace": "^0.10.1",
"eslint": "^9.16.0",
"lint-staged": "^15.2.10",
2 changes: 1 addition & 1 deletion packages/autocomplete/package.json
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@
"@aws/amazon-q-developer-cli-fuzzysort": "workspace:^",
"@aws/amazon-q-developer-cli-shared": "workspace:^",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@types/react-window": "^1.8.8",
128 changes: 64 additions & 64 deletions pnpm-lock.yaml
2 changes: 1 addition & 1 deletion tests/fig-api/package.json
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
"devDependencies": {
"@aws/amazon-q-developer-cli-api-bindings": "workspace:^",
"@amzn/types": "link:../../packages/types",
"@types/node": "^22.10.1",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}

Unchanged files with check annotations Beta

if (unsubscribe) unsubscribe();
isStale = true;
};
}, deps);

Check warning on line 64 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect was passed a dependency list that is not an array literal. This means we can't statically verify whether you've passed the correct dependencies

Check warning on line 64 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect has a missing dependency: 'getSubscription'. Either include it or remove the dependency array. If 'getSubscription' changes too often, find the parent component that defines it and wrap that definition in useCallback

Check warning on line 64 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect was passed a dependency list that is not an array literal. This means we can't statically verify whether you've passed the correct dependencies

Check warning on line 64 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect has a missing dependency: 'getSubscription'. Either include it or remove the dependency array. If 'getSubscription' changes too often, find the parent component that defines it and wrap that definition in useCallback
};
export const useFigSettings = (
updateSettings(settings as SettingsMap);
updateSelectSuggestionKeybindings(settings as SettingsMap);
});
}, []);

Check warning on line 76 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect has a missing dependency: 'setSettings'. Either include it or remove the dependency array. If 'setSettings' changes too often, find the parent component that defines it and wrap that definition in useCallback

Check warning on line 76 in packages/autocomplete/src/fig/hooks.ts

GitHub Actions / Lint

React Hook useEffect has a missing dependency: 'setSettings'. Either include it or remove the dependency array. If 'setSettings' changes too often, find the parent component that defines it and wrap that definition in useCallback
useFigSubscriptionEffect(
() =>
}
scrollToIndex(newIndex, newVisibleState);
},
[

Check warning on line 74 in packages/autocomplete/src/hooks/keypress.ts

GitHub Actions / Lint

React Hook useCallback has a missing dependency: 'scrollToIndex'. Either include it or remove the dependency array

Check warning on line 74 in packages/autocomplete/src/hooks/keypress.ts

GitHub Actions / Lint

React Hook useCallback has a missing dependency: 'scrollToIndex'. Either include it or remove the dependency array
selectedIndex,
visibleState,
suggestions.length,
}
return undefined;
},
[

Check warning on line 198 in packages/autocomplete/src/hooks/keypress.ts

GitHub Actions / Lint

React Hook useCallback has missing dependencies: 'scrollToIndex', 'setUserFuzzySearchEnabled', 'shake', and 'suggestions'. Either include them or remove the dependency array. If 'shake' changes too often, find the parent component that defines it and wrap that definition in useCallback

Check warning on line 198 in packages/autocomplete/src/hooks/keypress.ts

GitHub Actions / Lint

React Hook useCallback has missing dependencies: 'scrollToIndex', 'setUserFuzzySearchEnabled', 'shake', and 'suggestions'. Either include them or remove the dependency array. If 'shake' changes too often, find the parent component that defines it and wrap that definition in useCallback
navigate,
insertCommonPrefix,
insertTextForItem,
return () => {
isMostRecentEffect = false;
};
}, [command, setParserResult, onError, context, setVisibleState]);

Check warning on line 78 in packages/autocomplete/src/parser/hooks.ts

GitHub Actions / Lint

React Hook useEffect has missing dependencies: 'oldCommand?.originalTree.text', 'oldCommand?.tokens', and 'setLoading'. Either include them or remove the dependency array. If 'setLoading' changes too often, find the parent component that defines it and wrap that definition in useCallback

Check warning on line 78 in packages/autocomplete/src/parser/hooks.ts

GitHub Actions / Lint

React Hook useEffect has missing dependencies: 'oldCommand?.originalTree.text', 'oldCommand?.tokens', and 'setLoading'. Either include them or remove the dependency array. If 'setLoading' changes too often, find the parent component that defines it and wrap that definition in useCallback
};