evadecker / genderswap.fm

A catalogue of gender-swapped song covers.
https://genderswap.fm
MIT License
30 stars 1 forks source link

chore(deps-dev): Bump the patch-minor group with 11 updates #292

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

Bumps the patch-minor group with 11 updates:

Package From To
@iconify-json/ri 1.2.0 1.2.1
@playwright/test 1.47.2 1.48.0
@sveltejs/adapter-vercel 5.4.4 5.4.5
@sveltejs/kit 2.6.2 2.7.0
@vitest/coverage-v8 2.1.2 2.1.3
sass 1.79.4 1.79.5
supabase 1.200.3 1.204.3
svelte-check 4.0.4 4.0.5
typescript 5.6.2 5.6.3
vite 5.4.8 5.4.9
vitest 2.1.2 2.1.3

Updates @iconify-json/ri from 1.2.0 to 1.2.1

Commits


Updates @playwright/test from 1.47.2 to 1.48.0

Release notes

Sourced from @​playwright/test's releases.

v1.48.0

WebSocket routing

New methods page.routeWebSocket() and browserContext.routeWebSocket() allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a "request" with a "response".

await page.routeWebSocket('/ws', ws => {
  ws.onMessage(message => {
    if (message === 'request')
      ws.send('response');
  });
});

See WebSocketRoute for more details.

UI updates

  • New "copy" buttons for annotations and test location in the HTML report.
  • Route method calls like route.fulfill() are not shown in the report and trace viewer anymore. You can see which network requests were routed in the network tab instead.
  • New "Copy as cURL" and "Copy as fetch" buttons for requests in the network tab.

Miscellaneous

Browser Versions

  • Chromium 130.0.6723.19
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 129
  • Microsoft Edge 129
Commits


Updates @sveltejs/adapter-vercel from 5.4.4 to 5.4.5

Release notes

Sourced from @​sveltejs/adapter-vercel's releases.

@​sveltejs/adapter-vercel@​5.4.5

Patch Changes

Changelog

Sourced from @​sveltejs/adapter-vercel's changelog.

5.4.5

Patch Changes

Commits


Updates @sveltejs/kit from 2.6.2 to 2.7.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.7.0

Minor Changes

  • feat: update service worker when new version is detected (#12448)

Patch Changes

  • fix: correctly handle relative paths when fetching assets on the server (#12113)

  • fix: decode non ASCII anchor hashes when scrolling into view (#12699)

  • fix: page response missing CSP and Link headers when return promise in load (#12418)

@​sveltejs/kit@​2.6.4

Patch Changes

  • fix: only preload links that have a different URL than the current page (#12773)

  • fix: revert change to replace version in generateBundle (#12779)

  • fix: catch stack trace fixing errors thrown in web containers (#12775)

  • fix: use absolute links in JSDoc comments (#12772)

@​sveltejs/kit@​2.6.3

Patch Changes

  • fix: ensure a changing version doesn't affect the hashes for chunks without any actual code changes (#12700)

  • fix: prevent crash when logging URL search params in a server load function (#12763)

  • chore: revert update dependency cookie to ^0.7.0 (#12767)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.7.0

Minor Changes

  • feat: update service worker when new version is detected (#12448)

Patch Changes

  • fix: correctly handle relative paths when fetching assets on the server (#12113)

  • fix: decode non ASCII anchor hashes when scrolling into view (#12699)

  • fix: page response missing CSP and Link headers when return promise in load (#12418)

2.6.4

Patch Changes

  • fix: only preload links that have a different URL than the current page (#12773)

  • fix: revert change to replace version in generateBundle (#12779)

  • fix: catch stack trace fixing errors thrown in web containers (#12775)

  • fix: use absolute links in JSDoc comments (#12772)

2.6.3

Patch Changes

  • fix: ensure a changing version doesn't affect the hashes for chunks without any actual code changes (#12700)

  • fix: prevent crash when logging URL search params in a server load function (#12763)

  • chore: revert update dependency cookie to ^0.7.0 (#12767)

Commits
  • f3b638e Version Packages (#12789)
  • df48fc6 fix: handle relative assets paths in server fetch correctly (#12113)
  • 5780deb fix: decode hash when clicking on same hash to correctly scroll on non ascii ...
  • 989949a docs: add report uri directive to CSP example (#12788)
  • 8aa95b4 feat: update service worker when new version is detected (#12448)
  • 6f9aefd fix: page response missing CSP and Link headers when return promise in load...
  • 4c1e3c0 chore: add code comment explaining empty catch block (#12780)
  • 16568c2 Version Packages (#12777)
  • 571f731 fix: only preload link if the URL differs from current page (#12773)
  • 5f1de9f chore: add test for #12763 (#12774)
  • Additional commits viewable in compare view


Updates @vitest/coverage-v8 from 2.1.2 to 2.1.3

Release notes

Sourced from @​vitest/coverage-v8's releases.

v2.1.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits


Updates sass from 1.79.4 to 1.79.5

Release notes

Sourced from sass's releases.

Dart Sass 1.79.5

To install Sass 1.79.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Changes to how selector.unify() and @extend combine selectors:

    • The relative order of pseudo-classes (like :hover) and pseudo-elements (like ::before) within each original selector is now preserved when they're combined.

    • Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector.

  • Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec.

  • Fix a slight inaccuracy case when converting to srgb-linear and display-p3.

  • Potentially breaking bug fix: math.unit() now wraps multiple denominator units in parentheses. For example, px/(em*em) instead of px/em*em.

Command-Line Interface

  • Use @parcel/watcher to watch the filesystem when running from JavaScript and not using --poll. This should mitigate more frequent failures users have been seeing since version 4.0.0 of Chokidar, our previous watching tool, was released.

JS API

  • Fix SassColor.interpolate() to allow an undefined options parameter, as the types indicate.

Embedded Sass

  • Properly pass missing color channel values to and from custom functions.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.79.5

  • Changes to how selector.unify() and @extend combine selectors:

    • The relative order of pseudo-classes (like :hover) and pseudo-elements (like ::before) within each original selector is now preserved when they're combined.

    • Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector.

  • Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec.

  • Fix a slight inaccuracy case when converting to srgb-linear and display-p3.

  • Potentially breaking bug fix: math.unit() now wraps multiple denominator units in parentheses. For example, px/(em*em) instead of px/em*em.

Command-Line Interface

  • Use @parcel/watcher to watch the filesystem when running from JavaScript and not using --poll. This should mitigate more frequent failures users have been seeing since version 4.0.0 of Chokidar, our previous watching tool, was released.

JS API

  • Fix SassColor.interpolate() to allow an undefined options parameter, as the types indicate.

Embedded Sass

  • Properly pass missing color channel values to and from custom functions.
Commits
  • 7290399 Partially replace chokidar with @​parcel/watcher (#2379)
  • 85b467b Update LMS matrices (#2374)
  • 2c5f1e9 Use correct notation for multiple denominator units (#2375)
  • d58e219 Add sass-parser support for for the @supports rule (#2378)
  • 5535d1f Fix srgb to linear (#2372)
  • 5acae8a Fix JS API color.interpolate(color2) without options (#2369)
  • 4890989 Add support for missing color channels to the protofier (#2366)
  • 67fecff unifyComound() and unifyComplex() no longer move pseudo-classes across pseudo...
  • See full diff in compare view


Updates supabase from 1.200.3 to 1.204.3

Release notes

Sourced from supabase's releases.

v1.204.3

Changelog

Bug fixes

  • bd0955ca5d322f83bd27e0b03fc55e3fa6b69759: fix(migration): handle null value when fetching migration name (#2746) (@​sweatybridge)

v1.204.2

Changelog

Bug fixes

  • dd8ee93bdd0b57c8b1a23653d60a7fbd779aa6cb: fix(storage): update default storage version to 1.11.13 (#2743) (@​sweatybridge)

Others

  • 5c98d66fce46a28d3a2880e5fae90abfac9e0197: chore(deps): bump google.golang.org/grpc from 1.66.2 to 1.67.1 (#2739) (@​dependabot[bot])
  • d5cb75f2e52315dbe07d50469a737527463fdfed: chore(deps): bump github.com/docker/cli from 27.2.1+incompatible to 27.3.1+incompatible (#2740) (@​dependabot[bot])
  • 6fb25bc0bf100272d136f90a0902d6fd14f4a3d1: chore(deps): bump github.com/docker/docker from 27.2.1+incompatible to 27.3.1+incompatible (#2741) (@​dependabot[bot])

v1.204.1

Changelog

Bug fixes

  • fcd8ea08e905dcf7508713c4d324376efd464b3a: fix: update path separator for windows glob (#2735) (@​sweatybridge)

v1.204.0

Changelog

Features

  • ce26abdb52b26a6c88cda6b47cad25801c44c421: feat: check project status at link time (#2730) (@​avallete)

v1.203.1

Changelog

Bug fixes

  • 52dfb4dbc907cf25231be3210cd70ee0526077b2: fix: bump edge-runtime to 1.58.12 (#2733) (@​nyannyacha)

Others

  • e642265f0d1a27a776538c520cc80de91736b25d: chore(deps): bump bin-links from 4.0.4 to 5.0.0 (#2712) (@​dependabot[bot])

v1.203.0

Changelog

Features

  • 887b5bb921ee4df787ac4c6045d00360112b3470: feat: track seeded files in migration table (@​sweatybridge)

Others

  • b906fc56014db30b71a817bc3fb58c448d8c1e34: chore: reduce code duplication (@​sweatybridge)
  • dffb8d6ec6cf129c5c261e05d1ccbbdc751e90ec: chore: fix unit tests (@​sweatybridge)
  • b3efd4872ff98d677ed084f85d8d815ef376cb97: chore: prompt before pushing seed files (@​sweatybridge)
  • c805fc64e1ebc88d375541c224400cebc5d60619: chore: create seed table separately (@​sweatybridge)

v1.202.5

Changelog

Bug fixes

  • 9365527e770dcf21d88d6f2a37c5dd69038f1d68: fix: inspect storage container before seeding buckets (@​sweatybridge)

Others

  • 73b591c6ecd428301735e089d3aa7af71bc7ce5f: chore: use healthy enum from docker api (@​sweatybridge)
  • b04503926c2dbe2815d2b25b0d800aa1a775c547: chore: remove syslog config (@​sweatybridge)

v1.202.4

... (truncated)

Commits
  • bd0955c fix(migration): handle null value when fetching migration name (#2746)
  • dd8ee93 fix(storage): update default storage version to 1.11.13 (#2743)
  • 6fb25bc chore(deps): bump github.com/docker/docker from 27.2.1+incompatible to 27.3.1...
  • d5cb75f chore(deps): bump github.com/docker/cli from 27.2.1+incompatible to 27.3.1+in...
  • 5c98d66 chore(deps): bump google.golang.org/grpc from 1.66.2 to 1.67.1 (#2739)
  • fcd8ea0 fix: update path separator for windows glob (#2735)
  • ce26abd feat: check project status at link time (#2730)
  • 52dfb4d fix: bump edge-runtime to 1.58.12 (#2733)
  • e642265 chore(deps): bump bin-links from 4.0.4 to 5.0.0 (#2712)
  • c805fc6 chore: create seed table separately
  • Additional commits viewable in compare view


Updates svelte-check from 4.0.4 to 4.0.5

Release notes

Sourced from svelte-check's releases.

svelte-check-4.0.5

  • fix: include named exports in svelte 5 type (#2528)
Commits
  • 156bd7d fix: correctly position quick fixes in instance and module (#2531)
  • a167a93 feat: provide Svelte 5 component migration command
  • b12afd1 fix: include named exports in svelte 5 type (#2528)
  • See full diff in compare view


Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff in compare view


Updates vite from 5.4.8 to 5.4.9

Changelog

Sourced from vite's changelog.

5.4.9 (2024-10-14)

Commits


Updates vitest from 2.1.2 to 2.1.3

Release notes

Sourced from vitest's releases.

v2.1.3

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 4c03a0d chore: release v2.1.3
  • 70baaaa fix(vitest): use fast-glob instead of tinyglobby in Vitest (#6688)
  • 19d64e2 fix(vitest): always inline setup files (#6689)
  • 47dde76 fix(vitest): show rollup error details as test error (#6686)
  • 7155cee refactor(coverage): move re-usable parts to base provider (#6665)
  • 7a0de0a perf: reuse full name in reported tasks, update generator types (#6666)
  • 8bef5d2 fix(browser): not.toBeInTheDocument works with locators API (#6634)
  • 9ece395 fix(vitest): fix \<empty line> logs when interleaving console.log/error (#...
  • 000459a fix(vitest): deprecate old task types and node-reliant types (#6632)
  • 946d8bb fix(vitest): don't hang with maxConcurrency 0 (#6627)
  • Additional commits viewable 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 3 weeks ago

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

Name Status Preview Updated (UTC)
genderswap-fm ✅ Ready (Inspect) Visit Preview Oct 14, 2024 2:20pm