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 across 1 directory with 29 updates #428

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 29 updates in the / directory:

Package From To
@biomejs/biome 1.9.3 1.9.4
svelte 4.2.19 5.1.14
typescript 5.6.2 5.6.3
cspell 8.14.4 8.16.0
gh-pages 6.1.1 6.2.0
listr2 8.2.4 8.2.5
sirv 2.0.4 3.0.0
@rollup/plugin-typescript 12.1.0 12.1.1
@types/lodash 4.17.9 4.17.13
@types/node 22.7.4 22.9.0
@vitest/coverage-v8 2.1.1 2.1.4
rollup 4.24.0 4.25.0
tslib 2.7.0 2.8.1
vite 5.4.8 5.4.11
vitest 2.1.1 2.1.4
serve 14.2.3 14.2.4
marked 14.1.2 15.0.0
nock 13.5.5 13.5.6
@sveltejs/adapter-auto 3.2.5 3.3.1
@sveltejs/kit 2.6.1 2.8.0
@sveltejs/package 2.3.5 2.3.7
@sveltejs/vite-plugin-svelte 3.1.2 4.0.0
@types/prismjs 1.26.4 1.26.5
svelte-check 4.0.4 4.0.6
svelte2tsx 0.7.21 0.7.23
@sveltejs/adapter-static 3.0.5 3.0.6
carbon-components-svelte 0.85.2 0.85.4
carbon-icons-svelte 12.11.1 12.13.0
marked-gfm-heading-id 4.1.0 4.1.1

Updates @biomejs/biome from 1.9.3 to 1.9.4

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.4

Analyzer

Bug fixes

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix #4121. Respect line width when printing multiline strings. Contributed by @​ah-yu

Linter

New features

Bug Fixes

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.4 (2024-10-17)

Analyzer

Bug fixes

  • Implement GraphQL suppression action. Contributed by @​vohoanglong0107

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

  • The syntax rule noTypeOnlyImportAttributes now ignores .cts files (#4361).

    Since TypeScript 5.3, type-only imports can be associated to an import attribute in CommonJS-enabled files. See the TypeScript docs.

    The following code is no longer reported as a syntax error:

    import type { TypeFromRequire } from "pkg" with {
        "resolution-mode": "require"
    };

    Note that this is only allowed in files ending with the cts extension.

    Contributed by @​Conaclos

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Editors

Formatter

Bug fixes

... (truncated)

Commits

Updates svelte from 4.2.19 to 5.1.14

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: migration script messing with attributes (#14260)

  • fix: do not treat reassigned synthetic binds as state in runes mode (#14236)

  • fix: account for mutations in script module in ownership check (#14253)

  • fix: consider img with loading attribute not static (#14237)

[email protected]

Patch Changes

  • fix: add migration task when there's a variable named that would conflict with a rune (#14216)

  • fix: consider valueOf in the reactive methods of SvelteDate (#14227)

  • fix: handle sibling combinators within :has (#14213)

  • fix: consider variables with synthetic store sub as state (#14195)

  • fix: read index as a source in legacy keyed each block (#14208)

  • fix: account for shadowing children slot during migration (#14224)

  • fix: ensure explicit nesting selector is always applied (#14193)

  • fix: add lang="ts" attribute during migration if needed (#14222)

[email protected]

Patch Changes

  • fix: ignore as type expressions on property definitions (#14181)

  • fix: restore active reaction if then block throws (#14191)

  • chore: adds legacy mode flag reducing bundle size in runes mode only apps (#14180)

[email protected]

Patch Changes

  • fix: error on TypeScript's readonly modifier (#14153)

  • fix: remove scoping for :not selectors (#14177)

[email protected]

Patch Changes

  • fix: ensure non-matching elements are scoped for :not(...) selector (#13999)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.1.14

Patch Changes

  • fix: migration script messing with attributes (#14260)

  • fix: do not treat reassigned synthetic binds as state in runes mode (#14236)

  • fix: account for mutations in script module in ownership check (#14253)

  • fix: consider img with loading attribute not static (#14237)

5.1.13

Patch Changes

  • fix: add migration task when there's a variable named that would conflict with a rune (#14216)

  • fix: consider valueOf in the reactive methods of SvelteDate (#14227)

  • fix: handle sibling combinators within :has (#14213)

  • fix: consider variables with synthetic store sub as state (#14195)

  • fix: read index as a source in legacy keyed each block (#14208)

  • fix: account for shadowing children slot during migration (#14224)

  • fix: ensure explicit nesting selector is always applied (#14193)

  • fix: add lang="ts" attribute during migration if needed (#14222)

5.1.12

Patch Changes

  • fix: ignore as type expressions on property definitions (#14181)

  • fix: restore active reaction if then block throws (#14191)

  • chore: adds legacy mode flag reducing bundle size in runes mode only apps (#14180)

5.1.11

Patch Changes

  • fix: error on TypeScript's readonly modifier (#14153)

  • fix: remove scoping for :not selectors (#14177)

... (truncated)

Commits
  • 832499f Version Packages (#14251)
  • 653f4ac fix: migration script messing with attributes (#14260)
  • ae9f53a fix: account for mutations in script module in ownership check (#14253)
  • 7bc94b9 fix: do not treat reassigned synthetic binds as state in runes mode (#14236)
  • d207666 fix: consider img with loading attribute not static (#14237)
  • 4bcd01b Version Packages (#14207)
  • 1060bea fix: consider valueOf in the reactive methods of SvelteDate (#14227)
  • f0c2d4c fix: account for shadowing children slot during migration (#14224)
  • 31e6bbb fix: add lang="ts" attribute during migration if needed (#14222)
  • 438de04 fix: add migration task when there's a variable named that would conflict wit...
  • Additional commits viewable 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 cspell from 8.14.4 to 8.16.0

Release notes

Sourced from cspell's releases.

v8.16.0

Changes

Features

feat: Change default cache strategy to content (#6477)

Closes #6473

I’ve pretty much swapped content and metadata in code and have also added .default('content') for better docs.


Fixes

fix: cspell-tools - compounds (#6506)

This PR changes a single rule when merging compound forms:

When a word is allowed to be stand alone and a midfix compound, then allow it to be a prefix as well as a suffix.

The logic: If we allow code and strongcodetype, then codetype or strongcode should also be allowed.


fix: plugin ignore exports (#6500)

fixes #6378


Dictionary Updates

... (truncated)

Changelog

Sourced from cspell's changelog.

8.16.0 (2024-11-07)

8.15.7 (2024-11-03)

8.15.6 (2024-11-02)

8.15.5 (2024-10-30)

8.15.4 (2024-10-18)

8.15.3 (2024-10-16)

8.15.2 (2024-10-14)

8.15.1 (2024-10-11)

8.15.0 (2024-10-11)

  • chore: bump eslint-plugin-unicorn from 55.0.0 to 56.0.0 (#6332) (67d1e92), closes #6332
Commits

Updates gh-pages from 6.1.1 to 6.2.0

Release notes

Sourced from gh-pages's releases.

v6.2.0

What's Changed

New Contributors

Full Changelog: tschaub/gh-pages@v6.1.1...v6.2.0

Changelog

Sourced from gh-pages's changelog.

v6.2.0

Assorted dependency updates and a documentation change.

Commits
  • 4b29930 6.2.0
  • a3df19c Log changes
  • 0b721f3 Merge pull request #581 from tschaub/updates
  • 13b6efc Update globby
  • 5a8c819 Merge pull request #578 from tschaub/dependabot/npm_and_yarn/sinon-19.0.2
  • bf7ed42 Merge pull request #579 from tschaub/dependabot/npm_and_yarn/eslint-8.57.1
  • e55b0dd Bump eslint from 8.57.0 to 8.57.1
  • b525485 Bump sinon from 18.0.0 to 19.0.2
  • fc668f2 Merge pull request #576 from tschaub/dependabot/npm_and_yarn/async-3.2.6
  • d55ea9f Bump async from 3.2.5 to 3.2.6
  • Additional commits viewable in compare view

Updates listr2 from 8.2.4 to 8.2.5

Commits

Updates sirv from 2.0.4 to 3.0.0

Release notes

Sourced from sirv's releases.

v3.0.0

Breaking

  • Now requires Node 18+ : c7d2479,
  • Added exports map for native ESM support: c7d2479

Features

  • Added node: prefix for explicit native imports, which unlocks Deno support (#163): 912af6f Thank you @​karimfromjordan

Patches

  • Add separate CJS and ESM definitions: 982fcc8 Previously CJS types were wrong/incompatible.

Chores

  • (sirv-cli) Upgrade get-port to 5.1.1 for TS definitions: e5e0826
  • Write tests in native ESM: 2f36733
  • (CI): Add Node 20 to matrix: 9ca1cbc

Full Changelog: lukeed/sirv@v2.0.4...v3.0.0

Commits

Updates @rollup/plugin-typescript from 12.1.0 to 12.1.1

Changelog

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

v12.1.1

2024-10-16

Bugfixes

  • fix: allow for files to be nested in folders within outDir (#1783)
Commits
  • c358dae chore(release): typescript v12.1.1
  • cc55c44 fix(typescript): allow for files to be nested in folders within outDir (#1783)
  • See full diff in compare view

Updates @types/lodash from 4.17.9 to 4.17.13

Commits

Updates @types/node from 22.7.4 to 22.9.0

Commits

Updates @vitest/coverage-v8 from 2.1.1 to 2.1.4

Release notes

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

v2.1.4

   🚀 Features

This patch release includes a non-breaking feature for the experimental Browser Mode that doesn't follow SemVer. If you want to avoid picking up releases like this, make sure to pin the Vitest version in your package.json. See npm's documentation about semver for more information.

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v2.1.3

   🐞 Bug Fixes

... (truncated)

Commits
  • 0df44c0 chore: release v2.1.4
  • de74785 chore(deps): update @antfu/eslint-config v3.8.0 (#6751)
  • 62ac4eb chore(deps): update magic-string (#6711)
  • d260cef chore(deps): update all non-major dependencies (#6360)
  • 4c03a0d chore: release v2.1.3
  • 7155cee refactor(coverage): move re-usable parts to base provider (#6665)
  • 0ce26a4 chore: release v2.1.2
  • 88bde99 fix(coverage): cleanOnRerun: false to invalidate previous results (#6592)
  • 1371ca6 fix(coverage): remove empty coverage folder on test failure too (#6547)
  • See full diff in compare view

Updates rollup from 4.24.0 to 4.25.0

Release notes

Sourced from rollup's releases.

v4.25.0

4.25.0

2024-11-09

Features

  • Add output.sourcemapDebugIds option to add matching debug ids to sourcemaps and code for tools like Sentry or Rollbar (#5712)

Bug Fixes

  • Make it easier to manually reproduce base16 hashes by using a more standard base16 conversion algorithm (#5719)

Pull Requests

v4.24.4

4.24.4

2024-11-04

Bug Fixes

  • Ensure mutations by handlers in Proxy definitions are always respected when tree-shaking (#5713)

Pull Requests

v4.24.3

4.24.3

2024-10-29

Bug Fixes

  • Slightly reduce memory consumption by specifying fixed array sizes where possible (#5703)

Pull Requests

v4.24.2

4.24.2

... (truncated)

Changelog

Sourced from rollup's changelog.

4.25.0

2024-11-09

Features

  • Add output.sourcemapDebugIds option to add matching debug ids to sourcemaps and code for tools like Sentry or Rollbar (#5712)

Bug Fixes

  • Make it easier to manually reproduce base16 hashes by using a more standard base16 conversion algorithm (#5719)

Pull Requests

Bumps the all group with 29 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.3` | `1.9.4` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `4.2.19` | `5.1.14` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.14.4` | `8.16.0` |
| [gh-pages](https://github.com/tschaub/gh-pages) | `6.1.1` | `6.2.0` |
| [listr2](https://github.com/listr2/listr2) | `8.2.4` | `8.2.5` |
| [sirv](https://github.com/lukeed/sirv) | `2.0.4` | `3.0.0` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `12.1.0` | `12.1.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.9` | `4.17.13` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.9.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.1` | `2.1.4` |
| [rollup](https://github.com/rollup/rollup) | `4.24.0` | `4.25.0` |
| [tslib](https://github.com/Microsoft/tslib) | `2.7.0` | `2.8.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.8` | `5.4.11` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.1` | `2.1.4` |
| [serve](https://github.com/vercel/serve) | `14.2.3` | `14.2.4` |
| [marked](https://github.com/markedjs/marked) | `14.1.2` | `15.0.0` |
| [nock](https://github.com/nock/nock) | `13.5.5` | `13.5.6` |
| [@sveltejs/adapter-auto](https://github.com/sveltejs/kit/tree/HEAD/packages/adapter-auto) | `3.2.5` | `3.3.1` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.6.1` | `2.8.0` |
| [@sveltejs/package](https://github.com/sveltejs/kit/tree/HEAD/packages/package) | `2.3.5` | `2.3.7` |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `3.1.2` | `4.0.0` |
| [@types/prismjs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prismjs) | `1.26.4` | `1.26.5` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.0.4` | `4.0.6` |
| [svelte2tsx](https://github.com/sveltejs/language-tools) | `0.7.21` | `0.7.23` |
| [@sveltejs/adapter-static](https://github.com/sveltejs/kit/tree/HEAD/packages/adapter-static) | `3.0.5` | `3.0.6` |
| [carbon-components-svelte](https://github.com/carbon-design-system/carbon-components-svelte) | `0.85.2` | `0.85.4` |
| [carbon-icons-svelte](https://github.com/carbon-design-system/carbon-icons-svelte) | `12.11.1` | `12.13.0` |
| [marked-gfm-heading-id](https://github.com/markedjs/marked-gfm-heading-id) | `4.1.0` | `4.1.1` |



Updates `@biomejs/biome` from 1.9.3 to 1.9.4
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.9.4/packages/@biomejs/biome)

Updates `svelte` from 4.2.19 to 5.1.14
- [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 `typescript` from 5.6.2 to 5.6.3
- [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.2...v5.6.3)

Updates `cspell` from 8.14.4 to 8.16.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.16.0/packages/cspell)

Updates `gh-pages` from 6.1.1 to 6.2.0
- [Release notes](https://github.com/tschaub/gh-pages/releases)
- [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md)
- [Commits](tschaub/gh-pages@v6.1.1...v6.2.0)

Updates `listr2` from 8.2.4 to 8.2.5
- [Release notes](https://github.com/listr2/listr2/releases)
- [Changelog](https://github.com/listr2/listr2/blob/master/release.config.cjs)
- [Commits](https://github.com/listr2/listr2/compare/[email protected]@8.2.5)

Updates `sirv` from 2.0.4 to 3.0.0
- [Release notes](https://github.com/lukeed/sirv/releases)
- [Commits](lukeed/sirv@v2.0.4...v3.0.0)

Updates `@rollup/plugin-typescript` from 12.1.0 to 12.1.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

Updates `@types/lodash` from 4.17.9 to 4.17.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/node` from 22.7.4 to 22.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitest/coverage-v8` from 2.1.1 to 2.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.4/packages/coverage-v8)

Updates `rollup` from 4.24.0 to 4.25.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.24.0...v4.25.0)

Updates `tslib` from 2.7.0 to 2.8.1
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.7.0...v2.8.1)

Updates `vite` from 5.4.8 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.11/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `vitest` from 2.1.1 to 2.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.4/packages/vitest)

Updates `serve` from 14.2.3 to 14.2.4
- [Release notes](https://github.com/vercel/serve/releases)
- [Commits](vercel/serve@14.2.3...14.2.4)

Updates `marked` from 14.1.2 to 15.0.0
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v14.1.2...v15.0.0)

Updates `nock` from 13.5.5 to 13.5.6
- [Release notes](https://github.com/nock/nock/releases)
- [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
- [Commits](nock/nock@v13.5.5...v13.5.6)

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

Updates `@sveltejs/kit` from 2.6.1 to 2.8.0
- [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/package` from 2.3.5 to 2.3.7
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/package/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/package)

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

Updates `@types/prismjs` from 1.26.4 to 1.26.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/prismjs)

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

Updates `svelte2tsx` from 0.7.21 to 0.7.23
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](sveltejs/language-tools@svelte2tsx-0.7.21...svelte2tsx-0.7.23)

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

Updates `carbon-components-svelte` from 0.85.2 to 0.85.4
- [Release notes](https://github.com/carbon-design-system/carbon-components-svelte/releases)
- [Changelog](https://github.com/carbon-design-system/carbon-components-svelte/blob/master/CHANGELOG.md)
- [Commits](carbon-design-system/carbon-components-svelte@v0.85.2...v0.85.4)

Updates `carbon-icons-svelte` from 12.11.1 to 12.13.0
- [Release notes](https://github.com/carbon-design-system/carbon-icons-svelte/releases)
- [Changelog](https://github.com/carbon-design-system/carbon-icons-svelte/blob/master/CHANGELOG.md)
- [Commits](carbon-design-system/carbon-icons-svelte@v12.11.1...v12.13.0)

Updates `marked-gfm-heading-id` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/markedjs/marked-gfm-heading-id/releases)
- [Changelog](https://github.com/markedjs/marked-gfm-heading-id/blob/main/release.config.cjs)
- [Commits](markedjs/marked-gfm-heading-id@v4.1.0...v4.1.1)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: svelte
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: cspell
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: gh-pages
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: listr2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: sirv
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@vitest/coverage-v8"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serve
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: marked
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: nock
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@sveltejs/adapter-auto"
  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-minor
  dependency-group: all
- dependency-name: "@sveltejs/package"
  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-major
  dependency-group: all
- dependency-name: "@types/prismjs"
  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-patch
  dependency-group: all
- dependency-name: svelte2tsx
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@sveltejs/adapter-static"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: carbon-components-svelte
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: carbon-icons-svelte
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: marked-gfm-heading-id
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 11, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 18, 2024

Superseded by #430.

@dependabot dependabot bot closed this Nov 18, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-40ba846478 branch November 18, 2024 12:43
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.

0 participants