solidtime icon indicating copy to clipboard operation
solidtime copied to clipboard

Bump the minor-updates group across 1 directory with 17 updates

Open dependabot[bot] opened this issue 1 year ago • 0 comments

Bumps the minor-updates group with 17 updates in the / directory:

Package From To
@floating-ui/core 1.6.0 1.6.2
@rushstack/eslint-patch 1.8.0 1.10.3
radix-vue 1.5.3 1.8.1
tailwind-merge 2.2.2 2.3.0
@inertiajs/vue3 1.0.15 1.0.16
@playwright/test 1.42.1 1.44.0
@tailwindcss/typography 0.5.11 0.5.13
@types/node 20.11.30 20.12.12
axios 1.6.8 1.7.2
eslint-plugin-unused-imports 3.1.0 3.2.0
laravel-vite-plugin 1.0.2 1.0.4
openapi-zod-client 1.16.3 1.18.1
postcss-nesting 12.1.0 12.1.4
tailwindcss 3.4.1 3.4.3
typescript 5.4.3 5.4.5
vite 5.2.6 5.2.11
vue 3.4.21 3.4.27

Updates @floating-ui/core from 1.6.0 to 1.6.2

Release notes

Sourced from @​floating-ui/core's releases.

@​floating-ui/core@​1.6.2

Patch Changes

  • fix(size): correctly constrain floating element to avoid overflowing outside viewport with shift({crossAxis: true})

@​floating-ui/core@​1.6.1

Patch Changes

  • fix: avoid spreading rects to support DOMRect types
Changelog

Sourced from @​floating-ui/core's changelog.

1.6.2

Patch Changes

  • fix(size): correctly constrain floating element to avoid overflowing outside viewport with shift({crossAxis: true})

1.6.1

Patch Changes

  • fix: avoid spreading rects to support DOMRect types
Commits

Updates @rushstack/eslint-patch from 1.8.0 to 1.10.3

Changelog

Sourced from @​rushstack/eslint-patch's changelog.

1.10.3

Fri, 17 May 2024 00:10:40 GMT

Patches

  • [eslint-patch] Allow use of ESLint v9

1.10.2

Wed, 10 Apr 2024 21:59:39 GMT

Patches

  • Bump maximum supported ESLint version for the bulk-suppressions tool to 8.57.0.

1.10.1

Fri, 29 Mar 2024 05:46:41 GMT

Patches

  • Fix an issue where the eslint-bulk prune command would crash if a bulk suppressions file exists that speicifies no suppressions.
  • Exit with success under normal conditions.

1.10.0

Thu, 28 Mar 2024 18:11:12 GMT

Minor changes

  • Delete the .eslint-bulk-suppressions.json file during pruning if all suppressions have been eliminated.

Patches

  • Fix an issue with running eslint-bulk prune in a project with suppressions that refer to deleted files.

1.9.0

Wed, 27 Mar 2024 19:47:21 GMT

Minor changes

  • Fix an issue where eslint-bulk prune does not work if there are no files to lint in the project root.
Commits

Updates radix-vue from 1.5.3 to 1.8.1

Release notes

Sourced from radix-vue's releases.

v1.8.1

   🐞 Bug Fixes

    View changes on GitHub

v1.8.0

   🚀 Features

Components


   🐞 Bug Fixes

    View changes on GitHub

v1.7.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v1.7.3

   🚀 Features

... (truncated)

Commits
  • 7caf98c chore: release v1.8.1
  • 0d1109e chore: bump radix-vue deps (#941)
  • d0e1819 fix: ssr issue with missing CustomEvent (#940)
  • 8038c33 ci: add pkg.pr.new workflow (#933)
  • 40afb1c docs: fix spacing (#938)
  • e87e3e9 refactor(Calendar): fix props management in navigation buttons and grid compo...
  • 026d7c8 fix(NumberField): add missing export for NumberFieldRootEmits (#937)
  • 90231bc docs(DatePicker): fix spacing (#935)
  • ce1e992 docs(i18n): update examples with explicit direction (#928)
  • a344018 chore: release v1.8.0
  • Additional commits viewable in compare view

Updates tailwind-merge from 2.2.2 to 2.3.0

Release notes

Sourced from tailwind-merge's releases.

v2.3.0

New Features

Documentation

Full Changelog: https://github.com/dcastil/tailwind-merge/compare/v2.2.2...v2.3.0

Thanks to @​brandonmcconnell, @​manavm1990, @​langy and @​jamesreaco for sponsoring tailwind-merge! ❤️

Commits
  • 69baa12 v2.3.0
  • 428f681 add v2.3.0 changelog
  • 103b949 Merge pull request #403 from dcastil/add-support-for-tailwindcss-v3.4.2
  • 1a0ffe3 add support for mix-blend-plus-darker utility
  • aae31bb Merge pull request #402 from LarsArtmann/patch-1
  • 57a5afb All all falsely bigint's in ClassNameValue
  • 7aa5790 Added support for bigint in ClassNameValue type
  • 361cf8c Merge pull request #398 from dcastil/renovate/all-minor-patch
  • 54c510a chore(deps): update all non-major dependencies
  • e96959a Add Laravel and PHP packages to docs
  • Additional commits viewable in compare view

Updates @inertiajs/vue3 from 1.0.15 to 1.0.16

Release notes

Sourced from @​inertiajs/vue3's releases.

v1.0.16

  • Fix Svelte 4 slot rendering issues (#1763)
  • Fix accessibility warning in Svelte Link component (#1858)
  • Use Omit instead of Exclude in router types (#1857)
Changelog

Sourced from @​inertiajs/vue3's changelog.

v1.0.16

  • Fix Svelte 4 slot rendering issues (#1763)
  • Fix accessibility warning in Svelte Link component (#1858)
  • Use Omit instead of Exclude in router types (#1857)
Commits

Updates @playwright/test from 1.42.1 to 1.44.0

Release notes

Sourced from @​playwright/test's releases.

v1.44.0

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
    
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
    
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');
    

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData
    

... (truncated)

Commits

Updates @tailwindcss/typography from 0.5.11 to 0.5.13

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.13

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

v0.5.12

Added

  • Use logical properties for better RTL support (#323)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.13] - 2024-04-26

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)

[0.5.12] - 2024-03-27

Added

  • Use logical properties for better RTL support (#323)
Commits

Updates @types/node from 20.11.30 to 20.12.12

Commits

Updates axios from 1.6.8 to 1.7.2

Release notes

Sourced from axios's releases.

Release v1.7.2

Release notes:

Bug Fixes

Contributors to this release

Release v1.7.1

Release notes:

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

Release v1.7.0

Release notes:

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

Release v1.7.0-beta.2

Release notes:

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

Release v1.7.0-beta.1

Release notes:

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.2 (2024-05-21)

Bug Fixes

Contributors to this release

1.7.1 (2024-05-20)

Bug Fixes

  • fetch: fixed ReferenceError issue when TextEncoder is not available in the environment; (#6410) (733f15f)

Contributors to this release

1.7.0 (2024-05-19)

Features

Bug Fixes

  • core/axios: handle un-writable error stack (#6362) (81e0455)

Contributors to this release

1.7.0-beta.2 (2024-05-19)

Bug Fixes

  • fetch: capitalize HTTP method names; (#6395) (ad3174a)
  • fetch: fix & optimize progress capturing for cases when the request data has a nullish value or zero data length (#6400) (95a3e8e)
  • fetch: fix headers getting from a stream response; (#6401) (870e0a7)

Contributors to this release

... (truncated)

Commits
  • 0e4f9fa chore(release): v1.7.2 (#6414)
  • 4f79aef fix(fetch): enhance fetch API detection; (#6413)
  • 67d1373 chore(release): v1.7.1 (#6411)
  • 733f15f fix(fetch): fixed ReferenceError issue when TextEncoder is not available in t...
  • 3041c61 [Release] v1.7.0 (#6408)
  • 18b13cb chore(docs): add fetch adapter docs; (#6407)
  • e62099b fix(fetch): fixed a possible memory leak in the AbortController for the strea...
  • b49aa8e chore(release): v1.7.0-beta.2 (#6403)
  • d57f03a chore(ci): bump create-pull-request version to fix a bug; (#6405)
  • 097b0d1 chore(ci): add tag resolution for npm releases based on package version; (#6404)
  • Additional commits viewable in compare view

Updates eslint-plugin-unused-imports from 3.1.0 to 3.2.0

Commits

Updates laravel-vite-plugin from 1.0.2 to 1.0.4

Release notes

Sourced from laravel-vite-plugin's releases.

v1.0.3

Changelog

Sourced from laravel-vite-plugin's changelog.

Release Notes

Unreleased

v1.0.3 - 2024-05-16

Commits

Updates openapi-zod-client from 1.16.3 to 1.18.1

Release notes

Sourced from openapi-zod-client's releases.

[email protected]

Patch Changes

  • #288 3799ae3 Thanks @​mjperrone! - Fix escaping of forward slash / in pattern regex so the output code will be /\//. This change also breaks escaping of unnecessarily escaped forward slash \/ in pattern regex, such that the output code will be /\\//.

[email protected]

Minor Changes

[email protected]

Minor Changes

  • #283 3ec4915 Thanks @​dgadelha! - Add schemaRefiner option to allow refining the OpenAPI schema before its converted to a Zod schema

[email protected]

Patch Changes

Commits
  • 6828abd Version Packages
  • 3799ae3 add changeset
  • 79c58ec add test showing unnecessarily escaped forward slash rendering to a regex str...
  • 0d1b443 add back replacing / with /
  • f30c31c correct text expectation for validation.test.ts
  • 6ee8b2f correct test expectation to look for a backslash
  • c99e56e Version Packages
  • ed50076 feat: add changeset
  • 323a34e feat: add jsdoc tests
  • 1d398b4 feat: Add JSDoc comments to generated types with --with-docs CLI option
  • Additional commits viewable in compare view

Updates postcss-nesting from 12.1.0 to 12.1.4

Changelog

Sourced from postcss-nesting's changelog.

12.1.4

May 13, 2024

12.1.3

May 11, 2024

12.1.2

April 21, 2024

  • Edition 2024-02:
    • Do not rewrite selectors for declarations in conditional rules to a form with :is()

This will work:

::before, ::after {
	color: blue;
@media screen { color: cyan; }

}

This still wont work:

::before, ::after {
	color: blue;
&amp;:hover { color: cyan; }

}

12.1.1

March 31, 2024

Commits

Updates tailwindcss from 3.4.1 to 3.4.3

Release notes

Sourced from tailwindcss's releases.

v3.4.3

Fixed

  • Revert changes to glob handling (#13384)

v3.4.2

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Changelog

Sourced from tailwindcss's changelog.

[3.4.3] - 2024-03-27

Fixed

  • Revert changes to glob handling (#13384)

[3.4.2] - 2024-03-27

Fixed

  • Ensure max specificity of 0,0,1 for button and input Preflight rules (#12735)
  • Improve glob handling for folders with (, ), [ or ] in the file path (#12715)
  • Split :has rules when using experimental.optimizeUniversalDefaults (#12736)
  • Sort arbitrary properties alphabetically across multiple class lists (#12911)
  • Add mix-blend-plus-darker utility (#12923)
  • Ensure dashes are allowed in variant modifiers (#13303)
  • Fix crash showing completions in Intellisense when using a custom separator (#13306)
  • Transpile import.meta.url in config files (#13322)
  • Reset letter spacing for form elements (#13150)
  • Fix missing xx-large and remove double x-large absolute size (#13324)
  • Don't error when encountering nested CSS unless trying to @apply a class that uses nesting (#13325)
  • Ensure that arbitrary properties respect important configuration (#13353)
  • Change dark mode selector so @apply works correctly with pseudo elements (#13379)
Commits

Updates typescript from 5.4.3 to 5.4.5

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

dependabot[bot] avatar May 21 '24 17:05 dependabot[bot]