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

Bump the all group with 11 updates #49

Merged
merged 1 commit into from
Nov 25, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the all group with 11 updates:

Package From To
@playwright/test 1.48.2 1.49.0
@sveltejs/kit 2.8.1 2.8.3
@sveltejs/vite-plugin-svelte 4.0.1 4.0.2
@testing-library/svelte 5.2.4 5.2.6
@typescript-eslint/eslint-plugin 8.14.0 8.15.0
@typescript-eslint/parser 8.14.0 8.15.0
husky 9.1.6 9.1.7
prettier-plugin-svelte 3.2.8 3.3.2
svelte 5.2.2 5.2.7
svelte-check 4.0.9 4.1.0
typescript 5.6.3 5.7.2

Updates @playwright/test from 1.48.2 to 1.49.0

Release notes

Sourced from @​playwright/test's releases.

v1.49.0

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary

What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See [issue #33566](microsoft/playwright#33566) for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

... (truncated)

Commits
  • a70a96a chore: mark v1.49.0 (#33649)
  • 53f51a8 cherry-pick(#33638): chore: clear highlight when performing action
  • 2a00ca8 cherry-pick(#33635): chore: add cm placeholder text
  • 0e64340 cherry-pick(#33632): chore: highlight edited locator while recording
  • cb0f456 cherry-pick(#33629): fix(rebase): do not apply multiple rebaselines to the sa...
  • 698823a cherry-pick(#33627): fix(codegen): document.documentElement is null on early ...
  • c0fa804 cherry-pick(#33619): fix(aria): normalize whitespace in toMatchAccessible{Nam...
  • 7a32228 cherry-pick(#33614): docs: add ariaSnapshot.timeout for language ports (#33615)
  • 0e31ace cherry-pick(#33575): fix(canvas snapshots): position mismatch in headless mode
  • b2a39ff cherry-pick(#33604): docs: update docs about headless shell
  • Additional commits viewable in compare view

Updates @sveltejs/kit from 2.8.1 to 2.8.3

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.8.3

Patch Changes

  • fix: ensure error messages are escaped (#13050)

  • fix: escape values included in dev 404 page (#13039)

@​sveltejs/kit@​2.8.2

Patch Changes

  • fix: prevent duplicate fetch request when using Request with load function's fetch (#13023)

  • fix: do not override default cookie decoder to allow users to override the cookie library version (#13037)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.8.3

Patch Changes

  • fix: ensure error messages are escaped (#13050)

  • fix: escape values included in dev 404 page (#13039)

2.8.2

Patch Changes

  • fix: prevent duplicate fetch request when using Request with load function's fetch (#13023)

  • fix: do not override default cookie decoder to allow users to override the cookie library version (#13037)

Commits

Updates @sveltejs/vite-plugin-svelte from 4.0.1 to 4.0.2

Release notes

Sourced from @​sveltejs/vite-plugin-svelte's releases.

@​sveltejs/vite-plugin-svelte@​4.0.2

Patch Changes

  • Allow script tags to span multiple lines (5309d7b)
Changelog

Sourced from @​sveltejs/vite-plugin-svelte's changelog.

4.0.2

Patch Changes

  • Allow script tags to span multiple lines (5309d7b)
Commits

Updates @testing-library/svelte from 5.2.4 to 5.2.6

Release notes

Sourced from @​testing-library/svelte's releases.

v5.2.6

5.2.6 (2024-11-19)

Bug Fixes

  • types: do not erase component type constraint (#410) (90ba912)

v5.2.5

5.2.5 (2024-11-18)

Bug Fixes

  • types: adjust legacy types for eslint-plugin-svelte (#409) (acbddfd)
Commits
  • 90ba912 fix(types): do not erase component type constraint (#410)
  • acbddfd fix(types): adjust legacy types for eslint-plugin-svelte (#409)
  • 4b94019 ci: use production release of Svelte 5 by default (#405)
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.14.0 to 8.15.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.15.0

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: added related-getter-setter-pairs rule (#10192)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • rule-tester: run method - avoid to infer type parameter from tests param (#10324)
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • utils: add new optional language field to FlatConfig.Config type (#10326)

🩹 Fixes

  • add missing peer dependencies (#9744)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: report deprecations used in default export (#10330)
  • utils: add defaultOptions to meta in rule (#10339)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: added related-getter-setter-pairs rule (#10192)

🩹 Fixes

  • utils: add defaultOptions to meta in rule (#10339)
  • eslint-plugin: report deprecations used in default export (#10330)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 2444351 chore(release): publish 8.15.0
  • 6c27d08 chore: bump eslint dependencies (#10354)
  • f5e23e2 fix(utils): add defaultOptions to meta in rule (#10339)
  • 12ce800 docs(eslint-plugin): [no-confusing-void-expression] add a default value for `...
  • ab83198 fix(eslint-plugin): report deprecations used in default export (#10330)
  • 66234d0 fix(eslint-plugin): [explicit-module-boundary-types] and [explicit-function-r...
  • 013c5cc fix(eslint-plugin): [await-thenable, return-await] don't flag awaiting uncons...
  • a7746fb feat(eslint-plugin): [prefer-nullish-coalescing] fix detection of `ignoreCond...
  • 57d343b docs: [no-deprecated] awkward wording about TypeScript visualizing deprecated...
  • 9ebdff4 feat(eslint-plugin): new rule no-unsafe-type-assertion (#10051)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.14.0 to 8.15.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.15.0

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: added related-getter-setter-pairs rule (#10192)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • rule-tester: run method - avoid to infer type parameter from tests param (#10324)
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • utils: add new optional language field to FlatConfig.Config type (#10326)

🩹 Fixes

  • add missing peer dependencies (#9744)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: report deprecations used in default export (#10330)
  • utils: add defaultOptions to meta in rule (#10339)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.15.0 (2024-11-18)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates husky from 9.1.6 to 9.1.7

Release notes

Sourced from husky's releases.

v9.1.7

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

Commits

Updates prettier-plugin-svelte from 3.2.8 to 3.3.2

Changelog

Sourced from prettier-plugin-svelte's changelog.

3.3.2

  • (fix) Svelte 5: handle type annotations on Svelte control flow blocks
  • (fix) preserve style/script tags at the end of the file when using svelteSortOrder: "none"

3.3.1

  • (feat) Svelte 5: support upcoming bind:value={get, set}

3.3.0

  • (feat) Svelte 5: support upcoming <svelte:boundary>
  • (feat) Svelte 5: support upcoming <svelte:html>
  • (feat) Svelte 5: support upcoming #each without as
Commits
  • 76c04eb fix: preserve style/script tags at the end of the file when using `svelte...
  • d81ffcb fix: handle type annotations on Svelte control flow blocks
  • ab6e713 feat: support bind:value={get, set}
  • 4e88090 chore: refactor printJS
  • cb3ab67 feat: support #each without as
  • 29d9f94 feat: support upcoming \<svelte:boundary> / \<svelte:html> (#474)
  • See full diff in compare view

Updates svelte from 5.2.2 to 5.2.7

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: always use set for private identifiers (#14378)

[email protected]

Patch Changes

  • fix: remove template expression inlining (#14374)

[email protected]

Patch Changes

  • fix: correctly handle srcObject attribute on video elements (#14369)

  • add contentvisibilityautostatechange event to element definitions (#14373)

  • fix: tighten up export default validation (#14368)

  • fix: include method definitions in class private fields (#14365)

[email protected]

Patch Changes

  • fix: ensure internal cloning can work circular values (#14347)

  • fix: correctly update dynamic member expressions (#14359)

  • fix: ensure is_pure takes into account $effect.tracking() (#14333)

  • fix: coerce value to number when hydrating range/number input with changed value (#14349)

[email protected]

Patch Changes

  • fix: ensure dynamic call expressions correctly generate output (#14345)
Changelog

Sourced from svelte's changelog.

5.2.7

Patch Changes

  • fix: always use set for private identifiers (#14378)

5.2.6

Patch Changes

  • fix: remove template expression inlining (#14374)

5.2.5

Patch Changes

  • fix: correctly handle srcObject attribute on video elements (#14369)

  • add contentvisibilityautostatechange event to element definitions (#14373)

  • fix: tighten up export default validation (#14368)

  • fix: include method definitions in class private fields (#14365)

5.2.4

Patch Changes

  • fix: ensure internal cloning can work circular values (#14347)

  • fix: correctly update dynamic member expressions (#14359)

  • fix: ensure is_pure takes into account $effect.tracking() (#14333)

  • fix: coerce value to number when hydrating range/number input with changed value (#14349)

5.2.3

Patch Changes

  • fix: ensure dynamic call expressions correctly generate output (#14345)
Commits

Updates svelte-check from 4.0.9 to 4.1.0

Release notes

Sourced from svelte-check's releases.

svelte-check-4.1.0

  • fix: don't move appended content from previous node while hoisting interface (#2596)
  • fix: ensure hoisted interfaces are moved after hoisted imports (#2597)
  • fix: preserve bind:... mapping on elements for better source maps
  • feat: prepare for some upcoming features of Svelte 5
Commits
  • cda5c86 fix: preserve bind:... mapping on elements for better source maps
  • be44125 feat: support bind:value={get, set}
  • 695c660 chore: bump prettier-plugin-svelte
  • 9a5a6af feat: hoist snippets to module context if possible (#2601)
  • 050ecc1 chore: consolidate template walking logic (#2600)
  • cd1758b feat: support \<svelte:html> (#2599)
  • 078f9a0 feat: support \<svelte:bounday> (#2598)
  • a1b4a64 fix: ensure hoisted interfaces are moved after hoisted imports (#2597)
  • c21de66 fix: don't move appended content from previous node while hoisting interface ...
  • b6cac97 fix: use original file path casing for shim files (#2591)
  • See full diff in compare view

Updates typescript from 5.6.3 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • 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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.48.2` | `1.49.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.8.1` | `2.8.3` |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `4.0.1` | `4.0.2` |
| [@testing-library/svelte](https://github.com/testing-library/svelte-testing-library) | `5.2.4` | `5.2.6` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.14.0` | `8.15.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.14.0` | `8.15.0` |
| [husky](https://github.com/typicode/husky) | `9.1.6` | `9.1.7` |
| [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte) | `3.2.8` | `3.3.2` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.2.2` | `5.2.7` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.0.9` | `4.1.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |


Updates `@playwright/test` from 1.48.2 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.48.2...v1.49.0)

Updates `@sveltejs/kit` from 2.8.1 to 2.8.3
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@sveltejs/vite-plugin-svelte` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/@sveltejs/[email protected]/packages/vite-plugin-svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/[email protected]/packages/vite-plugin-svelte)

Updates `@testing-library/svelte` from 5.2.4 to 5.2.6
- [Release notes](https://github.com/testing-library/svelte-testing-library/releases)
- [Changelog](https://github.com/testing-library/svelte-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/svelte-testing-library@v5.2.4...v5.2.6)

Updates `@typescript-eslint/eslint-plugin` from 8.14.0 to 8.15.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.15.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.14.0 to 8.15.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.15.0/packages/parser)

Updates `husky` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.6...v9.1.7)

Updates `prettier-plugin-svelte` from 3.2.8 to 3.3.2
- [Changelog](https://github.com/sveltejs/prettier-plugin-svelte/blob/v3.3.2/CHANGELOG.md)
- [Commits](sveltejs/prettier-plugin-svelte@v3.2.8...v3.3.2)

Updates `svelte` from 5.2.2 to 5.2.7
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

Updates `svelte-check` from 4.0.9 to 4.1.0
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](sveltejs/language-tools@svelte-check-4.0.9...svelte-check-4.1.0)

Updates `typescript` from 5.6.3 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@sveltejs/kit"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@sveltejs/vite-plugin-svelte"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@testing-library/svelte"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prettier-plugin-svelte
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: svelte
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: svelte-check
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 25, 2024
Copy link

netlify bot commented Nov 25, 2024

Deploy Preview for rootloops ready!

Name Link
🔨 Latest commit ca7f58a
🔍 Latest deploy log https://app.netlify.com/sites/rootloops/deploys/67446fb1645b970008a8d12e
😎 Deploy Preview https://deploy-preview-49--rootloops.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@hamvocke hamvocke merged commit 3e22098 into main Nov 25, 2024
5 of 6 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-5820ddc2fe branch November 25, 2024 16:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant