Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps the all-npm-deps group in /src/ContentProcessorWeb with 17 updates:

Package From To
@azure/msal-browser 4.21.1 4.24.1
@azure/msal-react 3.0.19 3.0.20
@fluentui/react-components 9.69.0 9.70.0
@fluentui/react-icons 2.0.309 2.0.311
@reduxjs/toolkit 2.8.2 2.9.0
axios 1.11.0 1.12.2
react-medium-image-zoom 5.3.0 5.4.0
react-router-dom 7.8.2 7.9.3
react-window 2.0.2 2.2.0
@types/react-window 1.8.8 2.0.0
@eslint/js 9.34.0 9.36.0
@types/react 19.1.12 19.1.16
@types/react-virtualized 9.22.2 9.22.3
globals 16.3.0 16.4.0
sass 1.91.0 1.93.2
typescript 5.9.2 5.9.3
typescript-eslint 8.41.0 8.45.0

Updates @azure/msal-browser from 4.21.1 to 4.24.1

Release notes

Sourced from @​azure/msal-browser's releases.

@​azure/msal-browser v4.24.1

4.24.1

Tue, 30 Sep 2025 22:02:06 GMT

Patches

  • Add prompt=select_account for native flows (#8062) ([email protected])
  • Add support for pageException error to fallback to web (#8064) ([email protected])
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump msal-test-utils to v0.0.1 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-browser v4.24.0

4.24.0

Wed, 24 Sep 2025 21:54:45 GMT

Minor changes

  • [Native Auth] Add MFA related state and results ([email protected])
  • Add changes in network and interaction client layers to support MFA ([email protected])
  • Instrument data boundary claim #8054 ([email protected])
  • Bump @​azure/msal-common to v15.13.0 (beachball)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump msal-test-utils to v0.0.1 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

@​azure/msal-browser v4.23.0

4.23.0

Wed, 17 Sep 2025 09:50:42 GMT

Minor changes

  • Support authentication method registration during Sign-In, #8007 ([email protected])
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump msal-test-utils to v0.0.1 (beachball)
  • Bump rollup-msal to v0.0.0 (beachball)

Patches

@​azure/msal-browser v4.22.1

4.22.1

Tue, 09 Sep 2025 20:27:59 GMT

... (truncated)

Commits

Updates @azure/msal-react from 3.0.19 to 3.0.20

Release notes

Sourced from @​azure/msal-react's releases.

@​azure/msal-react v3.0.20

3.0.20

Wed, 24 Sep 2025 21:54:45 GMT

Patches

  • Bump @​azure/msal-browser to v4.24.0 (beachball)
  • Bump eslint-config-msal to v0.0.0 (beachball)
  • Bump msal-test-utils to v0.0.1 (beachball)
Commits

Updates @fluentui/react-components from 9.69.0 to 9.70.0

Release notes

Sourced from @​fluentui/react-components's releases.

@​fluentui/react-components v9.70.0

Minor changes

  • feat: expose JSX namespace in backwards compatible way for react 19 typescript support (PR #35137 by Hotell)
  • Use default cursor when selection is disabled (PR #35153 by george-cz)
  • feat(motion): add delay parameter to motion components (PR #35077 by robertpenner)
  • feat: add useTypingAnnounce hook for managing live regions triggered by user input (PR #34354 by smhigley)
  • feat: add support for disabled cards (PR #35028 by marcosmoura)
  • feat: re-export custom JSX types from react-utilities (PR #35057 by dmytrokirpa)
  • feat: add useTypingAnnounce hook (PR #34354 by smhigley)

Patches

... (truncated)

Commits
  • 2ee14c1 release: applying package updates - react-components
  • 17af11b release: applying package updates - react v8
  • 2d6aca2 fix(react-charting): Fixing donut colors and segment orders (#35131)
  • 624002a feat(scripts-cypress): make sure webpack dev server port is unique to enable ...
  • 718ac46 fix(workspace-plugin): make react lib and component generators pass linting a...
  • 80318c9 List: default cursor for items with disabled selection (#35153)
  • 661e9bb release: applying package updates - web-components
  • dd72a5e feat: add useTypingAnnounce hook for managing live regions triggered by user ...
  • 06d989b chore(react-utilities): properly configure prebuild target nx cache (#35146)
  • eb7f6d5 chore: extend packages peer dependencies versions to support React 19 (#35145)
  • Additional commits viewable in compare view

Updates @fluentui/react-icons from 2.0.309 to 2.0.311

Commits

Updates @reduxjs/toolkit from 2.8.2 to 2.9.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.9.0

This feature release rewrites RTK Query's internal subscription and polling systems and the useStableQueryArgs hook for better perf, adds automatic AbortSignal handling to requests still in progress when a cache entry is removed, fixes a bug with the transformResponse option for queries, adds a new builder.addAsyncThunk method, and fixes assorted other issues.

Changelog

RTK Query Performance Improvements

We had reports that RTK Query could get very slow when there were thousands of subscriptions to the same cache entry. After investigation, we found that the internal polling logic was attempting to recalculate the minimum polling time after every new subscription was added. This was highly inefficient, as most subscriptions don't change polling settings, and it required repeated O(n) iteration over the growing list of subscriptions. We've rewritten that logic to debounce the update check and ensure a max of one polling value update per tick for the entire API instance.

Related, while working on the request abort changes, testing showed that use of plain Records to hold subscription data was inefficient because we have to iterate keys to check size. We've rewritten the subscription handling internals to use Maps instead, as well as restructuring some additional checks around in-flight requests.

These two improvements drastically improved runtime perf for the thousands-of-subscriptions-one-cache-entry repro, eliminating RTK methods as visible hotspots in the perf profiles. It likely also improves perf for general usage as well.

We've also changed the implementation of our internal useStableQueryArgs hook to avoid calling serializeQueryArgs on its value, which can avoid potential perf issues when a query takes a very large object as its cache key.

[!NOTE] The internal logic switched from serializing the query arg to doing reference checks on nested values. This means that if you are passing a non-POJO value in a query arg, such as useSomeQuery({a: new Set()}), and you have refetchOnMountOrArgChange enabled, this will now trigger refeteches each time as the Set references are now considered different based on equality instead of serialization.

Abort Signal Handling on Cleanup

We've had numerous requests over time for various forms of "abort in-progress requests when the data is no longer needed / params change / component unmounts / some expensive request is taking too long". This is a complex topic with multiple potential use cases, and our standard answer has been that we don't want to abort those requests - after all, cache entries default to staying in memory for 1 minute after the last subscription is removed, so RTKQ's cache can still be updated when the request completes. That also means that it doesn't make sense to abort a request "on unmount".

However, it does then make sense to abort an in-progress request if the cache entry itself is removed. Given that, we've updated our cache handling to automatically call the existing resPromise.abort() method in that case, triggering the AbortSignal attached to the baseQuery. The handling at that point depends on your app - fetchBaseQuery should handle that, a custom baseQuery or queryFn would need to listen to the AbortSignal.

We do have an open issue asking for further discussions of potential abort / cancelation use cases and would appreciate further feedback.

New Options

The builder callback used in createReducer and createSlice.extraReducers now has builder.addAsyncThunk available, which allows handling specific actions from a thunk in the same way that you could define a thunk inside createSlice.reducers:

        const slice = createSlice({
          name: 'counter',
          initialState: {
            loading: false,
            errored: false,
            value: 0,
          },
          reducers: {},
          extraReducers: (builder) =>
            builder.addAsyncThunk(asyncThunk, {
              pending(state) {
                state.loading = true
              },
              fulfilled(state, action) {
                state.value = action.payload
              },
              rejected(state) {
                state.errored = true
              },
</tr></table> 

... (truncated)

Commits
  • 98c54c6 Release 2.9.0
  • 0a86abd export some useful async thunk types
  • d02c27a add docs for addAsyncThunk (#5066)
  • ab346b9 fixdoc: incorrect position of keepUnusedDataFor for two scenarios (#5062)
  • d2bbb8d Rewrite subscription handling and polling calculations for better perf (#5064)
  • 3c6de47 Merge pull request #5065 from reduxjs/feature/TS5.9-matrix
  • c37b977 Add missing error value
  • 38537c3 Don't run Node10 checks for TS 6+
  • 821be20 Add TS 5.9 to the matrix
  • 407688d Abort pending requests if the cache entry is removed (#5061)
  • Additional commits viewable in compare view

Updates axios from 1.11.0 to 1.12.2

Release notes

Sourced from axios's releases.

Release v1.12.2

Release notes:

Bug Fixes

  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#7030) (cf78825)

Contributors to this release

Release v1.12.1

Release notes:

Bug Fixes

Contributors to this release

Release v1.12.0

Release notes:

Bug Fixes

Features

  • adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
  • fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
  • support reviver on JSON.parse (#5926) (2a97634), closes #5924
  • types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.12.2 (2025-09-14)

Bug Fixes

  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#7030) (cf78825)

Contributors to this release

1.12.1 (2025-09-12)

Bug Fixes

Contributors to this release

1.12.0 (2025-09-11)

Bug Fixes

Features

  • adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
  • fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
  • support reviver on JSON.parse (#5926) (2a97634), closes #5924
  • types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)

Contributors to this release

... (truncated)

Commits

Updates react-medium-image-zoom from 5.3.0 to 5.4.0

Release notes

Sourced from react-medium-image-zoom's releases.

v5.4.0

Minor Changes

  • 8d950e4: Add support for onZoomChange reporting to Uncontrolled components and include additional argument housing the fired event

Patch Changes

  • 855bc02: ensure open modal has pointer-events to fix 3rd party probs
Changelog

Sourced from react-medium-image-zoom's changelog.

5.4.0

Minor Changes

  • 8d950e4: Add support for onZoomChange reporting to Uncontrolled components and include additional argument housing the fired event

Patch Changes

  • 855bc02: ensure open modal has pointer-events to fix 3rd party probs
Commits
  • e01ceee Merge pull request #943 from rpearce/changeset-release/main
  • 2b16bfc Add @​rdestefa as a contributor
  • 9935cc5 Version Packages
  • 2c0e613 Merge pull request #945 from rpearce/dependabot/npm_and_yarn/dev-dependencies...
  • cfad590 Merge pull request #944 from rpearce/fix/prevent-zoom-click-event-propagation
  • 83f7b9a READEME newlines
  • fe88a0d Use the types, Luke
  • d48e48b walk back potential breaking change and just use the new pattern hooray
  • a6ab17a add onZoomChange example to main, Regular img story
  • 8d950e4 feat: Add support for onZoomChange reporting to Uncontrolled components and i...
  • Additional commits viewable in compare view

Updates react-router-dom from 7.8.2 to 7.9.3

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

Changelog

Sourced from react-router-dom's changelog.

7.9.3

Patch Changes

7.9.2

Patch Changes

7.9.1

Patch Changes

7.9.0

Patch Changes

Commits

Updates react-window from 2.0.2 to 2.2.0

Release notes

Sourced from react-window's releases.

2.2.0

  • Support for dynamic row heights via new useDynamicRowHeight hook.
const rowHeight = useDynamicRowHeight({
  defaultRowHeight: 50
});
return <List rowHeight={rowHeight} {...rest} />;

  • Smaller NPM bundle; (docs are no longer included as part of the bundle due to the added size)

Documentation at: https://react-window-9gegorjnr-brian-vaughns-projects.vercel.app/

2.1.2

Prevent ResizeObserver API from being called at all if an explicit List height (or Grid width and height) is provided.

Thanks to @​tnajdek for the PR!


Documentation at: https://react-window-8cygyvomv-brian-vaughns-projects.vercel.app/

2.1.1

Grids with only one row no longer incorrectly set cell height to 100%.


Documentation at: https://react-window-8cygyvomv-brian-vaughns-projects.vercel.app/

2.1.0

Improved ARIA support:

  • Add better default ARIA attributes for outer HTMLDivElement
  • Add optional ariaAttributes prop to row and cell renderers to simplify better ARIA attributes for user-rendered cells
  • Remove intermediate HTMLDivElement from List and Grid
    • This may enable more/better custom CSS styling
    • This may also enable adding an optional children prop to List and Grid for e.g. overlays/tooltips
  • Add optional tagName prop; defaults to "div" but can be changed to e.g. "ul"
// Example of how to use new `ariaAttributes` prop
function RowComponent({
  ariaAttributes,
  index,
  style,
  ...rest
</tr></table> 

... (truncated)

Changelog

Sourced from react-window's changelog.

2.2.0

  • Support for dynamic row heights via new useDynamicRowHeight hook.
const rowHeight = useDynamicRowHeight({
  defaultRowHeight: 50
});
return <List rowHeight={rowHeight} {...rest} />;

  • Smaller NPM bundle; (docs are no longer included as part of the bundle due to the added size)

2.1.2

Prevent ResizeObserver API from being called at all if an explicit List height (or Grid width and height) is provided.

2.1.1

Grids with only one row no longer incorrectly set cell height to 100%.

2.1.0

Improved ARIA support:

  • Add better default ARIA attributes for outer HTMLDivElement
  • Add optional ariaAttributes prop to row and cell renderers to simplify better ARIA attributes for user-rendered cells
  • Remove intermediate HTMLDivElement from List and Grid
    • This may enable more/better custom CSS styling
    • This may also enable adding an optional children prop to List and Grid for e.g. overlays/tooltips
  • Add optional tagName prop; defaults to "div" but can be changed to e.g. "ul"
// Example of how to use new `ariaAttributes` prop
function RowComponent({
  ariaAttributes,
  index,
  style,
  ...rest
}: RowComponentProps<object>) {
  return (
    <div style={style} {...ariaAttributes}>
      ...
    </div>
  );
}

Added optional children prop to better support edge cases like sticky rows.

... (truncated)

Commits
  • 4d71210 Relax List rowHeight constraint (alt) (#857)
  • 1220d5c Remove docs from NPM bundle; they're pretty large (#858)
  • 5992e1d Improve mock ResizeObserver test utils
  • 71df53d Update image example to set width=100%
  • dbd044c 2.1.1 -> 2.1.2
  • 079b878 Removed unnecessary mock reset
  • 778bb05 Mark style param required in useResizeObserver
  • 2cd8402 Fix ResizeObserver being used even with size provided (#855)
  • e83054b Image compression
  • 0ec4930 Updated image aspect ratio a bit to make the example more visually interesting
  • Additional commits viewable in compare view

Updates @types/react-window from 1.8.8 to 2.0.0

Commits

Updates @eslint/js from 9.34.0 to 9.36.0

Release notes

Sourced from @​eslint/js's releases.

v9.36.0

Features

  • 47afcf6 feat: correct preserve-caught-error edge cases (#20109) (Francesco Trotta)

Bug Fixes

  • 75b74d8 fix: add missing rule option types (#20127) (ntnyq)
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116) (루밀LuMir)
  • 7d61b7f fix: add missing scope types to Scope.type (#20110) (Pixel998)
  • 7a670c3 fix: correct rule option typings in rules.d.ts (#20084) (Pixel998)

Documentation

  • b73ab12 docs: update examples to use defineConfig (#20131) (sethamus)
  • 31d9392 docs: fix typos (#20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)

Chores

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)
  • bac82a2 ci: simplify renovate configuration (#19907) (唯然)
  • c00bb37 ci: bump actions/labeler from 5 to 6 (#20090) (dependabot[bot])
  • fee751d refactor: use defaultOptions in rules (#20121) (Pixel998)
  • 1ace67d chore: update example to use defineConfig (#20111) (루밀LuMir)
  • 4821963 test: add missing loc information to error objects in rule tests (#20112) (루밀LuMir)
  • b42c42e chore:...

    Description has been truncated

Bumps the all-npm-deps group in /src/ContentProcessorWeb with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [@azure/msal-browser](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `4.21.1` | `4.24.1` |
| [@azure/msal-react](https://github.com/AzureAD/microsoft-authentication-library-for-js) | `3.0.19` | `3.0.20` |
| [@fluentui/react-components](https://github.com/microsoft/fluentui) | `9.69.0` | `9.70.0` |
| [@fluentui/react-icons](https://github.com/microsoft/fluentui-system-icons) | `2.0.309` | `2.0.311` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.8.2` | `2.9.0` |
| [axios](https://github.com/axios/axios) | `1.11.0` | `1.12.2` |
| [react-medium-image-zoom](https://github.com/rpearce/react-medium-image-zoom) | `5.3.0` | `5.4.0` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.8.2` | `7.9.3` |
| [react-window](https://github.com/bvaughn/react-window) | `2.0.2` | `2.2.0` |
| [@types/react-window](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-window) | `1.8.8` | `2.0.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.34.0` | `9.36.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.12` | `19.1.16` |
| [@types/react-virtualized](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-virtualized) | `9.22.2` | `9.22.3` |
| [globals](https://github.com/sindresorhus/globals) | `16.3.0` | `16.4.0` |
| [sass](https://github.com/sass/dart-sass) | `1.91.0` | `1.93.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.41.0` | `8.45.0` |


Updates `@azure/msal-browser` from 4.21.1 to 4.24.1
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-browser-v4.21.1...msal-browser-v4.24.1)

Updates `@azure/msal-react` from 3.0.19 to 3.0.20
- [Release notes](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases)
- [Commits](AzureAD/microsoft-authentication-library-for-js@msal-react-v3.0.19...msal-react-v3.0.20)

Updates `@fluentui/react-components` from 9.69.0 to 9.70.0
- [Release notes](https://github.com/microsoft/fluentui/releases)
- [Changelog](https://github.com/microsoft/fluentui/blob/master/azure-pipelines.release.yml)
- [Commits](https://github.com/microsoft/fluentui/compare/@fluentui/react-components_v9.69.0...@fluentui/react-components_v9.70.0)

Updates `@fluentui/react-icons` from 2.0.309 to 2.0.311
- [Changelog](https://github.com/microsoft/fluentui-system-icons/blob/main/fluentui-android-system-icons-release.yml)
- [Commits](https://github.com/microsoft/fluentui-system-icons/commits)

Updates `@reduxjs/toolkit` from 2.8.2 to 2.9.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.8.2...v2.9.0)

Updates `axios` from 1.11.0 to 1.12.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.12.2)

Updates `react-medium-image-zoom` from 5.3.0 to 5.4.0
- [Release notes](https://github.com/rpearce/react-medium-image-zoom/releases)
- [Changelog](https://github.com/rpearce/react-medium-image-zoom/blob/main/CHANGELOG.md)
- [Commits](rpearce/react-medium-image-zoom@v5.3.0...v5.4.0)

Updates `react-router-dom` from 7.8.2 to 7.9.3
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `react-window` from 2.0.2 to 2.2.0
- [Release notes](https://github.com/bvaughn/react-window/releases)
- [Changelog](https://github.com/bvaughn/react-window/blob/master/CHANGELOG.md)
- [Commits](bvaughn/react-window@2.0.2...2.2.0)

Updates `@types/react-window` from 1.8.8 to 2.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-window)

Updates `@eslint/js` from 9.34.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.36.0/packages/js)

Updates `@types/react` from 19.1.12 to 19.1.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `@types/react-virtualized` from 9.22.2 to 9.22.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-virtualized)

Updates `@types/react-window` from 1.8.8 to 2.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-window)

Updates `globals` from 16.3.0 to 16.4.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.3.0...v16.4.0)

Updates `sass` from 1.91.0 to 1.93.2
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.91.0...1.93.2)

Updates `typescript` from 5.9.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.9.2...v5.9.3)

Updates `typescript-eslint` from 8.41.0 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@azure/msal-browser"
  dependency-version: 4.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: "@azure/msal-react"
  dependency-version: 3.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-deps
- dependency-name: "@fluentui/react-components"
  dependency-version: 9.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: "@fluentui/react-icons"
  dependency-version: 2.0.311
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-deps
- dependency-name: "@reduxjs/toolkit"
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: axios
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: react-medium-image-zoom
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: react-router-dom
  dependency-version: 7.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: react-window
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: "@types/react-window"
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-npm-deps
- dependency-name: "@eslint/js"
  dependency-version: 9.36.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: "@types/react"
  dependency-version: 19.1.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-deps
- dependency-name: "@types/react-virtualized"
  dependency-version: 9.22.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-deps
- dependency-name: "@types/react-window"
  dependency-version: 2.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-npm-deps
- dependency-name: globals
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: sass
  dependency-version: 1.93.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-deps
- dependency-name: typescript-eslint
  dependency-version: 8.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-npm-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 1, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Oct 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants