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 #1327

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 18, 2024

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

Package From To
@mui/icons-material 5.15.15 5.15.20
@mui/material 5.15.15 5.15.20
electron-store 8.2.0 10.0.0
fp-ts 2.16.5 2.16.6
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.4
@types/react 18.3.1 18.3.3
electron 28.2.3 31.0.1
electron-builder 24.9.1 24.13.3
prettier 3.2.5 3.3.2
webpack 5.91.0 5.92.0

Updates @mui/icons-material from 5.15.15 to 5.15.20

Release notes

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

v5.15.20

Jun 12, 2024

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

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.19

... (truncated)

Changelog

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

v5.15.20

Jun 12, 2024

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

@mui/material@5.15.20

Commits

Updates @mui/material from 5.15.15 to 5.15.20

Release notes

Sourced from @​mui/material's releases.

v5.15.20

Jun 12, 2024

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

@mui/material@5.15.20

@mui/utils@5.15.15

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.15.19

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.20

Jun 12, 2024

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

@mui/material@5.15.20

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.6

Changelog

Sourced from fp-ts's changelog.

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.4

Commits

Updates @types/react from 18.3.1 to 18.3.3

Commits

Updates electron from 28.2.3 to 31.0.1

Release notes

Sourced from electron's releases.

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)
  • Fixed an issue where bad flags passed via --js-flags could cause a crash. #42441 (Also in 29, 30)

electron v31.0.0

Release Notes for v31.0.0

Stack Upgrades

Breaking Changes

  • Made window.flashFrame(bool) flash continuously on macOS. #41391
  • Updated Chromium to 126.0.6445.0. (Removed: WebSQL support) #41868
  • Updated Chromium to 125.0.6412.0. (Behavior Changed: nativeImage.toDataURL will preserve PNG colorspace) #41610

Features

Additions

  • Added a new instance property navigationHistory on webContents API with navigationHistory.getEntryAtIndex method, enabling applications to retrieve the URL and title of any navigation entry within the browsing history. #41577 (Also in 29, 30)
  • Added options parameter to Session.clearData API. #41355
  • Added proxy configuring support for requests made with net module from utility process. #41335 (Also in 28, 29, 30)
  • Added support for Bluetooth ports being requested by service class ID in navigator.serial. #41638 (Also in 29, 30)
  • Added support for NODE_EXTRA_CA_CERTS. #41689
  • Extended webContents.setWindowOpenHandler to support manual creation of BrowserWindow. #41432
  • Implemented support for the File System API. #41419 (Also in 30)
  • clearData method added to Session. #40983
  • Extended WebContentsView to accept pre-existing webContents object. #42319

Improvements

  • Extended WebContentsView to accept pre-existing webContents object. #42319
  • Improved error messages when ses.cookies.set fails. #42400 (Also in 29, 30)
  • Re-adds functionality to check whether or not an app was launched as a login service on macOS. #42422

Removed/Deprecated

  • The inputFieldType property in the context-menu params has been removed. #41239 (Also in 30)

Fixes

  • Added missing support for the recursive option in fs.{readdir|readdirSync} as well as fs.promises.{readdir|readdirSync}. #41582
  • Added support for withFileTypes when calling fs.{readdir|readdirSync} with the recursive in Asar archives. #41627
  • Fixed ASAN build on macOS. #41587

... (truncated)

Commits
  • 8903eec build: add an option to skip the install-sysroot hooks (#42444)
  • 68dfa04 fix: missing fetch-dependent interfaces in Node.js (#42453)
  • 931f4b8 docs: update timelines for E32 (#42452)
  • 3e17753 fix: bad js-flags shouldn't crash the app (#42441)
  • 2633298 build: fix generate_gn_filenames_json.py (#42427)
  • f272c5f fix: multiple selection in //shell_dialogs Portal/KDE implementations (#42424)
  • 9ab67cc fix: restore wasOpenedAtLogin functionality (#42422)
  • 8035eff fix: iframe.contentWindow.document.fonts resolution (#42385)
  • 038e261 feat: Allow WebContentsView to accept webContents object. (#42319)
  • 0d12131 fix: don't destroy BrowserView webContents when owning BrowserWindow hasn't b...
  • 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: electron-userland/electron-builder@v24.13.0...v24.13.1

v24.13.0

What's Changed

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.15.20` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.15` | `5.15.20` |
| [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.6` |
| [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.4` |
| [@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.0.1` |
| [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.0` |



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

Updates `@mui/material` from 5.15.15 to 5.15.20
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.15.20/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.20/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.6
- [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.4
- [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.0.1
- [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.0.1)

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.4.5
- [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.4.5)

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

---
updated-dependencies:
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Jun 18, 2024
@github-actions github-actions bot enabled auto-merge June 18, 2024 06:26
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 19, 2024

Superseded by #1328.

@dependabot dependabot bot closed this Jun 19, 2024
auto-merge was automatically disabled June 19, 2024 06:20

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-8a7c4715e7 branch June 19, 2024 06:20
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