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

chore(deps): update all non-major dependencies #610

Merged
merged 9 commits into from Mar 3, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 12, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@changesets/cli (source) ^2.25.0 -> ^2.26.0 age adoption passing confidence devDependencies minor
@commitlint/cli (source) ^17.3.0 -> ^17.4.1 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) ^17.3.0 -> ^17.4.0 age adoption passing confidence devDependencies minor
@floating-ui/core (source) 1.0.0 -> 1.1.0 age adoption passing confidence dependencies minor
@floating-ui/dom (source) 1.0.0 -> 1.1.0 age adoption passing confidence dependencies minor
@remix-run/dev (source) ^1.8.0 -> ^1.10.0 age adoption passing confidence devDependencies minor
@remix-run/eslint-config ^1.8.0 -> ^1.10.0 age adoption passing confidence devDependencies minor
@remix-run/node ^1.8.0 -> ^1.10.0 age adoption passing confidence dependencies minor
@remix-run/react ^1.8.0 -> ^1.10.0 age adoption passing confidence dependencies minor
@remix-run/serve ^1.8.0 -> ^1.10.0 age adoption passing confidence dependencies minor
@typescript-eslint/eslint-plugin ^5.45.0 -> ^5.48.1 age adoption passing confidence devDependencies minor
@typescript-eslint/parser ^5.45.0 -> ^5.48.1 age adoption passing confidence devDependencies minor
@vitest/coverage-c8 ^0.25.1 -> ^0.27.0 age adoption passing confidence devDependencies minor
@vitest/ui ^0.25.1 -> ^0.27.0 age adoption passing confidence devDependencies minor
axe-core (source) ^4.5.0 -> ^4.6.2 age adoption passing confidence devDependencies minor
chromatic (source) ^6.11.2 -> ^6.14.0 age adoption passing confidence devDependencies minor
cypress ^12.2.0 -> ^12.3.0 age adoption passing confidence devDependencies minor
eslint (source) ^8.29.0 -> ^8.31.0 age adoption passing confidence devDependencies minor
eslint-config-prettier ^8.5.0 -> ^8.6.0 age adoption passing confidence devDependencies minor
eslint-plugin-jsx-a11y ^6.6.0 -> ^6.7.0 age adoption passing confidence devDependencies minor
framer-motion 7.6.1 -> 7.10.3 age adoption passing confidence dependencies minor
isomorphic-dompurify ^0.24.0 -> ^0.26.0 age adoption passing confidence dependencies minor
node >=v18.12.0 -> >=v18.13.0 age adoption passing confidence engines minor
nx (source) ^15.2.1 -> ^15.4.5 age adoption passing confidence devDependencies minor
pnpm (source) 7.18.0 -> 7.24.2 age adoption passing confidence packageManager minor
postcss-import ^15.0.0 -> ^15.1.0 age adoption passing confidence devDependencies minor
vitest ^0.25.1 -> ^0.27.0 age adoption passing confidence devDependencies minor
yaml (source) ^2.1.0 -> ^2.2.1 age adoption passing confidence devDependencies minor

Release Notes

changesets/changesets

v2.26.0

Compare Source

Minor Changes
  • #​1033 521205d Thanks @​Andarist! - A new config-level changedFilePatterns option has been added. You can configure it with an array of glob patterns like here:

    // .changeset/config.json
    {
      "changedFilePatterns": ["src/**"]
    }

    Files that do not match the configured pattern won't contribute to the "changed" status of the package to which they belong. This both affects changesets add and changeset status.

Patch Changes

v2.25.2

Compare Source

Patch Changes

v2.25.1

Compare Source

Patch Changes
  • #​997 4d4d67b Thanks @​JakeGinnivan! - Add error message when running changesets in a repo with workspaces configured but no packages yet

  • #​985 8d0115e Thanks @​mino01x! - Fixed an issue with private packages with versions being included in the CLI prompt despite the privatePackages.version: false setting.

conventional-changelog/commitlint (@​commitlint/cli)

v17.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.4.0

Compare Source

Bug Fixes
conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.4.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

floating-ui/floating-ui

v1.1.0

Compare Source

New Features

  • feat(flip): fallbackAxisSideDirection option (#​2082)

    This option adds the ability to compute placements on the opposite axis of the preferred placement without needing to use an explicit fallbackPlacements list, meaning you no longer need to manage a custom map of fallbackPlacements and instead use this option to leverage automatic computing of the array.

    This option determines whether to allow fallback to the opposite axis if no placements along the preferred placement axis fit, and if so, which side direction along that axis to choose. If necessary, it will fallback to the other direction.

    • 'none' signals that no fallback to the opposite axis should take place. (default)
    • 'start' represents 'top' or 'left'.
    • 'end' represents 'bottom' or 'right'.

    Note:
    In RTL writing direction, the x-axis directions are reversed.

    For instance, by default, if the initial placement is set to 'right', then the placements to try (in order) are:

    ['right', 'left']

    On a narrow viewport, it's possible or even likely that neither of these will fit.

    By specifying a string other than 'none', you allow placements along the opposite axis of the initial placement to be tried. The direction determines which side of placement is tried first:

    flip({
      fallbackAxisSideDirection: 'start',
    });

    The above results in: ['right', 'left', 'top', 'bottom'].

    flip({
      fallbackAxisSideDirection: 'end',
    });

    The above results in: ['right', 'left', 'bottom', 'top'].

    As an example, if you'd like a tooltip that has a placement of 'right' to be placed on top on mobile (assuming it doesn't fit), then you'd use 'start'. For an interactive popover, you likely want to use 'end' so it's placed on the bottom, closer to the user's fingers.

Combining with shift

If shift() is in use in the middleware array, you may desire to disable crossAxis overflow checking, which will allow shift() to perform its work without falling back to the opposite axis (therefore preserving the original axis as best as possible):

const middleware = [
  flip({
    fallbackAxisSideDirection: 'start',
    crossAxis: false,
  }),
  shift(),
];

This will depend on the desired positioning you want to achieve, e.g. if the placement has an explicit alignment specified or not.

v1.0.5

Compare Source

Bug Fixes

  • fix(hide): return options on middleware object (#​2058)

    React would previously not update stateful options, either via re-renders or Fast Refresh

  • fix(arrow): only add internal shifting under stricter conditions (#​2044)

    This prevents the arrow from getting stuck pointing at the center of the reference when padding is specified in most cases, counteracting shift() when it should take precedence, while maintaining the desired behavior for #​1496.

  • fix(autoPlacement): preserve passed allowedPlacements when desired (#​2073)

    Previously, allowed placements got filtered out if they didn't match the alignment specified. By default this was null, so if you passed aligned placements in the list, they got unexpectedly filtered out. Now, they are respected:

    autoPlacement({
      // works as expected
      allowedPlacements: ['top-start', 'bottom-start']
    });
    
    autoPlacement({
      alignment: null,
      // only 'bottom' is actually allowed
      allowedPlacements: ['top-start', 'bottom-start', 'bottom']
    });

v1.0.4

Compare Source

Bug Fixes
  • fix: correctly handle parent scale transforms when detecting clipping (#​2011)

v1.0.3

Compare Source

Bug Fixes

  • fix(detectOverflow): pass correct fallback rect (#​2000)

    If platform.convertOffsetParentRelativeRectToViewportRelativeRect was not available, then the correct rect was not passed. So a custom platform without that method actually did need it (even though it's optional).

v1.0.2

Compare Source

Bug Fixes
  • fix: if the reference or floating elements are falsy/null when computePosition() is called there's an unhelpful error about getComputedStyle; there is now a proper error message in dev mode. (#​1954)

  • fix: the middleware array can now contain false, null, or undefined values. This enables you to pass conditional middleware inline without needing a verbose spread ...(cond ? [m()] : []) or separate statements like .push() — at least for TypeScript, as you could already filter it manually externally. (#​1954)

    middleware: [
      shouldFlip && flip(),  
      arrowElement && arrow({ element: arrowElement }),
    ]

v1.0.1

Compare Source

Bug Fixes

  • fix(types): allow Partial SideObject for detectOverflow padding (#​1846)
remix-run/remix (@​remix-run/dev)

v1.10.0

Compare Source

Patch Changes
  • Fixed several issues with TypeScript to JavaScript conversion when running create-remix (#​4891)
  • Resolve asset entry full path to support monorepo import of styles (#​4855)
  • Updated dependencies:
    • @remix-run/server-runtime@1.10.0

v1.9.0

Compare Source

Minor Changes
  • Allow defining multiple routes for the same route module file (#​3970)
  • Added support and conventions for optional route segments (#​4706)
Patch Changes
  • The Remix compiler now supports new Typescript 4.9 syntax (like the satisfies keyword) (#​4754)
  • Optimize parentRouteId lookup in defineConventionalRoutes. (#​4800)
  • Fixed a bug in .ts -> .js conversion on Windows by using a relative unix-style path (#​4718)
  • Updated dependencies:
    • @remix-run/server-runtime@1.9.0

v1.8.2

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/server-runtime@1.8.2
    • @remix-run/serve@1.8.2

v1.8.1

Compare Source

Patch Changes
  • Added a missing type definition for the Remix config future option to the @remix-run/dev/server-build virtual module (#​4771)
  • Updated dependencies:
    • @remix-run/serve@1.8.1
    • @remix-run/server-runtime@1.8.1
remix-run/remix (@​remix-run/eslint-config)

v1.10.0

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.10.0.

v1.9.0

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.9.0.

v1.8.2

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.8.2.

v1.8.1

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.8.1.

remix-run/remix (@​remix-run/node)

v1.10.0

Compare Source

Patch Changes
  • Export V2_HtmlMetaDescriptor and V2_MetaFunction types from runtime packages (#​4943)
  • Updated dependencies:
    • @remix-run/server-runtime@1.10.0

v1.9.0

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/server-runtime@1.9.0

v1.8.2

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/server-runtime@1.8.2

v1.8.1

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/server-runtime@1.8.1
remix-run/remix (@​remix-run/react)

v1.10.0

Compare Source

Minor Changes

v1.9.0

Compare Source

Patch Changes
  • Update @remix-run/react to use Router from react-router-dom@6.5.0 (#​4731)
  • Allow pass-through props to be passed to the script rendered by ScrollRestoration (#​2879)
  • Fixed a problem with <LiveReload> and Firefox infinitely reloading the page. (#​4725)

v1.8.2

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.8.2.

v1.8.1

Compare Source

No significant changes to this package were made in this release. See the releases page on GitHub for an overview of all changes in v1.8.1.

remix-run/remix (@​remix-run/serve)

v1.10.0

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/express@1.10.0

v1.9.0

Compare Source

Patch Changes
  • Fix TypedResponse so that Typescript correctly shows errors for incompatible types in loader and action functions. (#​4734)
  • Updated dependencies:
    • @remix-run/express@1.9.0

v1.8.2

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/express@1.8.2

v1.8.1

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/express@1.8.1
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.48.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.48.0

Compare Source

Features
  • eslint-plugin: specify which method is unbound and added test case (#​6281) (cf3ffdd)

5.47.1 (2022-12-26)

Bug Fixes
  • ast-spec: correct some incorrect ast types (#​6257) (0f3f645)
  • eslint-plugin: [member-ordering] correctly invert optionalityOrder (#​6256) (ccd45d4)

v5.47.1

Compare Source

Bug Fixes
  • ast-spec: correct some incorrect ast types (#​6257) (0f3f645)
  • eslint-plugin: [member-ordering] correctly invert optionalityOrder (#​6256) (ccd45d4)

v5.47.0

Compare Source

Features
  • eslint-plugin: [no-floating-promises] add suggestion fixer to add an 'await' (#​5943) (9e35ef9)

5.46.1 (2022-12-12)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.46.1

Compare Source

Note: Version bump only for package @​typescript-eslint/eslint-plugin

v5.46.0

Compare Source

Bug Fixes
  • eslint-plugin: [ban-types] update message to suggest object instead of Record<string, unknown> (#​6079) (d91a5fc)
Features
  • eslint-plugin: [prefer-nullish-coalescing] logic and test for strict null checks (#​6174) (8a91cbd)

5.45.1 (2022-12-05)

Bug Fixes
  • eslint-plugin: [keyword-spacing] unexpected space before/after in import type (#​6095) (98caa92)
  • eslint-plugin: [no-shadow] add call and method signatures to ignoreFunctionTypeParameterNameValueShadow (#​6129) (9d58b6b)
  • eslint-plugin: [prefer-optional-chain] collect MetaProperty type (#​6083) (d7114d3)
  • eslint-plugin: [sort-type-constituents, sort-type-union-intersection-members] handle some required parentheses cases in the fixer (#​6118) (5d49d5d)

v5.45.1

Compare Source

Bug Fixes
  • eslint-plugin: [keyword-spacing] unexpected space before/after in import type (#​6095) (98caa92)
  • eslint-plugin: [no-shadow] add call and method signatures to ignoreFunctionTypeParameterNameValueShadow (#​6129) (9d58b6b)
  • eslint-plugin: [prefer-optional-chain] collect MetaProperty type (#​6083) (d7114d3)
  • eslint-plugin: [sort-type-constituents, sort-type-union-intersection-members] handle some required parentheses cases in the fixer (#​6118) (5d49d5d)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.48.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.48.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.47.1 (2022-12-26)

Note: Version bump only for package @​typescript-eslint/parser

v5.47.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.47.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.46.1 (2022-12-12)

Note: Version bump only for package @​typescript-eslint/parser

v5.46.1

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.46.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.45.1 (2022-12-05)

Bug Fixes
  • parser: remove the jsx option requirement for automatic jsx pragma resolution (#​6134) (e777f5e)

v5.45.1

Compare Source

Bug Fixes
  • parser: remove the jsx option requirement for automatic jsx pragma resolution (#​6134) (e777f5e)
vitest-dev/vitest

v0.27.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes

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. View repository job log here.

@renovate renovate bot requested a review from a team December 12, 2022 01:19
@changeset-bot
Copy link

changeset-bot bot commented Dec 12, 2022

🦋 Changeset detected

Latest commit: ccdf020

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 31 packages
Name Type
@launchpad-ui/progress-bubbles Patch
@launchpad-ui/split-button Patch
@launchpad-ui/navigation Patch
@launchpad-ui/pagination Patch
@launchpad-ui/clipboard Patch
@launchpad-ui/dropdown Patch
@launchpad-ui/markdown Patch
@launchpad-ui/progress Patch
@launchpad-ui/snackbar Patch
@launchpad-ui/tab-list Patch
@launchpad-ui/counter Patch
@launchpad-ui/popover Patch
@launchpad-ui/tooltip Patch
@launchpad-ui/avatar Patch
@launchpad-ui/banner Patch
@launchpad-ui/button Patch
@launchpad-ui/drawer Patch
@launchpad-ui/filter Patch
@launchpad-ui/slider Patch
@launchpad-ui/toggle Patch
@launchpad-ui/tokens Patch
@launchpad-ui/alert Patch
@launchpad-ui/icons Patch
@launchpad-ui/modal Patch
@launchpad-ui/table Patch
@launchpad-ui/toast Patch
@launchpad-ui/chip Patch
@launchpad-ui/core Patch
@launchpad-ui/menu Patch
@launchpad-ui/select Patch
@launchpad-ui/form Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-actions
Copy link
Contributor

github-actions bot commented Dec 12, 2022

Size Change: 0 B

Total Size: 135 kB

ℹ️ View Unchanged
Filename Size
packages/alert/dist/index.es.js 1.37 kB
packages/alert/dist/index.js 1.45 kB
packages/avatar/dist/index.es.js 1.13 kB
packages/avatar/dist/index.js 1.21 kB
packages/banner/dist/index.es.js 642 B
packages/banner/dist/index.js 727 B
packages/button/dist/index.es.js 1.57 kB
packages/button/dist/index.js 1.66 kB
packages/chip/dist/index.es.js 619 B
packages/chip/dist/index.js 706 B
packages/clipboard/dist/index.es.js 1.3 kB
packages/clipboard/dist/index.js 1.4 kB
packages/core/dist/index.es.js 266 B
packages/core/dist/index.js 840 B
packages/counter/dist/index.es.js 336 B
packages/counter/dist/index.js 420 B
packages/drawer/dist/index.es.js 1.51 kB
packages/drawer/dist/index.js 1.76 kB
packages/dropdown/dist/index.es.js 1.07 kB
packages/dropdown/dist/index.js 1.15 kB
packages/filter/dist/index.es.js 2.07 kB
packages/filter/dist/index.js 2.15 kB
packages/focus-trap/dist/index.es.js 272 B
packages/focus-trap/dist/index.js 352 B
packages/form/dist/index.es.js 3.05 kB
packages/form/dist/index.js 3.16 kB
packages/icons/dist/index.es.js 15.9 kB
packages/icons/dist/index.js 16.1 kB
packages/markdown/dist/index.es.js 921 B
packages/markdown/dist/index.js 1.08 kB
packages/menu/dist/index.es.js 3.54 kB
packages/menu/dist/index.js 3.65 kB
packages/modal/dist/index.es.js 2.81 kB
packages/modal/dist/index.js 3.11 kB
packages/navigation/dist/index.es.js 2.74 kB
packages/navigation/dist/index.js 2.83 kB
packages/overlay/dist/index.es.js 986 B
packages/overlay/dist/index.js 1.05 kB
packages/pagination/dist/index.es.js 1.15 kB
packages/pagination/dist/index.js 1.22 kB
packages/popover/dist/index.es.js 3.05 kB
packages/popover/dist/index.js 3.24 kB
packages/portal/dist/index.es.js 393 B
packages/portal/dist/index.js 465 B
packages/progress-bubbles/dist/index.es.js 1.67 kB
packages/progress-bubbles/dist/index.js 1.75 kB
packages/progress/dist/index.es.js 991 B
packages/progress/dist/index.js 1.08 kB
packages/select/dist/index.es.js 5.22 kB
packages/select/dist/index.js 5.38 kB
packages/slider/dist/index.es.js 563 B
packages/slider/dist/index.js 644 B
packages/snackbar/dist/index.es.js 1.16 kB
packages/snackbar/dist/index.js 1.4 kB
packages/split-button/dist/index.es.js 865 B
packages/split-button/dist/index.js 948 B
packages/tab-list/dist/index.es.js 765 B
packages/tab-list/dist/index.js 852 B
packages/table/dist/index.es.js 992 B
packages/table/dist/index.js 1.09 kB
packages/toast/dist/index.es.js 907 B
packages/toast/dist/index.js 1.16 kB
packages/toggle/dist/index.es.js 838 B
packages/toggle/dist/index.js 937 B
packages/tokens/dist/index.es.js 1.89 kB
packages/tokens/dist/index.js 6.8 kB
packages/tooltip/dist/index.es.js 502 B
packages/tooltip/dist/index.js 592 B

compressed-size-action

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 5bb2f84 to 1f7224f Compare December 14, 2022 18:56
Copy link
Contributor

@Niznikr Niznikr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This just needs a changeset added to pass CI

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 84ea842 to f5df8b5 Compare December 17, 2022 00:52
@renovate renovate bot changed the title chore(deps): update all non-major dependencies Update all non-major dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from d9fa711 to b013b99 Compare December 22, 2022 02:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 0581bcf to 0141c5a Compare January 8, 2023 10:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 88799cb to f2546f6 Compare January 9, 2023 19:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f2546f6 to 0911fb5 Compare January 9, 2023 23:15
@renovate
Copy link
Contributor Author

renovate bot commented Jan 10, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@chasedarkly chasedarkly merged commit c76ec2a into main Mar 3, 2023
@chasedarkly chasedarkly deleted the renovate/all-minor-patch branch March 3, 2023 17:39
@github-actions github-actions bot mentioned this pull request Mar 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants