Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9409472
Update all npm dependencies (2026-07-28) (#1072)
depfu[bot] Jul 31, 2026
228b9a5
🚨 [security] Update react-router 7.18.1 → 8.3.0 (major) (#1070)
depfu[bot] Jul 31, 2026
f5439dc
Remove canova from the codeowners (#1074)
canova Aug 4, 2026
375cd0f
[bug-2021092] Update light/dark toggle wording to be less ambiguous (…
gopar Aug 5, 2026
f39163f
Update all npm dependencies (2026-08-05) (#1075)
depfu[bot] Aug 5, 2026
9806c7b
Fix for Bug 2060613: PerfCompare statistical analysis has some NaN va…
kala-moz Aug 13, 2026
a67f0bb
Update all npm dependencies (2026-08-13) (#1078)
depfu[bot] Aug 13, 2026
f50b4a4
Bug 2059493: Clean up components in perfcompare frontend using the un…
kala-moz Aug 17, 2026
e519b8d
Removed silverman and kde warnings (#1082)
kala-moz Aug 18, 2026
cc86b88
Bug 2059826 - Simplified View: Create checkbox selection for advanced…
kala-moz Aug 20, 2026
da1674e
Update all npm dependencies (2026-08-18) (#1081)
depfu[bot] Aug 20, 2026
75c8e83
Simplifed View Follow-up: reduce size of cols and link subtest pills …
kala-moz Aug 24, 2026
e8f2c3c
Make the Mann-Whitney-U warning banner dismissable & make warning mes…
kala-moz Aug 25, 2026
f01e6f0
Update all npm dependencies (2026-08-27) (#1085)
depfu[bot] Aug 27, 2026
220ed6d
Bug 2058240: Filters from cookies don't make it into the URL (#1076)
kala-moz Aug 27, 2026
4a27e29
Bug 2059830 Simplified View: Create checkbox selection for expanded r…
kala-moz Sep 1, 2026
14f94a8
Bug 2068296 Simplified View Follow up for expanded view (#1094)
kala-moz Sep 3, 2026
a35147d
Update all npm dependencies (2026-09-01) (#1091)
depfu[bot] Sep 3, 2026
97f76b6
Bump postcss-selector-parser from 7.1.0 to 7.1.6 (#1092)
dependabot[bot] Sep 3, 2026
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
4 changes: 2 additions & 2 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Automatically request reviews for dependency updates

/package.json @esanuandra @beatrice-acasandrei @canova @kala-moz
/package-lock.json @esanuandra @beatrice-acasandrei @canova @kala-moz
/package.json @esanuandra @beatrice-acasandrei @kala-moz
/package-lock.json @esanuandra @beatrice-acasandrei @kala-moz
9 changes: 9 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,15 @@ export default defineConfig([
projectService: true,
},
},

rules: {
// Allow intentionally-unused args to be marked with a leading underscore
// (e.g. interface methods that ignore a parameter).
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' },
],
},
},
{
// Typescript test files
Expand Down
15 changes: 13 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,25 @@ const config: Config.InitialOptions = {
testPathIgnorePatterns: ['/node_modules/', '<rootDir>/src/__tests__/utils/'],
testEnvironment: './src/__tests__/utils/custom-environment',
transform: {
'^.+\\.(t|j)sx?$': [
'^.+\\.[cm]?[tj]sx?$': [
'@swc/jest',
{
jsc: {
transform: {
react: {
runtime: 'automatic',
},
// react-router (ESM-only since v8) guards a dev-only HMR branch
// with `import.meta.hot`, which is a syntax error once swc
// transforms the module to CommonJS for jest. There is no HMR in
// tests, so compile the check away.
optimizer: {
globals: {
vars: {
'import.meta.hot': 'undefined',
},
},
},
},
},
},
Expand All @@ -38,7 +49,7 @@ const config: Config.InitialOptions = {
// dependencies of fetch-mock do! Hopefully this won't be needed in the future
// when fetch-mock updates.
transformIgnorePatterns: [
'/node_modules/(?!(taskcluster-client-web|data-uri-to-buffer|fetch-blob|formdata-polyfill|fetch-mock|@fetch-mock/jest)/)',
'/node_modules/(?!(taskcluster-client-web|data-uri-to-buffer|fetch-blob|formdata-polyfill|fetch-mock|@fetch-mock/jest|react-router|cookie-es)/)',
],
modulePaths: [],
moduleNameMapper: {
Expand Down
Loading