Skip to content

build(deps): bump the security group across 2 directories with 14 updates #2267

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

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
22 changes: 11 additions & 11 deletions e2e/playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

990 changes: 515 additions & 475 deletions web/package-lock.json

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions web/package.json
Original file line number Diff line number Diff line change
@@ -13,33 +13,33 @@
},
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tanstack/react-query": "^5.77.2",
"lucide-react": "^0.344.0",
"@tanstack/react-query": "^5.80.6",
"lucide-react": "^0.513.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@eslint/js": "^9.28.0",
"@faker-js/faker": "^8.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^22.15.23",
"@types/node": "^22.15.30",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"@vitejs/plugin-react": "^4.5.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.28.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.9.0",
"jsdom": "^26.1.0",
"msw": "2.7.0",
"postcss": "^8.4.35",
"msw": "2.10.2",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^5.4.2",
"vite-plugin-static-copy": "^3.0.0",
"vitest": "^0.32.2"

Unchanged files with check annotations Beta

};
}
const MockProvider = ({ children, queryClient, contexts }: MockProviderProps) => {

Check warning on line 62 in web/src/test/setup.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Move your component(s) to a separate file
return (
<QueryClientProvider client={queryClient}>
<ConfigContext.Provider value={contexts.configContext}>
text: WizardText;
}
export const WizardModeContext = createContext<WizardModeContextType | undefined>(undefined);

Check warning on line 62 in web/src/contexts/WizardModeContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Move your React context(s) to a separate file
export const WizardModeProvider: React.FC<{
children: React.ReactNode;
return <WizardModeContext.Provider value={{ mode, text }}>{children}</WizardModeContext.Provider>;
};
export const useWizardMode = (): WizardModeContextType => {

Check warning on line 76 in web/src/contexts/WizardModeContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Use a new file to share constants or functions between components
const context = useContext(WizardModeContext);
if (context === undefined) {
throw new Error("useWizardMode must be used within a WizardModeProvider");
const PROTOTYPE_SETTINGS_KEY = 'app-prototype-settings';
export const ConfigContext = createContext<ConfigContextType | undefined>(undefined);

Check warning on line 60 in web/src/contexts/ConfigContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Move your React context(s) to a separate file
export const ConfigProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
const [config, setConfig] = useState<ClusterConfig>(defaultConfig);
);
};
export const useConfig = (): ConfigContextType => {

Check warning on line 102 in web/src/contexts/ConfigContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Use a new file to share constants or functions between components
const context = useContext(ConfigContext);
if (context === undefined) {
throw new Error('useConfig must be used within a ConfigProvider');
icon?: string;
}
export const BrandingContext = createContext<Branding>({ title: "My App" });

Check warning on line 8 in web/src/contexts/BrandingContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Move your React context(s) to a separate file
export const useBranding = () => {

Check warning on line 10 in web/src/contexts/BrandingContext.tsx

GitHub Actions / Web unit tests

Fast refresh only works when a file only exports components. Use a new file to share constants or functions between components
const context = useContext(BrandingContext);
if (!context) {
throw new Error("useBranding must be used within a BrandingProvider");