PainterQubits / paramview

GUI for viewing and editing the contents of a ParamDB database.
https://pypi.org/project/paramview
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Bump the javascript group across 1 directory with 18 updates #281

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the javascript group with 18 updates in the / directory:

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.13
@mui/icons-material 5.15.10 5.15.17
@mui/material 5.15.10 5.15.17
jotai 2.6.4 2.8.0
react 18.2.0 18.3.1
@types/react 18.2.55 18.3.2
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.19 18.3.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.5.5
@types/node 20.11.17 20.12.11
eslint-plugin-react 7.33.2 7.34.1
eslint-plugin-react-hooks 4.6.0 4.6.2
typescript 5.3.3 5.4.5
vite 5.1.1 5.2.11

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

Commits


Updates @mui/icons-material from 5.15.10 to 5.15.17

Release notes

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

v5.15.17

May 8, 2024

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

@mui/material@5.15.17

Docs

Core

All contributors of this release in alphabetical order: @​github-actions[bot], @​joserodolfofreitas, @​oliviertassinari, @​siriwatknp

v5.15.16

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

@mui/material@5.15.16

Docs

... (truncated)

Changelog

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

v5.15.17

May 8, 2024

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

@mui/material@5.15.17

Docs

Core

All contributors of this release in alphabetical order: @​github-actions[bot], @​joserodolfofreitas, @​oliviertassinari, @​siriwatknp

v5.15.16

May 1, 2024

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

@mui/material@5.15.16

Docs

... (truncated)

Commits


Updates @mui/material from 5.15.10 to 5.15.17

Release notes

Sourced from @​mui/material's releases.

v5.15.17

May 8, 2024

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

@mui/material@5.15.17

Docs

Core

All contributors of this release in alphabetical order: @​github-actions[bot], @​joserodolfofreitas, @​oliviertassinari, @​siriwatknp

v5.15.16

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

@mui/material@5.15.16

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.17

May 8, 2024

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

@mui/material@5.15.17

Docs

Core

All contributors of this release in alphabetical order: @​github-actions[bot], @​joserodolfofreitas, @​oliviertassinari, @​siriwatknp

v5.15.16

May 1, 2024

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

@mui/material@5.15.16

Docs

... (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: https://github.com/pmndrs/jotai/compare/v2.7.2...v2.8.0

... (truncated)

Commits


Updates react from 18.2.0 to 18.3.1

Release notes

Sourced from react's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react since your current version.


Updates @types/react from 18.2.55 to 18.3.2

Commits


Updates react-dom from 18.2.0 to 18.3.1

Release notes

Sourced from react-dom's releases.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Changelog

Sourced from react-dom's changelog.

18.3.1 (April 26, 2024)

  • Export act from react f1338f

18.3.0 (April 25, 2024)

This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.

Read the React 19 Upgrade Guide for more info.

React

  • Allow writing to this.refs to support string ref codemod 909071
  • Warn for deprecated findDOMNode outside StrictMode c3b283
  • Warn for deprecated test-utils methods d4ea75
  • Warn for deprecated Legacy Context outside StrictMode 415ee0
  • Warn for deprecated string refs outside StrictMode #25383
  • Warn for deprecated defaultProps for function components #25699
  • Warn when spreading key #25697
  • Warn when using act from test-utils d4ea75

React DOM

  • Warn for deprecated unmountComponentAtNode 8a015b
  • Warn for deprecated renderToStaticNodeStream #28874
Commits
  • d6c42f7 Bump to 18.3.1
  • 8a015b6 Add deprecation warning for unmountComponentAtNode
  • c3b2839 Add deprecation warning for findDOMNode
  • d4ea75d ReactDOMTestUtils deprecation warnings
  • 7548c01 Deprecate renderToStaticNodeStream (#28872) (#28874)
  • 5894232 Enable warning for defaultProps on function components for everyone (#25699)
  • c2a246e Turn on string ref deprecation warning for everybody (not codemoddable) (#25383)
  • 2cfb474 Bump version from 18.2 to 18.3
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by react-bot, a new releaser for react-dom since your current version.


Updates @types/react-dom from 18.2.19 to 18.3.0

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

Changelog

Sourced from @​swc/core's changelog.

[1.5.5] - 2024-05-08

Bug Fixes

  • (css/modules) Allow any order of composes (#8930) (7014c63)

  • (css/modules) Fix :global selectors without preceding whitespace (#8926) (2405dc6)

  • (es/fixer) Wrap class expressions in callee (#8928) (6b60bdb)

  • (es/minifier) Respect module: false (#8925) (aca6a77)

  • (es/minifier) Consider side effects of operands of binary expressions (#8929) (4d4a7a9)

  • (es/minifier) Fix operand handling of ** (#8933) (c9d72cd)

  • (es/minifier) Fix a bug about Tpl => Str (#8934) (d4be383)

  • (es/module) Resolve .jsx imports fully (#8936) (c536d2a)

Refactor

[1.5.4] - 2024-05-06

Bug Fixes

  • (es/decorators) Handle ref of decorated class (#8905) (af96e39)

  • (es/minifier) Increment ref_count while invoking IIFE (#8904) (86e2bb0)

  • (es/proposal) Fix scoping of explicit resource management pass (#8903) (762b0d4)

Miscellaneous Tasks

... (truncated)

Commits
  • 2f898b5 chore: Publish 1.5.5 with swc_core v0.92.2
  • 76393d9 chore: Bump crates
  • d4be383 fix(es/minifier): Fix a bug about Tpl => Str (#8934)
  • 2c27925 chore: Bump crates
  • c536d2a fix(es/module): Resolve .jsx imports fully (#8936)
  • 6021b47 chore: Bump crates
  • c9d72cd fix(es/minifier): Fix operand handling of ** (#8933)
  • bd6873e chore: Bump crates
  • 2405dc6 fix(css/modules): Fix :global selectors without preceding whitespace (
    dependabot[bot] commented 5 months ago

    Superseded by #283.