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 javascript group with 15 updates #272

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the javascript group with 15 updates:

Package From To
@emotion/react 11.11.3 11.11.4
@emotion/styled 11.11.0 11.11.5
@fontsource/roboto 5.0.8 5.0.12
@mui/icons-material 5.15.10 5.15.15
@mui/material 5.15.10 5.15.15
jotai 2.6.4 2.8.0
react-error-boundary 4.0.12 4.0.13
socket.io-client 4.7.4 4.7.5
@swc/core 1.4.0 1.4.14
@types/node 20.11.17 20.12.7
@types/react 18.2.55 18.2.78
@types/react-dom 18.2.19 18.2.25
eslint-plugin-react 7.33.2 7.34.1
typescript 5.3.3 5.4.5
vite 5.1.1 5.2.8

Updates @emotion/react from 11.11.3 to 11.11.4

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.11.4

Patch Changes

  • #3159 5b82631d Thanks @​iegik! - Renamed an internal hasOwnProperty to hasOwn. This avoids problems in CommonJS environments when the consumer tries to prevent prototype pollution with Object.freeze(Object.prototype).
Commits

Updates @emotion/styled from 11.11.0 to 11.11.5

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.11.5

Patch Changes

Commits

Updates @fontsource/roboto from 5.0.8 to 5.0.12

Commits

Updates @mui/icons-material from 5.15.10 to 5.15.15

Release notes

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

v5.15.15

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 19, 2024

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

@mui/[email protected]

@pigment-css/[email protected]

... (truncated)

Changelog

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

v5.15.15

Apr 4, 2024

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 18, 2024

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

@mui/[email protected]

... (truncated)

Commits

Updates @mui/material from 5.15.10 to 5.15.15

Release notes

Sourced from @​mui/material's releases.

v5.15.15

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 19, 2024

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

@mui/[email protected]

@pigment-css/[email protected]

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.15

Apr 4, 2024

A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​mnajdova, @​oliviertassinari, @​ZeeshanTamboli

v5.15.14

Mar 18, 2024

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

@mui/[email protected]

... (truncated)

Commits

Updates jotai from 2.6.4 to 2.8.0

Release notes

Sourced from jotai's releases.

v2.8.0

This version introduces a new feature atomWithLazy and deprecates useReducerAtom and freezeAtomCreator. It also introduces an experimental store implementation in jotai/experimental.

Migration Guide

selectAtom

selectAtom will no longer internally unwrap promises. To migrate to the new api, use the unwrap utility from jotai/utils package.

// suppose we have this
const baseAtom = atom(Promise.resolve({ id: 0, name: 'test' }))
// previously selectAtom would internally unwrap promises.
const idAtom = selectAtom(
baseAtom,
({ name }) => name,
(prev, curr) => prev.id === curr.id
)
// instead, you need to import unwrap from 'jotai/utils' and pass the unwrapped atom
import { unwrap } from 'jotai/utils'
...
const idAtom = selectAtom(
unwrap(baseAtom),
({ name }) => name,
(prev, curr) => prev.id === curr.id
)

useReducerAtom

https://jotai.org/docs/recipes/use-reducer-atom

freezeAtomCreator

https://jotai.org/docs/guides/debugging#freezeatomcreator

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.7.2...v2.8.0

... (truncated)

Commits

Updates react-error-boundary from 4.0.12 to 4.0.13

Release notes

Sourced from react-error-boundary's releases.

4.0.13

Removed references to ESLint config kcd-scripts from package.json

Commits

Updates socket.io-client from 4.7.4 to 4.7.5

Release notes

Sourced from socket.io-client's releases.

4.7.5

Bug Fixes

  • discard acknowledgements upon disconnection (34cbfbb)

Links

Changelog

Sourced from socket.io-client's changelog.

4.7.5 (2024-03-14)

Bug Fixes

  • discard acknowledgements upon disconnection (34cbfbb)

Dependencies

Commits

Updates @swc/core from 1.4.0 to 1.4.14

Changelog

Sourced from @​swc/core's changelog.

[1.4.14] - 2024-04-15

Bug Fixes

Documentation

  • (swc_core) Resolve build issue with --all-features flag (#8848) (c0d901e)

Refactor

Testing

  • (es) Update conformance test suite from tsc (#8834) (ea5d9cc)

[1.4.13] - 2024-04-09

Bug Fixes

... (truncated)

Commits

Updates @types/node from 20.11.17 to 20.12.7

Commits

Updates @types/react from 18.2.55 to 18.2.78

Commits

Updates @types/react-dom from 18.2.19 to 18.2.25

Commits

Updates eslint-plugin-react from 7.33.2 to 7.34.1

Release notes

Sourced from eslint-plugin-react's releases.

v7.34.1

Fixed

Changed

  • [boolean-prop-naming]: improve error message (@​ljharb)

#1000: jsx-eslint/eslint-plugin-react#1000 #1002: jsx-eslint/eslint-plugin-react#1002 #1005: jsx-eslint/eslint-plugin-react#1005 #100: jsx-eslint/eslint-plugin-react#100 #1010: jsx-eslint/eslint-plugin-react#1010 #1013: jsx-eslint/eslint-plugin-react#1013 #1022: jsx-eslint/eslint-plugin-react#1022 #1029: jsx-eslint/eslint-plugin-react#1029 #102: jsx-eslint/eslint-plugin-react#102 #1034: jsx-eslint/eslint-plugin-react#1034 #1038: jsx-eslint/eslint-plugin-react#1038 #1041: jsx-eslint/eslint-plugin-react#1041 #1043: jsx-eslint/eslint-plugin-react#1043 #1046: jsx-eslint/eslint-plugin-react#1046 #1047: jsx-eslint/eslint-plugin-react#1047 #1050: jsx-eslint/eslint-plugin-react#1050 #1053: jsx-eslint/eslint-plugin-react#1053 #1057: jsx-eslint/eslint-plugin-react#1057 #105: jsx-eslint/eslint-plugin-react#105 #1061: jsx-eslint/eslint-plugin-react#1061 #1062: jsx-eslint/eslint-plugin-react#1062 #1070: jsx-eslint/eslint-plugin-react#1070 #1071: jsx-eslint/eslint-plugin-react#1071 #1073: jsx-eslint/eslint-plugin-react#1073 #1076: jsx-eslint/eslint-plugin-react#1076 #1079: jsx-eslint/eslint-plugin-react#1079 #1088: jsx-eslint/eslint-plugin-react#1088 #1098: jsx-eslint/eslint-plugin-react#1098 #1101: jsx-eslint/eslint-plugin-react#1101 #1103: jsx-eslint/eslint-plugin-react#1103 #110: jsx-eslint/eslint-plugin-react#110 #1116: jsx-eslint/eslint-plugin-react#1116 #1117: jsx-eslint/eslint-plugin-react#1117 #1119: jsx-eslint/eslint-plugin-react#1119 #1121: jsx-eslint/eslint-plugin-react#1121 #1122: jsx-eslint/eslint-plugin-react#1122 #1123: jsx-eslint/eslint-plugin-react#1123

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.34.1 - 2024.03.15Description has been truncated

Bumps the javascript group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.11.3` | `11.11.4` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.11.0` | `11.11.5` |
| [@fontsource/roboto](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/roboto) | `5.0.8` | `5.0.12` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `5.15.10` | `5.15.15` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.10` | `5.15.15` |
| [jotai](https://github.com/pmndrs/jotai) | `2.6.4` | `2.8.0` |
| [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `4.0.12` | `4.0.13` |
| [socket.io-client](https://github.com/socketio/socket.io-client) | `4.7.4` | `4.7.5` |
| [@swc/core](https://github.com/swc-project/swc) | `1.4.0` | `1.4.14` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.11.17` | `20.12.7` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.55` | `18.2.78` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.19` | `18.2.25` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.34.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.3.3` | `5.4.5` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.1.1` | `5.2.8` |


Updates `@emotion/react` from 11.11.3 to 11.11.4
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@emotion/styled` from 11.11.0 to 11.11.5
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@fontsource/roboto` from 5.0.8 to 5.0.12
- [Changelog](https://github.com/fontsource/font-files/blob/main/fonts/google/roboto/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/roboto)

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

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

Updates `jotai` from 2.6.4 to 2.8.0
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.6.4...v2.8.0)

Updates `react-error-boundary` from 4.0.12 to 4.0.13
- [Release notes](https://github.com/bvaughn/react-error-boundary/releases)
- [Commits](bvaughn/react-error-boundary@4.0.12...4.0.13)

Updates `socket.io-client` from 4.7.4 to 4.7.5
- [Release notes](https://github.com/socketio/socket.io-client/releases)
- [Changelog](https://github.com/socketio/socket.io-client/blob/main/CHANGELOG.md)
- [Commits](socketio/socket.io-client@4.7.4...4.7.5)

Updates `@swc/core` from 1.4.0 to 1.4.14
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.4.0...v1.4.14)

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

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

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

Updates `eslint-plugin-react` from 7.33.2 to 7.34.1
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/v7.34.1/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.34.1)

Updates `typescript` from 5.3.3 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.3.3...v5.4.5)

Updates `vite` from 5.1.1 to 5.2.8
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.8/packages/vite)

---
updated-dependencies:
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@emotion/styled"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@fontsource/roboto"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript
- dependency-name: react-error-boundary
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: socket.io-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript
...

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 Apr 15, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 22, 2024

Superseded by #274.

@dependabot dependabot bot closed this Apr 22, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/javascript-99e1879f4c branch April 22, 2024 11:50
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