mateuszmigas / painting-droid

AI-powered cross-platform painting app inspired by the legendary MS Paint.
https://www.paintingdroid.com
GNU General Public License v3.0
93 stars 2 forks source link

Bump the all-deps group with 7 updates #62

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the all-deps group with 7 updates:

Package From To
@tauri-apps/cli 2.0.0-beta.15 2.0.0-beta.17
zod 3.23.6 3.23.8
@biomejs/biome 1.7.2 1.7.3
@playwright/test 1.43.1 1.44.0
@types/node 20.12.8 20.12.11
@types/react 18.3.1 18.3.2
@uiw/react-color-sketch 2.1.1 2.3.0

Updates @tauri-apps/cli from 2.0.0-beta.15 to 2.0.0-beta.17

Release notes

Sourced from @​tauri-apps/cli's releases.

@​tauri-apps/cli v2.0.0-beta.17

[2.0.0-beta.17]

Dependencies

  • Upgraded to tauri-cli@2.0.0-beta.17

@​tauri-apps/cli v2.0.0-beta.16

[2.0.0-beta.16]

Bug Fixes

Dependencies

  • Upgraded to tauri-cli@2.0.0-beta.16
Commits


Updates zod from 3.23.6 to 3.23.8

Release notes

Sourced from zod's releases.

v3.23.8

Commits:

  • 0f4d403558ae0490c711e4c2bfcf6c200bd14e11 Add Bronze logos (#3470)
  • 19687315b5b24bbd1ff6c346bfc2975700221748 Tweak tiers (#3471)
  • eda7df314399929f7ed737423868a5a0780cd944 Change RefinementCtx to interface
  • ca42965df46b2f7e2747db29c40a26bcb32a51d5 v3.23.8

v3.23.7

Commits:

  • 29d2ea2a15f0b1ac4b89138041f786a3dafc490b Add copper
  • d969423266fccee56ef769da6744cc8bacb04550 Fix #3437: extendShape erases JSDoc property documentation (#3463)
  • 2239ff3ccc9af4d28bee27bd6fb2a5632844480b Add social crow
  • f985b5b922cb357dbf4b25bb43814d19f838e046 3.23.7
Commits


Updates @biomejs/biome from 1.7.2 to 1.7.3

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.7.3

CLI

Bug fixes

Linter

New features

Bug fixes

  • noBlankTarget no longer hangs when applying a code fix (#2675).

    Previously, the following code made Biome hangs when applying a code fix.

    <a href="https://example.com" rel="" target="_blank"></a>
    

    Contributed by @​Conaclos

  • noRedeclare no longer panics on conditional type (#2659).

    This is a regression introduced by #2394. This regression makes noRedeclare panics on every conditional types with infer bindings.

    Contributed by @​Conaclos

  • noUnusedLabels and noConfusingLabels now ignore svelte reactive statements (#2571).

    The rules now ignore reactive Svelte blocks in Svelte components.

    <script>
    $: { /* reactive block */ }
    </script>
    

    Contributed by @​Conaclos

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

1.7.3 (2024-05-06)

CLI

Bug fixes

Linter

New features

Bug fixes

  • noBlankTarget no longer hangs when applying a code fix (#2675).

    Previously, the following code made Biome hangs when applying a code fix.

    <a href="https://example.com" rel="" target="_blank"></a>
    

    Contributed by @​Conaclos

  • noRedeclare no longer panics on conditional type (#2659).

    This is a regression introduced by #2394. This regression makes noRedeclare panics on every conditional types with infer bindings.

    Contributed by @​Conaclos

  • noUnusedLabels and noConfusingLabels now ignore svelte reactive statements (#2571).

    The rules now ignore reactive Svelte blocks in Svelte components.

    <script>
    

... (truncated)

Commits
  • b9f90b7 release: v1.7.3 (#2722)
  • cb0182e feat(linter): implement NoUnmatchableAnbSelector (#2706)
  • f77ab54 feat(linter): implement useExplicitLengthCheck (#2631)
  • afa5004 feat(biome_css_analyzer): noUnknownSelectorPseudoElement (#2655)
  • 150dd0e feat(biome_css_analyzer): implement noDuplicateAtImportRules (#2658)
  • 773a735 fix(linter): fix typo in rule name. useConsistentBuiltinInstatiation to `us...
  • See full diff in compare view


Updates @playwright/test from 1.43.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 @types/node from 20.12.8 to 20.12.11

Commits


Updates @types/react from 18.3.1 to 18.3.2

Commits


Updates @uiw/react-color-sketch from 2.1.1 to 2.3.0

Release notes

Sourced from @​uiw/react-color-sketch's releases.

v2.3.0

Buy me a coffee npm bundle size

Documentation v2.3.0: https://raw.githack.com/uiwjs/react-color/123938c/index.html
Comparing Changes: https://github.com/uiwjs/react-color/compare/v2.2.0...v2.3.0

npm i @uiw/react-color@2.3.0
  • 🎨 style(Chrome): modify style. 8bb4c1b
  • 🌟 feat(Chrome): add showEditableInput/showEyeDropper/showColorPreview/showHue/showAlpha props. 199d733

v2.2.0

Buy me a coffee npm bundle size

Documentation v2.2.0: https://raw.githack.com/uiwjs/react-color/874522d/index.html
Comparing Changes: https://github.com/uiwjs/react-color/compare/v2.1.1...v2.2.0

npm i @uiw/react-color@2.2.0
  • 💄 chore(deps): update dependency husky to v9 (#138) 9e6f35c @​renovate-bot
  • 💄 chore: modify husky config. 632d4e9
  • 🆎 type(Convert): add HexColor type. 64cb068
  • 🌟 feat(Chremo): Add EyeDropper in Chrome component. #148 2ea8caa
  • 💢 ci: update workflows config. 0905d7b
Commits
  • 71617b3 released v2.3.0
  • 199d733 feat(Chrome): add showEditableInput/showEyeDropper/showColorPreview/showHue/s...
  • 8bb4c1b style(Chrome): modify style.
  • 38a9475 released v2.2.0 #148
  • 0905d7b ci: update workflows config.
  • 2ea8caa feat(Chremo): Add EyeDropper in Chrome component. #148
  • 64cb068 type(Convert): add HexColor type.
  • 632d4e9 chore: modify husky config.
  • 9e6f35c chore(deps): update dependency husky to v9 (#138)
  • See full diff in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 1 month ago

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

Name Status Preview Comments Updated (UTC)
painting-droid-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 13, 2024 7:15am