stipsan / react-spring-bottom-sheet

Accessible ♿️, Delightful ✨, & Fast 🚀
https://react-spring.bottom-sheet.dev/
MIT License
960 stars 132 forks source link

fix(deps): Update non-major #281

Open renovate[bot] opened 1 year ago

renovate[bot] commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@juggle/resize-observer (source) 3.3.1 -> 3.4.0 age adoption passing confidence dependencies minor
@reach/portal (source) ^0.13.0 -> ^0.18.0 age adoption passing confidence dependencies minor
@rooks/use-raf (source) ^4.5.0 -> ^4.11.2 age adoption passing confidence devDependencies patch
@semantic-release/git ^9.0.0 -> ^9.0.1 age adoption passing confidence devDependencies patch
@tailwindcss/forms ^0.4.0 -> ^0.5.9 age adoption passing confidence devDependencies minor
@​types/classnames ^2.2.11 -> ^2.3.4 age adoption passing confidence devDependencies patch
@types/react (source) ^17.0.0 -> ^17.0.83 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin (source) ^4.9.0 -> ^4.33.0 age adoption passing confidence devDependencies patch
@typescript-eslint/parser (source) ^4.9.0 -> ^4.33.0 age adoption passing confidence devDependencies patch
@xstate/inspect (source) ^0.6.0 -> ^0.8.0 age adoption passing confidence devDependencies minor
autoprefixer ^10.0.4 -> ^10.4.20 age adoption passing confidence devDependencies patch
babel-eslint ^10.1.0 -> ^7.11.0 devDependencies replacement
classnames ^2.2.6 -> ^2.5.1 age adoption passing confidence devDependencies minor
eslint (source) ^7.14.0 -> ^7.32.0 age adoption passing confidence devDependencies patch
eslint-plugin-flowtype ^5.2.0 -> ^5.10.0 age adoption passing confidence devDependencies patch
eslint-plugin-import ^2.22.1 -> ^2.31.0 age adoption passing confidence devDependencies minor
eslint-plugin-jsx-a11y ^6.4.1 -> ^6.10.2 age adoption passing confidence devDependencies minor
eslint-plugin-react ^7.21.5 -> ^7.37.2 age adoption passing confidence devDependencies minor
eslint-plugin-react-hooks (source) ^4.2.0 -> ^4.6.2 age adoption passing confidence devDependencies minor
focus-trap 6.7.1 -> 6.9.4 age adoption passing confidence dependencies minor
microbundle ^0.14.0 -> ^0.15.1 age adoption passing confidence devDependencies minor
postcss-cli ^8.3.0 -> ^8.3.1 age adoption passing confidence devDependencies patch
postcss-custom-properties-fallback ^1.0.1 -> ^1.0.2 age adoption passing confidence devDependencies patch
postcss-import-svg ^1.0.1 -> ^1.0.5 age adoption passing confidence devDependencies patch
postcss-preset-env (source) ^6.7.0 -> ^6.7.2 age adoption passing confidence devDependencies patch
prettier (source) ^2.2.1 -> ^2.8.8 age adoption passing confidence devDependencies minor
prettier-package-json ^2.1.3 -> ^2.8.0 age adoption passing confidence devDependencies minor
react (source) ^17.0.0 -> ^17.0.2 age adoption passing confidence devDependencies patch
react-dom (source) ^17.0.0 -> ^17.0.2 age adoption passing confidence devDependencies patch
smooth-scroll-into-view-if-needed (source) ^1.1.29 -> ^1.1.33 age adoption passing confidence devDependencies patch
tailwindcss (source) ^2.0.1 -> ^2.2.19 age adoption passing confidence devDependencies patch
typescript (source) ^4.1.2 -> ^4.9.5 age adoption passing confidence devDependencies minor
xstate (source) 4.27.0 -> 4.38.3 age adoption passing confidence dependencies minor

This is a special PR that replaces babel-eslint with the community suggested minimal stable replacement version.


Release Notes

juggle/resize-observer (@​juggle/resize-observer) ### [`v3.4.0`](https://redirect.github.com/juggle/resize-observer/releases/tag/v3.4.0) [Compare Source](https://redirect.github.com/juggle/resize-observer/compare/v3.3.1...v3.4.0) Aligns polyfill with spec changes. Initial value of `lastReportedSize` changed from `0, 0` to `-1, -1` allowing for consistent notifications to be triggered when an element is observed for the first time. ```typescript const el = document.createElement('div'); const ro = new ResizeObserver(() => { ... }); ro.observe(el); // Will now notify with size `0, 0`. ``` [https://github.com/w3c/csswg-drafts/issues/3664#issuecomment-1218270926](https://redirect.github.com/w3c/csswg-drafts/issues/3664#issuecomment-1218270926)
reach/reach-ui (@​reach/portal) ### [`v0.18.0`](https://redirect.github.com/reach/reach-ui/blob/HEAD/packages/portal/CHANGELOG.md#0180) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.17.0...@reach/portal@0.18.0) ##### BREAKING Changes - All default exports have been removed. Replace all default imports with the appropriate documented named export. - The output directory structure has changed slightly. Module files are now named `reach-.mjs` instead of `reach-.esm.js`. ##### Minor Changes - We have simplified our build setup to remove a boatload of dependencies. Build output for all packages may look slightly different, though functionally packages that don't have explicit changes marked in the release notes have not changed. This may affect you if you use `patch-package` to modify output code. If you need support for legacy browsers, the new bundle may not transpile the same ECMA features as before. In that case you may want to transpile Reach packages directly. ##### Patch Changes - Updated dependencies: - `@reach/utils@0.18.0` ### [`v0.17.0`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.17.0) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.16.2...v0.17.0) #### 💔 Breaking Changes - `disclosure` - In uncontrolled disclosures, previously we would render the disclosure as open on the first render, regardless of the `defaultOpen` prop's value. This was done as a progressive enhancement to ensure content was visible to users without JavaScript, but in most cases it just meant that the user might see a flash before the state would change, causing unwanted layout shift. - We simplified this by simply respecting the `defaultOpen` prop's value on the initial render. If you want the old behavior, control the state of your disclosures and ensure that the initial open state is always set to `true`, then set the desired state for the following render in `useEffect`. - `tabs` - Removed the `isSelected` from from the `Tab` component. This prop was useful before we had hooks, but we can now get the selected tab from context without using render props. ([`2dd0aec`](https://redirect.github.com/reach/reach-ui/commit/2dd0aec73c4cc2a9a1936cb6c3e43933b2d2765f)) #### 🐛 Bugfixes - `auto-id` - Use the user-provided ID beyond the first render for deterministic behavior ([`b2f3bc0`](https://redirect.github.com/reach/reach-ui/commit/b2f3bc010091a0bc7a99985657137101a58036ef)) - `tabs` - Stop managing focus on mouse clicks to fix `:focus-visible` - `listbox` - Update submit button `querySelector` specificity to fix incorrect button clicks ([#​903](https://redirect.github.com/reach/reach-ui/issues/903)) - `menu-button`, `combobox`, `listbox` - Skip rendering of portaled popovers before hydration. This prevents unwanted layout shift when the server-rendered popover mounts to a temporary DOM node ([`a8f38a4`](https://redirect.github.com/reach/reach-ui/commit/a8f38a497c0481156a4da1fecef955f398101327)). ##### 🤜🤛 8 Committers - Ashlee M Boyer ([@​ashleemboyer](https://redirect.github.com/ashleemboyer)) - Jeff Grannes ([@​jeffgrannes](https://redirect.github.com/jeffgrannes)) - Jonathan ([@​jhogervorst](https://redirect.github.com/jhogervorst)) - Kendall Strautman ([@​kendallstrautman](https://redirect.github.com/kendallstrautman)) - Kent C. Dodds ([@​kentcdodds](https://redirect.github.com/kentcdodds)) - Vlad Yanchevsky ([@​chevsky](https://redirect.github.com/chevsky)) - Zach Gotsch ([@​zgotsch](https://redirect.github.com/zgotsch)) - [@​rainmodred](https://redirect.github.com/rainmodred) ### [`v0.16.2`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.16.2) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.16.0...v0.16.2) #### ✨ Enhancements - `combobox` - [#​783](https://redirect.github.com/reach/reach-ui/pull/783) Stop binding value changes from undesirely expanding combobox ([@​dlacaille](https://redirect.github.com/dlacaille)) - `portal` - [#​756](https://redirect.github.com/reach/reach-ui/pull/756) Add optional node container target to Portal ([@​Warsaken](https://redirect.github.com/Warsaken)) - `disclosure` - Make `Disclosure` accessible when Javascript is disabled ([@​schwartzadev](https://redirect.github.com/schwartzadev)) ##### 🤜🤛 5 Committers - Adam Rackis ([@​arackaf](https://redirect.github.com/arackaf)) - Andrew Schwartz ([@​schwartzadev](https://redirect.github.com/schwartzadev)) - Austin Wood ([@​indiesquidge](https://redirect.github.com/indiesquidge)) - Dominic Lacaille ([@​dlacaille](https://redirect.github.com/dlacaille)) - [@​Warsaken](https://redirect.github.com/Warsaken) ### [`v0.16.0`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.16.0) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.15.3...v0.16.0) **BREAKING:** This release fixes a rendering bug in the `descendants`, but the bug in some cases may have coincidentally allowed descendants to be re-indexed in dynamically sorted lists. While this is probably a nice feature, it didn't work consistently and created problems with nested collections. We do not directly support dynamic sorting of lists, so if you relied on this "feature" you'll need to provide indices to the descendant item directly via props. If you're rendering dynamic lists you are probably iterating an array anyway, so you shouldn't have any issues. This applies to all collection-based compound components: - Tabs - Accordion - MenuButton - Listbox - Combobox #### 🐛 Bugfixes - `menu-button` - Reference root's ownerDocument instead of global, better support in iframes #### ✨ Enhancements - `menu-button` - Better handling of mouse-move that caused problems with long lists on small screens - `dialog` - Update dependencies to fix small bugs in focus-lock - `rect` - Only log warning if `observe` is true ##### 🤜🤛 3 Committers - Chance Strickland ([@​chaance](https://redirect.github.com/chaance)) - Aliaksei Kirylchyk ([@​akirilchik](https://redirect.github.com/akirilchik)) - Rauno ([@​raunofreiberg](https://redirect.github.com/raunofreiberg)) ### [`v0.15.3`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.15.3) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.15.2...v0.15.3) #### 🐛 Bugfixes - `utils` - Typescript error for `as={Link}` on `MenuLink` (via `utils/polymorphic`) ([@​IanVS](https://redirect.github.com/IanVS)) - `menu-button` - [#​812](https://redirect.github.com/reach/reach-ui/pull/812) Prevent default for links to avoid double click events ([@​IanVS](https://redirect.github.com/IanVS)) - Popover does not consistently close when clicking between Menu Buttons ([@​ecklf](https://redirect.github.com/ecklf)) - `listbox` - Cannot focus on ListboxList when its styled to overlap ListboxButton ([@​loque](https://redirect.github.com/loque)) #### 📝 Documentation - `dialog` - [#​803](https://redirect.github.com/reach/reach-ui/pull/803) Fix typo ([@​apollonian](https://redirect.github.com/apollonian)) - [#​786](https://redirect.github.com/reach/reach-ui/pull/786) Fix animated dialog warning ([@​mbellagamba](https://redirect.github.com/mbellagamba)) - Other - [#​799](https://redirect.github.com/reach/reach-ui/pull/799) Add example check for CSS to respect a users anim prefs. ([@​Jared-Dev](https://redirect.github.com/Jared-Dev)) #### ✨ Enhancements - `combobox` - [#​757](https://redirect.github.com/reach/reach-ui/pull/757) If Combobox `openOnFocus` is true then also open when the input is clicked. ([@​ProggerPete](https://redirect.github.com/ProggerPete)) - `accordion`, `disclosure` - Remove -1 `tabIndex` from accordion and disclosure panels ([@​joshuajaco](https://redirect.github.com/joshuajaco)) ##### 🤜🤛 10 Committers - Abhishek Warokar ([@​apollonian](https://redirect.github.com/apollonian)) - Chance Strickland ([@​chaance](https://redirect.github.com/chaance)) - Florentin / 珞辰 ([@​ecklf](https://redirect.github.com/ecklf)) - Ian VanSchooten ([@​IanVS](https://redirect.github.com/IanVS)) - Jared Malcolm ([@​Jared-Dev](https://redirect.github.com/Jared-Dev)) - Joshua Jacobowitz ([@​joshuajaco](https://redirect.github.com/joshuajaco)) - Lucas Soler ([@​loque](https://redirect.github.com/loque)) - Mike Limberg ([@​mlimberg](https://redirect.github.com/mlimberg)) - Mirco Bellagamba ([@​mbellagamba](https://redirect.github.com/mbellagamba)) - [@​ProggerPete](https://redirect.github.com/ProggerPete) ### [`v0.15.2`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.15.2) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.15.0...v0.15.2) #### 🐛 Bugfixes - `menu-button` - [#​812](https://redirect.github.com/reach/reach-ui/pull/812) Prevent default for links to avoid double click events ([@​IanVS](https://redirect.github.com/IanVS)) - `listbox` - Cannot focus on `ListboxList` when it's styled to overlap `ListboxButton` ([@​loque](https://redirect.github.com/loque)) #### 📝 Documentation - `dialog` - [#​800](https://redirect.github.com/reach/reach-ui/issues/800) Update `react-focus-lock` and `react-remove-scroll` dependencies - [#​803](https://redirect.github.com/reach/reach-ui/pull/803) Fix typo ([@​apollonian](https://redirect.github.com/apollonian)) - [#​786](https://redirect.github.com/reach/reach-ui/pull/786) Fix animated dialog warning ([@​mbellagamba](https://redirect.github.com/mbellagamba)) - Other - [#​799](https://redirect.github.com/reach/reach-ui/pull/799) Add example check for CSS to respect a users animation preferences ([@​Jared-Dev](https://redirect.github.com/Jared-Dev)) #### ✨ Enhancements - `combobox` - [#​757](https://redirect.github.com/reach/reach-ui/pull/757) If `openOnFocus` is true then also open when the input is clicked ([@​ProggerPete](https://redirect.github.com/ProggerPete)) - `accordion`, `disclosure` - Remove -1 `tabIndex` from accordion and disclosure panels ([@​joshuajaco](https://redirect.github.com/joshuajaco)) ##### 🤜🤛 8 Committers - Abhishek Warokar ([@​apollonian](https://redirect.github.com/apollonian)) - Chance Strickland ([@​chaance](https://redirect.github.com/chaance)) - Ian VanSchooten ([@​IanVS](https://redirect.github.com/IanVS)) - Jared Malcolm ([@​Jared-Dev](https://redirect.github.com/Jared-Dev)) - Joshua Jacobowitz ([@​joshuajaco](https://redirect.github.com/joshuajaco)) - Lucas Soler ([@​loque](https://redirect.github.com/loque)) - Mirco Bellagamba ([@​mbellagamba](https://redirect.github.com/mbellagamba)) - [@​ProggerPete](https://redirect.github.com/ProggerPete) ### [`v0.15.0`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.15.0) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.14.0...v0.15.0) #### 🐛 Bugfixes - Combobox - Fix `persistSelection` issues when used with `openOnFocus` ([#​455](https://redirect.github.com/reach/reach-ui/issues/455)) - All packages - [#​769](https://redirect.github.com/reach/reach-ui/pull/769) Add \*.css files to the list of sideEffect(ful) files ([@​Andarist](https://redirect.github.com/Andarist)) - **BREAKING:** Removed `forwardRefWithAs` utility and created new types associated with components that us the `as` prop. This is a breaking change if you are using the component types directly, but this change was long overdue and should address some new issues that popped up in [#​753](https://redirect.github.com/reach/reach-ui/pull/753). Big thanks to [@​jjenzz](https://redirect.github.com/jjenzz) and the Radix UI project for making our lives easier here! ##### 🤜🤛 3 Committers - Chance Strickland ([@​chaance](https://redirect.github.com/chaance)) - Mateusz Burzyński ([@​Andarist](https://redirect.github.com/Andarist)) - Wajid Kagzi ([@​themoor88](https://redirect.github.com/themoor88)) ### [`v0.14.0`](https://redirect.github.com/reach/reach-ui/releases/tag/v0.14.0) [Compare Source](https://redirect.github.com/reach/reach-ui/compare/v0.13.2...v0.14.0) - `listbox` - Fix selection of options using iOS with VoiceOver. ([@​aappoalander](https://redirect.github.com/aappoalander)) - **Breaking change:** If you were using our previously suggested styling selector `[data-current]` for the selected listbox option, that selector has been removed in favor of `[data-current-selected]`. The reason is because we also added `[data-current-nav]` for the highlighted option when navigating the list, so this seemed more clear to distinguish between the two. We also removed the default styles for options that match `[aria-selected="true”]` because this is an implementation detail that will likely change in an upcoming patch release to address accessibility issues. #### 📝 Documentation - `tooltip` - [#​767](https://redirect.github.com/reach/reach-ui/pull/767) Fix typo in comments ([@​sanbornhilland](https://redirect.github.com/sanbornhilland)) #### ✨ Enhancements - All packages - [#​761](https://redirect.github.com/reach/reach-ui/pull/761) Add `sideEffects: false` to all packages to enable tree shaking ([@​hipstersmoothie](https://redirect.github.com/hipstersmoothie)) - `auto-id` - [#​752](https://redirect.github.com/reach/reach-ui/pull/752) Add missing type overload ([@​KubaJastrz](https://redirect.github.com/KubaJastrz)) ##### 🤜🤛 6 Committers - Aappo Ålander ([@​aappoalander](https://redirect.github.com/aappoalander)) - Andrew Lisowski ([@​hipstersmoothie](https://redirect.github.com/hipstersmoothie)) - Chance Strickland ([@​chaance](https://redirect.github.com/chaance)) - Jakub Jastrzębski ([@​KubaJastrz](https://redirect.github.com/KubaJastrz)) - Sanborn Hilland ([@​sanbornhilland](https://redirect.github.com/sanbornhilland)) - Zoë Peterson ([@​zpeterson](https://redirect.github.com/zpeterson))
tailwindlabs/tailwindcss-forms (@​tailwindcss/forms) ### [`v0.5.9`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#059---2024-09-05) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.8...v0.5.9) ##### Fixed - Fallback to static chevron color if theme is using variables ([#​167](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/167)) ### [`v0.5.8`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#058---2024-08-28) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.7...v0.5.8) ##### Fixed - Support installing with alpha versions of Tailwind CSS v4 ([#​163](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/163)) ### [`v0.5.7`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#057---2023-11-10) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.6...v0.5.7) ##### Fixed - Use normal `checkbox` and `radio` appearance in `forced-colors` mode ([#​152](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/152)) ### [`v0.5.6`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#056---2023-08-28) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.5...v0.5.6) ##### Fixed - Fix date time bottom spacing on MacOS Safari ([#​146](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/146)) ### [`v0.5.5`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#055---2023-08-22) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.4...v0.5.5) ##### Fixed - Fix text alignment on date and time inputs on iOS ([#​144](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/144)) ### [`v0.5.4`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#054---2023-07-13) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.3...v0.5.4) ##### Fixed - Remove chevron for selects with a non-default size ([#​137](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/137)) - Allow for without `type` ([#​141](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/141)) ### [`v0.5.3`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#053---2022-09-02) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.2...v0.5.3) ##### Fixed - Update TypeScript types ([#​126](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/126)) ### [`v0.5.2`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#052---2022-05-18) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.1...v0.5.2) ##### Added - Add TypeScript type declarations ([#​118](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/118)) ### [`v0.5.1`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#051---2022-05-03) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.5.0...v0.5.1) ##### Fixed - Remove duplicate `outline` property ([#​116](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/116)) - Fix autoprefixer warning about `color-adjust` ([#​115](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/115)) ### [`v0.5.0`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#050---2022-03-02) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.4.1...v0.5.0) ##### Changed - Generate both global styles and classes by default ([#​71](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/71)) ### [`v0.4.1`](https://redirect.github.com/tailwindlabs/tailwindcss-forms/blob/HEAD/CHANGELOG.md#041---2022-03-02) [Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss-forms/compare/v0.4.0...v0.4.1) ##### Added - Remove `dist` folder and related dependencies ([#​96](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/96)) ##### Fixed - Use `addComponents` for class strategy ([#​91](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/91)) - Fix extra height on Safari date/time inputs ([#​109](https://redirect.github.com/tailwindlabs/tailwindcss-forms/pull/109))
statelyai/xstate (@​xstate/inspect) ### [`v0.8.0`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.8.0) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.7.1...@xstate/inspect@0.8.0) ##### Minor Changes - [#​3793](https://redirect.github.com/statelyai/xstate/pull/3793) [`f943513ca`](https://redirect.github.com/statelyai/xstate/commit/f943513cae369cf5356d383fc53a18e1858022ce) Thanks [@​mdpratt](https://redirect.github.com/mdpratt)! - Add support for a custom `targetWindow` ### [`v0.7.1`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.7.1) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.7.0...@xstate/inspect@0.7.1) ##### Patch Changes - [#​3772](https://redirect.github.com/statelyai/xstate/pull/3772) [`cea609ce3`](https://redirect.github.com/statelyai/xstate/commit/cea609ce39a09f77568a95d8fcaf281020ebce7d) Thanks [@​jlarmstrongiv](https://redirect.github.com/jlarmstrongiv)! - Fixed an issue with a misleading dev-only warning being printed when inspecting machines because of the internal `createMachine` call. ### [`v0.7.0`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.7.0) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.5...@xstate/inspect@0.7.0) ##### Minor Changes - [#​3235](https://redirect.github.com/statelyai/xstate/pull/3235) [`f666f5823`](https://redirect.github.com/statelyai/xstate/commit/f666f5823835bd731034e7e2d64e5916b1f7dc0c) Thanks [@​mattpocock](https://redirect.github.com/mattpocock)! - `@xstate/inspect` will now target `https://stately.ai/viz` by default. You can target the old inspector by setting the config options like so: ```ts inspect({ url: `https://statecharts.io/inspect` }); ``` ### [`v0.6.5`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.6.5) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.4...@xstate/inspect@0.6.5) ##### Patch Changes - [#​3198](https://redirect.github.com/statelyai/xstate/pull/3198) [`09e2130df`](https://redirect.github.com/statelyai/xstate/commit/09e2130dff80815c10df38496a761fe8ae0d9f6e) Thanks [@​Andarist](https://redirect.github.com/Andarist)! - Fixed an issue that prevented some states from being sent correctly to the inspector when serializable values hold references to objects throwing on `toJSON` property access (like `obj.toJSON`). This property is accessed by the native algorithm before the value gets passed to the custom `serializer`. Because of a bug we couldn't correctly serialize such values even when a custom `serializer` was implemented that was meant to replace it in a custom way from within its parent's level. - [#​3199](https://redirect.github.com/statelyai/xstate/pull/3199) [`f3d63147d`](https://redirect.github.com/statelyai/xstate/commit/f3d63147d36791344d55fa9c945af32daeefa2fa) Thanks [@​Andarist](https://redirect.github.com/Andarist)! - Fixed an issue that caused sending the same event multiple times to the inspector for restarted services. - [#​3076](https://redirect.github.com/statelyai/xstate/pull/3076) [`34f3d9be7`](https://redirect.github.com/statelyai/xstate/commit/34f3d9be74d2bd9db51b2db06c5a65d980aec9c4) Thanks [@​SimeonC](https://redirect.github.com/SimeonC)! - Fixed an issue with "maximum call stack size exceeded" errors being thrown when registering a machine with a very deep object in its context despite using a serializer capable of replacing such an object. ### [`v0.6.4`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.6.4) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.3...@xstate/inspect@0.6.4) ##### Patch Changes - [#​3144](https://redirect.github.com/statelyai/xstate/pull/3144) [`e08030faf`](https://redirect.github.com/statelyai/xstate/commit/e08030faf00e2bcb192040b6ba04178ecf057509) Thanks [@​lecepin](https://redirect.github.com/lecepin)! - Added UMD build for this package that is available in the `dist` directory in the published package. - [#​3144](https://redirect.github.com/statelyai/xstate/pull/3144) [`e08030faf`](https://redirect.github.com/statelyai/xstate/commit/e08030faf00e2bcb192040b6ba04178ecf057509) Thanks [@​lecepin](https://redirect.github.com/lecepin)! - Added proper `peerDependency` on XState. It was incorrectly omitted from the `package.json` of this package. ### [`v0.6.3`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.6.3) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.2...@xstate/inspect@0.6.3) ##### Patch Changes - [#​3089](https://redirect.github.com/statelyai/xstate/pull/3089) [`862697e29`](https://redirect.github.com/statelyai/xstate/commit/862697e2990934d46050580d7e09c749d09d8426) Thanks [@​Andarist](https://redirect.github.com/Andarist)! - Fixed compatibility with Skypack by exporting some shared utilities from root entry of XState and consuming them directly in other packages (this avoids accessing those things using deep imports and thus it avoids creating those compatibility problems). ### [`v0.6.2`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.6.2) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.1...@xstate/inspect@0.6.2) ##### Patch Changes - [#​2957](https://redirect.github.com/statelyai/xstate/pull/2957) [`8550ddda7`](https://redirect.github.com/statelyai/xstate/commit/8550ddda73e2ad291e19173d7fa8d13e3336fbb9) Thanks [@​davidkpiano](https://redirect.github.com/davidkpiano)! - The repository links have been updated from `github.com/davidkpiano` to `github.com/statelyai`. ### [`v0.6.1`](https://redirect.github.com/statelyai/xstate/releases/tag/%40xstate/inspect%400.6.1) [Compare Source](https://redirect.github.com/statelyai/xstate/compare/@xstate/inspect@0.6.0...@xstate/inspect@0.6.1) ##### Patch Changes - [#​2907](https://redirect.github.com/statelyai/xstate/pull/2907) [`3a8eb6574`](https://redirect.github.com/statelyai/xstate/commit/3a8eb6574db51c3d02c900561be87a48fd9a973c) Thanks [@​rossng](https://redirect.github.com/rossng)! - Fix crash when sending circular state objects ([#​2373](https://redirect.github.com/statelyai/xstate/issues/2373)).
postcss/autoprefixer (autoprefixer) ### [`v10.4.20`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10420) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.19...10.4.20) - Fixed `fit-content` prefix for Firefox. ### [`v10.4.19`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10419) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.18...10.4.19) - Removed `end value has mixed support, consider using flex-end` warning since `end`/`start` now have good support. ### [`v10.4.18`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10418) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.17...10.4.18) - Fixed removing `-webkit-box-orient` on `-webkit-line-clamp` ([@​Goodwine](https://redirect.github.com/Goodwine)). ### [`v10.4.17`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10417) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.16...10.4.17) - Fixed `user-select: contain` prefixes. ### [`v10.4.16`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10416) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.15...10.4.16) - Improved performance (by Romain Menke). - Fixed docs (by Christian Oliff). ### [`v10.4.15`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10415) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.14...10.4.15) - Fixed `::backdrop` prefixes (by 一丝). - Fixed docs (by Christian Oliff). ### [`v10.4.14`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10414) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.13...10.4.14) - Improved startup time and reduced JS bundle size (by Kārlis Gaņģis). ### [`v10.4.13`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10413) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.12...10.4.13) - Fixed missed prefixes on vendor prefixes in name of CSS Custom Property. ### [`v10.4.12`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10412) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.11...10.4.12) - Fixed support of unit-less zero angle in backgrounds (by 一丝). ### [`v10.4.11`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10411) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.10...10.4.11) - Fixed `text-decoration` prefixes by moving to MDN data (by Romain Menke). ### [`v10.4.10`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#10410) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.9...10.4.10) - Fixed `unicode-bidi` prefixes by moving to MDN data. ### [`v10.4.9`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1049) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.8...10.4.9) - Fixed `css-unicode-bidi` issue from latest Can I Use. ### [`v10.4.8`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1048) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.7...10.4.8) - Do not print `color-adjust` warning if `print-color-adjust` also is in rule. ### [`v10.4.7`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1047) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.6...10.4.7) - Fixed `print-color-adjust` support in Firefox. ### [`v10.4.6`](https://redirect.github.com/postcss/autoprefixer/blob/HEAD/CHANGELOG.md#1046) [Compare Source](https://redirect.github.com/postcss/autoprefixer/compare/10.4.5...10.4.6) - Fixed `print-color-adjust` support.

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate using a curated preset maintained by Sanity. View repository job log here

vercel[bot] commented 9 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
react-spring-bottom-sheet ❌ Failed (Inspect) Nov 5, 2024 11:17pm
socket-security[bot] commented 5 months ago

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSourceCI
Critical CVE npm/shell-quote@1.7.2 ⚠︎

View full report↗︎

Next steps

What is a critical CVE?

Contains a Critical Common Vulnerability and Exposure (CVE).

Remove or replace dependencies that include known critical CVEs. Consumers can use dependency overrides or npm audit fix --force to remove vulnerable dependencies.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/foo@1.0.0 or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore npm/shell-quote@1.7.2
socket-security[bot] commented 6 hours ago

Report too large to display inline

View full report↗︎