evadecker / genderswap.fm

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

chore(deps): Bump the patch-minor group with 7 updates #278

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the patch-minor group with 7 updates:

Package From To
@supabase/supabase-js 2.45.0 2.45.1
@playwright/test 1.45.3 1.46.0
@sveltejs/adapter-auto 3.2.2 3.2.3
@sveltejs/adapter-vercel 5.4.1 5.4.2
@sveltejs/kit 2.5.20 2.5.21
unplugin-icons 0.19.1 0.19.2
vite 5.3.5 5.4.0

Updates @supabase/supabase-js from 2.45.0 to 2.45.1

Release notes

Sourced from @​supabase/supabase-js's releases.

v2.45.1

2.45.1 (2024-08-06)

Bug Fixes

  • Allow passing a custom lock function to supabase client (5f37e69)
Commits
  • 377f3b3 Merge pull request #1256 from christophby/master
  • 5f37e69 fix: Allow passing a custom lock function to supabase client
  • See full diff in compare view


Updates @playwright/test from 1.45.3 to 1.46.0

Release notes

Sourced from @​playwright/test's releases.

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';

export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

# Only run test files with uncommitted changes
npx playwright test --only-changed

Only run test files changed relative to the "main" branch

npx playwright test --only-changed=main

Component Testing: New router fixture

This release introduces an experimental router fixture to intercept and handle network requests in component testing. There are two ways to use the router fixture:

  • Call router.route(url, handler) that behaves similarly to page.route().
  • Call router.use(handlers) and pass MSW library request handlers to it.

Here is an example of reusing your existing MSW handlers in the test.

</tr></table> 

... (truncated)

Commits
  • 99a3631 chore: mark v1.46 (#32013)
  • 929fef3 cherry-pick(#32012): chore(lint): bump Microsoft.CodeAnalysis for linting cod...
  • cf31aa8 cherry-pick(#32008): chore(client-certificates): rewrite error for unsupporte...
  • ed9b4d9 cherry-pick(#32007): fix(client-certificates): report error to the browser if...
  • fca1fa0 cherry-pick(#31973): chore: run client-certificate tests in service mode
  • ff11273 cherry-pick(#32010): docs: release notes for 1.46 update
  • 4953ac3 cherry-pick(#31975): chore: remove bright counter from sidebar tab se… (#31976)
  • 4c66f8a cherry-pick(#31970): fix(trace): do not place expect into unfinished … (#31974)
  • deba37b cherry-pick(#31960): feat(ui mode): linkify attachment names and content (#31...
  • 2cfe733 cherry-pick(#31961): fix(trace-viewer): make 'hide route actions' work for .NET
  • Additional commits viewable in compare view


Updates @sveltejs/adapter-auto from 3.2.2 to 3.2.3

Release notes

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

@​sveltejs/adapter-auto@​3.2.3

Patch Changes

Changelog

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

3.2.3

Patch Changes

Commits


Updates @sveltejs/adapter-vercel from 5.4.1 to 5.4.2

Release notes

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

@​sveltejs/adapter-vercel@​5.4.2

Patch Changes

Changelog

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

5.4.2

Patch Changes

Commits


Updates @sveltejs/kit from 2.5.20 to 2.5.21

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.5.21

Patch Changes

  • chore: package provenance (#12567)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.5.21

Patch Changes

  • chore: package provenance (#12567)
Commits


Updates unplugin-icons from 0.19.1 to 0.19.2

Release notes

Sourced from unplugin-icons's releases.

v0.19.2

   🚀 Features

    View changes on GitHub
Commits


Updates vite from 5.3.5 to 5.4.0

Release notes

Sourced from vite's releases.

create-vite@5.4.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.0 (2024-08-07)

5.4.0-beta.1 (2024-08-01)

5.4.0-beta.0 (2024-07-30)

Commits


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 Updated (UTC)
genderswap-fm ✅ Ready (Inspect) Visit Preview Aug 12, 2024 3:04pm