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

Bump the dependencies group across 1 directory with 14 updates #1336

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 10, 2024

Bumps the dependencies group with 13 updates in the / directory:

Package From To
@mui/icons-material 5.15.15 5.16.0
@mui/material 5.15.15 5.16.0
electron-store 8.2.0 10.0.0
fp-ts 2.16.5 2.16.8
react-redux 9.1.1 9.1.2
redux 4.2.1 5.0.1
redux-thunk 2.4.2 3.1.0
@types/node 20.12.7 20.14.10
@types/react 18.3.1 18.3.3
electron 28.2.3 31.2.0
electron-builder 24.9.1 24.13.3
prettier 3.2.5 3.3.2
webpack 5.91.0 5.92.1

Updates @mui/icons-material from 5.15.15 to 5.16.0

Release notes

Sourced from @​mui/icons-material's releases.

v5.16.0

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.16.0

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

v5.16.0

Jul 5, 2024

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.16.0

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

... (truncated)

Commits

Updates @mui/material from 5.15.15 to 5.16.0

Release notes

Sourced from @​mui/material's releases.

v5.16.0

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.16.0

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.16.0

Jul 5, 2024

A big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:

@mui/material@5.16.0

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexey-kozlenkov, @​jxdp, @​oliviertassinari, @​siriwatknp

v5.15.21

Jun 28, 2024

A big thanks to the 7 contributors who made this release possible.

@mui/material@5.15.21

Docs

... (truncated)

Commits

Updates electron-store from 8.2.0 to 10.0.0

Release notes

Sourced from electron-store's releases.

v10.0.0

Breaking

This is only a breaking change if you use the schema option.

sindresorhus/electron-store@v9.0.0...v10.0.0

v9.0.0

Breaking

  • Require Node.js 20 and Electron 30 7ddf0c6
  • This package is now pure ESM. Please read this and this.
    • For TypeScript users, make sure you have the correct tsconfig.

Improvements

  • Update dependencies 7ddf0c6

sindresorhus/electron-store@v8.2.0...v9.0.0

Commits

Updates fp-ts from 2.16.5 to 2.16.8

Changelog

Sourced from fp-ts's changelog.

2.16.8

Polish

Remove useless pure comment, closes #1937

2.16.7

Polish

Add tap for Identity #1943

2.16.6

Polish

Allow dependencies to be widen when using orLeft #1938

Commits

Updates react-redux from 9.1.1 to 9.1.2

Release notes

Sourced from react-redux's releases.

v9.1.2

This bugfix release removes the no-longer-necessary peer dependency on react-native, and tweaks a few TS types for compat with the upcoming React 19 release.

Changes

React Native Peer Dependency Removed

We've always had an awkward peer dependency on both ReactDOM and React Native, because of the need to import the unstable_batchedUpdates API directly from each reconciler. That's part of what led to the sequence of 9.x patch releases to deal with RN compat.

As of 9.0.3, we dropped the batching imports completely, since React 18 now batches by default. That means we didn't even have any remaining imports from react-native.

Meanwhile, React 18.3 just came out, but so did React Native 0.74. RN 0.74 still requires React 18.2.

This caused NPM users to have installation failures when trying to use React-Redux:

  • React-Redux has a peer dep on RN
  • RN has a peer dep on React 18.2
  • But the latest React, 18.3 would get installed in the app
  • NPM errors with a peer dep mismatch

We no longer need to list RN as a peer dep, and dropping that also fixes the NPM installation issues as well.

What's Changed

Full Changelog: reduxjs/react-redux@v9.1.1...v9.1.2

Commits
  • 1af75b3 Release 9.1.2
  • eec5f9b Merge pull request #2168 from reduxjs/feature/react-19-types
  • a752cc6 Fix remaining React 19 types compat issues
  • 23c0c22 Add explicit @​types/prop-types dep
  • bfa3c36 Merge pull request #2167 from reduxjs/bugfix/remove-rn-peerdep
  • 427791b Drop now-unneeded RN peer dep
  • f404f82 Replace usage of deprecated JSX global namespace with React.JSX (#2163)
  • 5ec7970 Fix useRef usages to be called with an explicit argument of undefined. (#...
  • See full diff in compare view

Updates redux from 4.2.1 to 5.0.1

Release notes

Sourced from redux's releases.

v5.0.1

This patch release adjusts the isPlainObject util to allow objects created via Object.create(null), and fixes a type issue which accidentally made the store state type non-nullable.

What's Changed

Full Changelog: reduxjs/redux@v5.0.0...v5.0.1

v5.0.0

This major release:

  • Converts the codebase to TypeScript
  • Updates the packaging for better ESM/CJS compatibility and modernizes the build output
  • Requires that action.type must be a string
  • Continues to mark createStore as deprecated
  • Deprecates the AnyAction type in favor of an UnknownAction type that is used everywhere
  • Removes the PreloadedState type in favor of a new generic argument for the Reducer type.

This release has breaking changes.

This release is part of a wave of major versions of all the Redux packages: Redux Toolkit 2.0, Redux core 5.0, React-Redux 9.0, Reselect 5.0, and Redux Thunk 3.0.

For full details on all of the breaking changes and other significant changes to all of those packages, see the "Migrating to RTK 2.0 and Redux 5.0" migration guide in the Redux docs.

[!NOTE] The Redux core, Reselect, and Redux Thunk packages are included as part of Redux Toolkit, and RTK users do not need to manually upgrade them - you'll get them as part of the upgrade to RTK 2.0. (If you're not using Redux Toolkit yet, please start migrating your existing legacy Redux code to use Redux Toolkit today!)

# RTK
npm install @reduxjs/toolkit
yarn add @reduxjs/toolkit
Standalone
npm install redux
yarn add redux

Changelog

ESM/CJS Package Compatibility

The biggest theme of the Redux v5 and RTK 2.0 releases is trying to get "true" ESM package publishing compatibility in place, while still supporting CJS in the published package.

The primary build artifact is now an ESM file, dist/redux.mjs. Most build tools should pick this up. There's also a CJS artifact, and a second copy of the ESM file named redux.legacy-esm.js to support Webpack 4 (which does not recognize the exports field in package.json). Additionally, all of the build artifacts now live under ./dist/ in the published package.

Modernized Build Output

We now publish modern JS syntax targeting ES2020, including optional chaining, object spread, and other modern syntax. If you need to

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by phryneas, a new releaser for redux since your current version.


Updates redux-thunk from 2.4.2 to 3.1.0

Release notes

Sourced from redux-thunk's releases.

v3.1.0

This major release:

  • Updates the packaging for better ESM/CJS compatibility
  • Changes the package to use named exports instead of a default export

This release has breaking changes. (Note: this actually points to v3.1.0, which includes a hotfix that was meant for 3.0.0.)

This release is part of a wave of major versions of all the Redux packages: Redux Toolkit 2.0, Redux core 5.0, React-Redux 9.0, Reselect 5.0, and Redux Thunk 3.0.

For full details on all of the breaking changes and other significant changes to all of those packages, see the "Migrating to RTK 2.0 and Redux 5.0" migration guide in the Redux docs.

[!NOTE] The Redux core, Reselect, and Redux Thunk packages are included as part of Redux Toolkit, and RTK users do not need to manually upgrade them - you'll get them as part of the upgrade to RTK 2.0. (If you're not using Redux Toolkit yet, please start migrating your existing legacy Redux code to use Redux Toolkit today!)

# RTK
npm install @reduxjs/toolkit
yarn add @reduxjs/toolkit
Standalone
npm install redux-thunk
yarn add redux-thunk

Changelog

Named Exports Instead of Default Exports

The redux-thunk package previously used a single default export that was the thunk middleware, with an attached field named withExtraArgument that allowed customization.

The default export has been removed. There are now two named exports: thunk (the basic middleware) and withExtraArgument.

If you are using Redux Toolkit, this should have no effect, as RTK already handles this inside of configureStore.

ESM/CJS Package Compatibility

The biggest theme of the Redux v5 and RTK 2.0 releases is trying to get "true" ESM package publishing compatibility in place, while still supporting CJS in the published package.

The primary build artifact is now an ESM file, dist/redux-thunk.mjs. Most build tools should pick this up. There's also a CJS artifact, and a second copy of the ESM file named redux-thunk.legacy-esm.js to support Webpack 4 (which does not recognize the exports field in package.json).

Build Tooling

We're now building the package using https://github.com/egoist/tsup. We also now include sourcemaps for the ESM and CJS artifacts.

The repo has been updated to use Yarn 3 for dependencies and Vitest for running tests.

Dropping UMD Builds

Redux has always shipped with UMD build artifacts. These are primarily meant for direct import as script tags, such as in a CodePen or a no-bundler build environment.

... (truncated)

Commits

Updates @types/node from 20.12.7 to 20.14.10

Commits

Updates @types/react from 18.3.1 to 18.3.3

Commits

Updates electron from 28.2.3 to 31.2.0

Release notes

Sourced from electron's releases.

electron v31.2.0

Release Notes for v31.2.0

Features

  • Enabled the Windows Control Overlay API on Linux. #42682 (Also in 30, 32)

Fixes

  • Fixed a focus issue when calling BrowserWindow.setTopBrowserView. #42734 (Also in 30, 32)
  • Fixed an issue where Chromium could crash on a dangling unretained pointer in one of several webRequest functions. #42751 (Also in 32)
  • Fixed an issue where navigator.mediaDevices.enumerateDevices could return broken results in some cases after calling session.setPermissionCheckHandler. #42809 (Also in 30, 32)
  • Fixed an issue where control could fail to return properly after saving a dialog using showOpenDialogSync on Linux. #42678 (Also in 29, 30, 32)
  • Fixed an issue where the user-specified default path did not work in some circumstances when using Linux dialogs. #42685 (Also in 30, 32)

Other Changes

  • Fixed an issue where opening multiple file pickers on Windows via the input tag could cause a crash. #42825 (Also in 32)
  • Updated Chromium to 126.0.6478.127. #42646
  • Updated Node.js to v20.15.0. #42614

electron v31.1.0

Release Notes for v31.1.0

Features

  • Expose systemPreferences to utilityProcess. #42598 (Also in 30, 32)

Fixes

  • Fixed an issue where MessagePorts could close unexpectedly with non-cloneable objects sent via postMessage. #42580 (Also in 30, 32)
  • Fixed an issue where fetch-dependent interfaces could be missing in Web Workers with nodeIntegrationInWorker enabled. #42597 (Also in 30, 32)

Other Changes

  • Updated Chromium to 126.0.6478.114. #42584

electron v31.0.2

Release Notes for v31.0.2

Fixes

  • Fixed an issue where navigator.usb.getDevices() could crash in some circumstances. #42462 (Also in 29, 30)

Other Changes

  • Fixed crash in gpu process when software compositing is enabled on linux with x11 platform. #42570 (Also in 29, 30, 32)
  • Updated Chromium to 126.0.6478.61. #42503

electron v31.0.1

Release Notes for v31.0.1

Fixes

  • Fixed an issue where fetch dependent interfaces in Node.js were not defined when nodeIntegration was enabled in some circumstances. #42453 (Also in 30)

... (truncated)

Commits
  • 7084258 build: fix release, add newVersion for tagging (#42843)
  • 56c3507 refactor: run Windows SelectFileDialog out of process (#42825)
  • 650b8e6 fix: dangling raw_ptr ElectronBrowserContext::extension_system_ (#42813)
  • 7353fa8 refactor: minor electron browser context cleanup (#42815)
  • 50864bc fix: multiple move() calls on the same unique_ptr (#42821)
  • e36d797 fix: video and audio capture should be separate (#42809)
  • 342ef8e feat: enable Windows Control Overlay on Linux (#42682)
  • 89d0992 fix: use BlockedRequest struct to handle webRequest data (#42751)
  • 339c30f docs(autoUpdater): document static storage strategy (#42756)
  • 6caad0a docs(autoUpdater): signing is only a pre-req on macOS (#42753)
  • Additional commits viewable in compare view

Updates electron-builder from 24.9.1 to 24.13.3

Release notes

Sourced from electron-builder's releases.

v24.13.3

What's Changed

New Contributors

Full Changelog: electron-userland/electron-builder@v24.13.2...v24.13.3

v24.13.2

What's Changed

Full Changelog: electron-userland/electron-builder@v24.13.1...v24.13.2

v24.13.1

What's Changed

Full Changelog:

Bumps the dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `5.15.15` | `5.16.0` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.15` | `5.16.0` |
| [electron-store](https://github.com/sindresorhus/electron-store) | `8.2.0` | `10.0.0` |
| [fp-ts](https://github.com/gcanti/fp-ts) | `2.16.5` | `2.16.8` |
| [react-redux](https://github.com/reduxjs/react-redux) | `9.1.1` | `9.1.2` |
| [redux](https://github.com/reduxjs/redux) | `4.2.1` | `5.0.1` |
| [redux-thunk](https://github.com/reduxjs/redux-thunk) | `2.4.2` | `3.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.7` | `20.14.10` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.1` | `18.3.3` |
| [electron](https://github.com/electron/electron) | `28.2.3` | `31.2.0` |
| [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder) | `24.9.1` | `24.13.3` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.2` |
| [webpack](https://github.com/webpack/webpack) | `5.91.0` | `5.92.1` |



Updates `@mui/icons-material` from 5.15.15 to 5.16.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.16.0/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.16.0/packages/mui-icons-material)

Updates `@mui/material` from 5.15.15 to 5.16.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.16.0/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.16.0/packages/mui-material)

Updates `electron-store` from 8.2.0 to 10.0.0
- [Release notes](https://github.com/sindresorhus/electron-store/releases)
- [Commits](sindresorhus/electron-store@v8.2.0...v10.0.0)

Updates `fp-ts` from 2.16.5 to 2.16.8
- [Release notes](https://github.com/gcanti/fp-ts/releases)
- [Changelog](https://github.com/gcanti/fp-ts/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gcanti/fp-ts/commits)

Updates `react-redux` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v9.1.1...v9.1.2)

Updates `redux` from 4.2.1 to 5.0.1
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

Updates `redux-thunk` from 2.4.2 to 3.1.0
- [Release notes](https://github.com/reduxjs/redux-thunk/releases)
- [Commits](reduxjs/redux-thunk@v2.4.2...v3.1.0)

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

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

Updates `electron` from 28.2.3 to 31.2.0
- [Release notes](https://github.com/electron/electron/releases)
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
- [Commits](electron/electron@v28.2.3...v31.2.0)

Updates `electron-builder` from 24.9.1 to 24.13.3
- [Release notes](https://github.com/electron-userland/electron-builder/releases)
- [Changelog](https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md)
- [Commits](https://github.com/electron-userland/electron-builder/commits/v24.13.3/packages/electron-builder)

Updates `prettier` from 3.2.5 to 3.3.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.5...3.3.2)

Updates `typescript` from 5.0.4 to 5.5.3
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.0.4...v5.5.3)

Updates `webpack` from 5.91.0 to 5.92.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.92.1)

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: electron-store
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: fp-ts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-redux
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: redux-thunk
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: electron
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: electron-builder
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 10, 2024
@github-actions github-actions bot enabled auto-merge July 10, 2024 06:05
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 12, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 12, 2024
auto-merge was automatically disabled July 12, 2024 06:54

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-bb29305065 branch July 12, 2024 06:54
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant