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

fix(deps): Update non-major #281

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(deps): Update non-major #281

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 12, 2023

Mend Renovate

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.7 age adoption passing confidence devDependencies minor
@​types/classnames ^2.2.11 -> ^2.3.1 age adoption passing confidence devDependencies patch
@types/react (source) ^17.0.0 -> ^17.0.80 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.19 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.29.1 age adoption passing confidence devDependencies minor
eslint-plugin-jsx-a11y ^6.4.1 -> ^6.8.0 age adoption passing confidence devDependencies minor
eslint-plugin-react ^7.21.5 -> ^7.34.1 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

Compare Source

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.

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

reach/reach-ui (@​reach/portal)

v0.18.0

Compare Source

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-<pkg>.mjs instead of reach-<pkg>.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

Compare Source

💔 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)

🐛 Bugfixes

  • auto-id
    • Use the user-provided ID beyond the first render for deterministic behavior (b2f3bc0)
  • tabs
    • Stop managing focus on mouse clicks to fix :focus-visible
  • listbox
    • Update submit button querySelector specificity to fix incorrect button clicks (#​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).
🤜🤛 8 Committers

v0.16.2

Compare Source

✨ Enhancements
🤜🤛 5 Committers

v0.16.0

Compare Source

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

v0.15.3

Compare Source

🐛 Bugfixes
  • utils
    • Typescript error for as={Link} on MenuLink (via utils/polymorphic) (@​IanVS)
  • menu-button
    • #​812 Prevent default for links to avoid double click events (@​IanVS)
    • Popover does not consistently close when clicking between Menu Buttons (@​ecklf)
  • listbox
    • Cannot focus on ListboxList when its styled to overlap ListboxButton (@​loque)
📝 Documentation
✨ Enhancements
  • combobox
  • accordion, disclosure
    • Remove -1 tabIndex from accordion and disclosure panels (@​joshuajaco)
🤜🤛 10 Committers

v0.15.2

Compare Source

🐛 Bugfixes
  • menu-button
  • listbox
    • Cannot focus on ListboxList when it's styled to overlap ListboxButton (@​loque)
📝 Documentation
✨ Enhancements
  • combobox
  • accordion, disclosure
    • Remove -1 tabIndex from accordion and disclosure panels (@​joshuajaco)
🤜🤛 8 Committers

v0.15.0

Compare Source

🐛 Bugfixes
  • Combobox
    • Fix persistSelection issues when used with openOnFocus (#​455)
  • All packages
    • #​769 Add *.css files to the list of sideEffect(ful) files (@​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. Big thanks to @​jjenzz and the Radix UI project for making our lives easier here!
🤜🤛 3 Committers

v0.14.0

Compare Source

  • listbox
    • Fix selection of options using iOS with VoiceOver. (@​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
✨ Enhancements
🤜🤛 6 Committers
tailwindlabs/tailwindcss-forms (@​tailwindcss/forms)

v0.5.7

Compare Source

Fixed
  • Use normal checkbox and radio appearance in forced-colors mode (#​152)

v0.5.6

Compare Source

Fixed
  • Fix date time bottom spacing on MacOS Safari (#​146)

v0.5.5

Compare Source

Fixed
  • Fix text alignment on date and time inputs on iOS (#​144)

v0.5.4

Compare Source

Fixed
  • Remove chevron for selects with a non-default size (#​137)
  • Allow for without type (#​141)

v0.5.3

Compare Source

Fixed
  • Update TypeScript types (#​126)

v0.5.2

Compare Source

Added
  • Add TypeScript type declarations (#​118)

v0.5.1

Compare Source

Fixed
  • Remove duplicate outline property (#​116)
  • Fix autoprefixer warning about color-adjust (#​115)

v0.5.0

Compare Source

Changed
  • Generate both global styles and classes by default (#​71)

v0.4.1

Compare Source

Added
  • Remove dist folder and related dependencies (#​96)
Fixed
  • Use addComponents for class strategy (#​91)
  • Fix extra height on Safari date/time inputs (#​109)
statelyai/xstate (@​xstate/inspect)

v0.8.0

Compare Source

Minor Changes

v0.7.1

Compare Source

Patch Changes
  • #​3772 cea609ce3 Thanks @​jlarmstrongiv! - Fixed an issue with a misleading dev-only warning being printed when inspecting machines because of the internal createMachine call.

v0.7.0

Compare Source

Minor Changes
  • #​3235 f666f5823 Thanks @​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:

    inspect({
      url: `https://statecharts.io/inspect`
    });

v0.6.5

Compare Source

Patch Changes
  • #​3198 09e2130df Thanks @​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 f3d63147d Thanks @​Andarist! - Fixed an issue that caused sending the same event multiple times to the inspector for restarted services.

  • #​3076 34f3d9be7 Thanks @​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

Compare Source

Patch Changes
  • #​3144 e08030faf Thanks @​lecepin! - Added UMD build for this package that is available in the dist directory in the published package.

  • #​3144 e08030faf Thanks @​lecepin! - Added proper peerDependency on XState. It was incorrectly omitted from the package.json of this package.

v0.6.3

Compare Source

Patch Changes
  • #​3089 862697e29 Thanks @​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

Compare Source

Patch Changes

v0.6.1

Compare Source

Patch Changes
postcss/autoprefixer (autoprefixer)

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.

v10.4.16

Compare Source

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).

v10.4.13

Compare Source

  • Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.

v10.4.12

Compare Source

  • Fixed support of unit-less zero angle in backgrounds (by 一丝).

v10.4.11

Compare Source

  • Fixed text-decoration prefixes by moving to MDN data (by Romain Menke).

v10.4.10

Compare Source

  • Fixed unicode-bidi prefixes by moving to MDN data.

v10.4.9

Compare Source

  • Fixed css-unicode-bidi issue from latest Can I Use.

v10.4.8

Compare Source

  • Do not print color-adjust warning if print-color-adjust also is in rule.

v10.4.7

Compare Source

  • Fixed print-color-adjust support in Firefox.

v10.4.6

Compare Source

  • Fixed print-color-adjust support.

v10.4.5

Compare Source

v10.4.4

Compare Source

  • Fixed package.funding to have same value between all PostCSS packages.

v10.4.3

Compare Source

  • Fixed package.funding (by Álvaro Mondéjar).
JedWatson/classnames (classnames)

v2.5.1

Compare Source

  • Remove workspaces field from package (#​350)

v2.5.0

Compare Source

  • Restore ability to pass a TypeScript interface (#​341)
  • Add exports field to package (#​342)

v2.4.0

Compare Source

v2.3.3

Compare Source

v2.3.2

Compare Source


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.


  • If you want to rebase/retry this PR, check this box

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants