#31595b82631d 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).
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/material@5.15.15
[Autocomplete] Display options provided to the options prop even if loading is true (#41677) @ZeeshanTamboli
[material-ui][Slider] Remove valueLabelFormat from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
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/material@5.15.15
[Autocomplete] Display options provided to the options prop even if loading is true (#41677) @ZeeshanTamboli
[material-ui][Slider] Remove valueLabelFormat from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
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/material@5.15.15
[Autocomplete] Display options provided to the options prop even if loading is true (#41677) @ZeeshanTamboli
[material-ui][Slider] Remove valueLabelFormat from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
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/material@5.15.15
[Autocomplete] Display options provided to the options prop even if loading is true (#41677) @ZeeshanTamboli
[material-ui][Slider] Remove valueLabelFormat from restricted values demo so that the tooltip thumb label displays the same as the value text (#41679) @ZeeshanTamboli
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' }))
// 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
)
Bumps the javascript group with 15 updates:
11.11.3
11.11.4
11.11.0
11.11.5
5.0.8
5.0.12
5.15.10
5.15.15
5.15.10
5.15.15
2.6.4
2.8.0
4.0.12
4.0.13
4.7.4
4.7.5
1.4.0
1.4.12
20.11.17
20.12.5
18.2.55
18.2.74
18.2.19
18.2.24
7.33.2
7.34.1
5.3.3
5.4.4
5.1.1
5.2.8
Updates
@emotion/react
from 11.11.3 to 11.11.4Release notes
Sourced from
@emotion/react
's releases.Commits
6e0e388
Version Packages (#3160)5b82631
Renamed an internalhasOwnProperty
tohasOwn
(#3159)0bfa978
AdddisableRemotePlayback
to valid prop types (#3156)Updates
@emotion/styled
from 11.11.0 to 11.11.5Release notes
Sourced from
@emotion/styled
's releases.Commits
f4640f6
Version Packages (#3170)c9b84db
Fix mismatch between CSSInterpolation and Interpolation<Props> (#3164)6e0e388
Version Packages (#3160)5b82631
Renamed an internalhasOwnProperty
tohasOwn
(#3159)0bfa978
AdddisableRemotePlayback
to valid prop types (#3156)b0014b4
Version Packages (#3143)49c20b4
Fix Theme import for newer Typescript module resolution modes (#3101)45c440f
ChangeArray
toReadonlyArray
in CSS type declarations (#3141)1c60314
AddSECURITY.md
f3b268f
Version Packages (#3058)Updates
@fontsource/roboto
from 5.0.8 to 5.0.12Commits
Updates
@mui/icons-material
from 5.15.10 to 5.15.15Release notes
Sourced from
@mui/icons-material
's releases.... (truncated)
Changelog
Sourced from
@mui/icons-material
's changelog.... (truncated)
Commits
5a07996
5.15.15 (#41752)9585d28
[release] v5.15.14 (#41540)6da671c
[material-next] Drop the package (#41544)98a08c9
[docs] Fix some Vale errors (#41516)dbcb678
[release] v5.15.13 (#41462)828f4da
[pigment] Rename directories to match package names (#41453)16e8ef7
[code-infra] Add alias for icon types (#41248)5ad69e1
v5.15.12 (#41373)cbab3e6
Revert "v5.15.12" (#41371)0a478bb
v5.15.12 (#41289)Updates
@mui/material
from 5.15.10 to 5.15.15Release notes
Sourced from
@mui/material
's releases.... (truncated)
Changelog
Sourced from
@mui/material
's changelog.... (truncated)
Commits
5a07996
5.15.15 (#41752)42afab7
[material-ui][Autocomplete] Display options provided to theoptions
prop ev...cc8d22f
[material-ui][RadioGroup] Apply classnames (#41681)9585d28
[release] v5.15.14 (#41540)da74af0
[docs] Fix useStorageState regressions (#41223)fb361fa
[material-ui] Use interface instead of type for props (#41500)98a08c9
[docs] Fix some Vale errors (#41516)c25839e
[material-ui][Select] Fix variant type (#41405)e0e9a2d
[Accordion] Convert to support CSS extraction (#41221)1ff3d5f
[Autocomplete] Convert to support CSS extraction (#40330)Updates
jotai
from 2.6.4 to 2.8.0Release notes
Sourced from jotai's releases.
... (truncated)
Commits
1b4eb45
2.8.02d2f03a
fix(utils): dev-only deprecation message (#2491)a3be09e
fix(store): remove dev3 methods and add dev4 methods only in store2 (#2484)88303ac
add memory leak test (#2487)2abd51c
deprecate freezeAtomCreator (#2490)93a28f4
fix(vanilla): setters do not freeze new values (#2476)2ca8339
chore: old ts versions to test in ci (#2489)c09843a
chore(deps): update dev dependencies (#2479)93a6fb9
refactor atomWithLazy (#2485)1049ae1
docs: fix some typos (#2483)Updates
react-error-boundary
from 4.0.12 to 4.0.13Release notes
Sourced from react-error-boundary's releases.
Commits
15f1ba2
Update README.md (#180)ed6d112
ci(eslint): use eslint+prettier with ci strictly (#165)Updates
socket.io-client
from 4.7.4 to 4.7.5Release notes
Sourced from socket.io-client's releases.
Changelog
Sourced from socket.io-client's changelog.
Commits
4f6030f
chore(release): 4.7.534cbfbb
fix: discard acknowledgements upon disconnectionUpdates
@swc/core
from 1.4.0 to 1.4.12Changelog
Sourced from
@swc/core
's changelog.... (truncated)
Commits
0a76e16
chore: Publish1.4.12
withswc_core
v0.90.27
c3b750d
chore: Publish 1.4.12-nightly-20240404.1dc25df1
chore: Bump crates47714c5
feat(es/minifier): Evaluate spread of arrays (#8811)ff5f69f
chore: Bump crates730ded2
fix(es/minifier): Abort fn inliner if there's a spread arg (#8809)d1eb7b8
chore: Bump crates207582f
chore(deps): Update dependencies (#8810)9e28254
chore: Bump crates9ffcd18
fix(es): Change default value ofinputSourceMap
totrue
(#8801)Updates
@types/node
from 20.11.17 to 20.12.5Commits
Updates
@types/react
from 18.2.55 to 18.2.74Commits
Updates
@types/react-dom
from 18.2.19 to 18.2.24Commits
Updates
eslint-plugin-react
from 7.33.2 to 7.34.1Release notes
Sourced from eslint-plugin-react's releases.