Skip to content

📦🧑‍🔧 NPM deps: bump the minor-and-patch group across 1 directory with 8 updates#695

Merged
ngnijland merged 2 commits intomasterfrom
dependabot/npm_and_yarn/docs/minor-and-patch-6a7018dbf2
Apr 16, 2025
Merged

📦🧑‍🔧 NPM deps: bump the minor-and-patch group across 1 directory with 8 updates#695
ngnijland merged 2 commits intomasterfrom
dependabot/npm_and_yarn/docs/minor-and-patch-6a7018dbf2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 16, 2025

Bumps the minor-and-patch group with 8 updates in the /docs directory:

Package From To
astro 5.2.5 5.7.2
marked 15.0.7 15.0.8
@types/node 22.13.1 22.14.1
@typescript-eslint/parser 8.24.0 8.30.1
eslint 9.19.0 9.24.0
knip 5.43.6 5.50.4
prettier 3.4.2 3.5.3
typescript 5.7.3 5.8.3

Updates astro from 5.2.5 to 5.7.2

Release notes

Sourced from astro's releases.

astro@5.7.2

Patch Changes

astro@5.7.1

Patch Changes

astro@5.7.0

Minor Changes

  • #13527 2fd6a6b Thanks @​ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.

    Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:

    ---
    export const prerender = false; // Not needed with 'server' output
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    Configuring session storage

    Sessions require a storage driver to store the data. The Node, Cloudflare and Netlify adapters automatically configure a default driver for you, but other adapters currently require you to specify a custom storage driver in your configuration.

    If you are using an adapter that doesn't have a default driver, or if you want to choose a different driver, you can configure it using the session configuration option:

    import { defineConfig } from 'astro/config';

... (truncated)

Changelog

Sourced from astro's changelog.

5.7.2

Patch Changes

5.7.1

Patch Changes

5.7.0

Minor Changes

  • #13527 2fd6a6b Thanks @​ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.

    Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:

    ---
    export const prerender = false; // Not needed with 'server' output
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    Configuring session storage

    Sessions require a storage driver to store the data. The Node, Cloudflare and Netlify adapters automatically configure a default driver for you, but other adapters currently require you to specify a custom storage driver in your configuration.

    If you are using an adapter that doesn't have a default driver, or if you want to choose a different driver, you can configure it using the session configuration option:

... (truncated)

Commits

Updates marked from 15.0.7 to 15.0.8

Release notes

Sourced from marked's releases.

v15.0.8

15.0.8 (2025-04-07)

Bug Fixes

Commits
  • fc85f92 chore(release): 15.0.8 [skip ci]
  • 721dc58 fix: fix emstrong inside escaped backticks (#3652)
  • 1ac6bc1 chore(deps-dev): Bump rollup from 4.37.0 to 4.38.0 (#3650)
  • d120e01 chore(docs): Add marked-typograf extension to the docs (#3649)
  • b5bcd7c chore(deps-dev): Bump rollup from 4.36.0 to 4.37.0 (#3647)
  • 11b82b9 chore(deps-dev): Bump eslint from 9.22.0 to 9.23.0 (#3646)
  • 0efaf92 chore(deps-dev): Bump rollup from 4.35.0 to 4.36.0 (#3642)
  • 7fee000 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.11 to 1.0.12 (#3639)
  • a530fb4 chore(deps-dev): Bump rollup from 4.34.9 to 4.35.0 (#3638)
  • 7c30e00 chore(deps-dev): Bump eslint from 9.21.0 to 9.22.0 (#3637)
  • Additional commits viewable in compare view

Updates @types/node from 22.13.1 to 22.14.1

Commits

Updates @typescript-eslint/parser from 8.24.0 to 8.30.1

Release notes

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

v8.30.1

8.30.1 (2025-04-14)

🚀 Features

  • eslint-plugin: [no-explicit-any] suggest to replace keyof any with PropertyKey (#11032)

🩹 Fixes

  • eslint-plugin: [promise-function-async] use a different error message for functions with promise and non-promise types (#10950)
  • typescript-estree: use token type of PrivateIdentifier instead of Identifier for private identifiers (#11023)
  • eslint-plugin: fix mistake with eslintrc config generation (#11072)

❤️ Thank You

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

v8.30.0

see release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.30.1

v8.29.1

8.29.1 (2025-04-07)

🩹 Fixes

  • eslint-plugin: [no-deprecated] report on deprecated imported variable used as property (#10998)
  • typescript-estree: use token type of Numeric instead of Identifier for bigint literals (#11021)

❤️ Thank You

  • Ronen Amiel

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

v8.29.0

8.29.0 (2025-03-31)

🚀 Features

  • eslint-plugin: [prefer-nullish-coalescing] create ignoreIfStatements option (#11000)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-condition] don't report on unnecessary optional array index access when noUncheckedIndexedAccess is enabled (#10961)
  • eslint-plugin: [use-unknown-in-catch-callback-variable] remove fixable property (#10993)
  • eslint-plugin: [prefer-for-of] fix false positive when using erasable type syntax within update expressions (#10981)

... (truncated)

Changelog

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

8.30.1 (2025-04-14)

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.

8.30.0 (2025-04-14)

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.

8.29.1 (2025-04-07)

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.

8.29.0 (2025-03-31)

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.

8.28.0 (2025-03-24)

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.

8.27.0 (2025-03-17)

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.

8.26.1 (2025-03-10)

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.

8.26.0 (2025-03-03)

🚀 Features

  • support TypeScript 5.8 (#10903)

❤️ Thank You

... (truncated)

Commits
  • 9531492 chore(release): publish 8.30.1
  • b3688be chore(release): publish 8.30.0
  • f1ceade chore: remove unused downlevel-dts (#11034)
  • 6e03f7c chore: corrected vitest.config.base compiler inclusion (#11067)
  • c438c50 chore(parser): migrate from jest to vitest (#10775)
  • ef7e6de chore(release): publish 8.29.1
  • 3dd1835 chore(release): publish 8.29.0
  • 807f5ca chore(release): publish 8.28.0
  • 3efd99e chore(release): publish 8.27.0
  • 9aa0b6b chore(release): publish 8.26.1
  • Additional commits viewable in compare view

Updates eslint from 9.19.0 to 9.24.0

Release notes

Sourced from eslint's releases.

v9.24.0

Features

  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19401) (Arya Emami)
  • 72650ac feat: support TS syntax in init-declarations (#19540) (Nitin Kumar)
  • 03fb0bc feat: normalize patterns to handle "./" prefix in files and ignores (#19568) (Pixel998)
  • 071dcd3 feat: support TS syntax in no-dupe-class-members (#19558) (Nitin Kumar)
  • cd72bcc feat: Introduce a way to suppress violations (#19159) (Iacovos Constantinou)
  • 2a81578 feat: support TS syntax in no-loss-of-precision (#19560) (Nitin Kumar)
  • 30ae4ed feat: add new options to class-methods-use-this (#19527) (sethamus)
  • b79ade6 feat: support TypeScript syntax in no-array-constructor (#19493) (Tanuj Kanti)

Bug Fixes

  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595) (Nitin Kumar)
  • fb8cdb8 fix: use any[] type for context.options (#19584) (Francesco Trotta)

Documentation

  • f857820 docs: update documentation for --experimental-strip-types (#19594) (Nikolas Schröter)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596) (Thomas Broyer)
  • 6d979cc docs: Update README (GitHub Actions Bot)
  • 82177e4 docs: Update README (GitHub Actions Bot)
  • e849dc0 docs: replace existing var with const (#19578) (Sweta Tanwar)
  • 0c65c62 docs: don't pass filename when linting rule examples (#19571) (Milos Djermanovic)
  • 6be36c9 docs: Update custom-rules.md code example of fixer (#19555) (Yifan Pan)

Build Related

  • 366e369 build: re-enable Prettier formatting for package.json files (#19569) (Francesco Trotta)

Chores

  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602) (Milos Djermanovic)
  • 4946847 chore: package.json update for @​eslint/js release (Jenkins)
  • a995acb chore: correct 'flter'/'filter' typo in package script (#19587) (Josh Goldberg ✨)
  • b9a5efa test: skip symlink test on Windows (#19503) (fisker Cheung)
  • 46eea6d chore: remove Rule & FormatterFunction from shared/types.js (#19556) (Nitin Kumar)
  • bdcc91d chore: modify .editorconfig to keep parity with prettier config (#19577) (Sweta Tanwar)
  • 7790d83 chore: fix some typos in comment (#19576) (todaymoon)
  • 76064a6 test: ignore package-lock.json for eslint-webpack-plugin (#19572) (Francesco Trotta)

v9.23.0

Features

  • 557a0d2 feat: support TypeScript syntax in no-useless-constructor (#19535) (Josh Goldberg ✨)
  • 8320241 feat: support TypeScript syntax in default-param-last (#19431) (Josh Goldberg ✨)
  • 833c4a3 feat: defineConfig() supports "flat/" config prefix (#19533) (Nicholas C. Zakas)
  • 4a0df16 feat: circular autofix/conflicting rules detection (#19514) (Milos Djermanovic)
  • be56a68 feat: support TypeScript syntax in class-methods-use-this (#19498) (Josh Goldberg ✨)

Bug Fixes

  • 0e20aa7 fix: move deprecated RuleContext methods to subtype (#19531) (Francesco Trotta)
  • cc3bd00 fix: reporting variable used in catch block in no-useless-assignment (#19423) (Tanuj Kanti)
  • d46ff83 fix: no-dupe-keys false positive with proto setter (#19508) (Milos Djermanovic)
  • e732773 fix: navigation of search results on pressing Enter (#19502) (Tanuj Kanti)

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.24.0 - April 4, 2025

  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602) (Milos Djermanovic)
  • 4946847 chore: package.json update for @​eslint/js release (Jenkins)
  • f857820 docs: update documentation for --experimental-strip-types (#19594) (Nikolas Schröter)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596) (Thomas Broyer)
  • 6d979cc docs: Update README (GitHub Actions Bot)
  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595) (Nitin Kumar)
  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19401) (Arya Emami)
  • 82177e4 docs: Update README (GitHub Actions Bot)
  • a995acb chore: correct 'flter'/'filter' typo in package script (#19587) (Josh Goldberg ✨)
  • 72650ac feat: support TS syntax in init-declarations (#19540) (Nitin Kumar)
  • 03fb0bc feat: normalize patterns to handle "./" prefix in files and ignores (#19568) (Pixel998)
  • b9a5efa test: skip symlink test on Windows (#19503) (fisker Cheung)
  • 46eea6d chore: remove Rule & FormatterFunction from shared/types.js (#19556) (Nitin Kumar)
  • fb8cdb8 fix: use any[] type for context.options (#19584) (Francesco Trotta)
  • 071dcd3 feat: support TS syntax in no-dupe-class-members (#19558) (Nitin Kumar)
  • e849dc0 docs: replace existing var with const (#19578) (Sweta Tanwar)
  • bdcc91d chore: modify .editorconfig to keep parity with prettier config (#19577) (Sweta Tanwar)
  • 7790d83 chore: fix some typos in comment (#19576) (todaymoon)
  • cd72bcc feat: Introduce a way to suppress violations (#19159) (Iacovos Constantinou)
  • 2a81578 feat: support TS syntax in no-loss-of-precision (#19560) (Nitin Kumar)
  • 366e369 build: re-enable Prettier formatting for package.json files (#19569) (Francesco Trotta)
  • 30ae4ed feat: add new options to class-methods-use-this (#19527) (sethamus)
  • b79ade6 feat: support TypeScript syntax in no-array-constructor (#19493) (Tanuj Kanti)
  • 0c65c62 docs: don't pass filename when linting rule examples (#19571) (Milos Djermanovic)
  • 76064a6 test: ignore package-lock.json for eslint-webpack-plugin (#19572) (Francesco Trotta)
  • 6be36c9 docs: Update custom-rules.md code example of fixer (#19555) (Yifan Pan)

v9.23.0 - March 21, 2025

  • 0ac8ea4 chore: update dependencies for v9.23.0 release (#19554) (Francesco Trotta)
  • 20591c4 chore: package.json update for @​eslint/js release (Jenkins)
  • 901344f chore: update dependency @​eslint/json to ^0.11.0 (#19552) (renovate[bot])
  • 557a0d2 feat: support TypeScript syntax in no-useless-constructor (#19535) (Josh Goldberg ✨)
  • 2357edd build: exclude autogenerated files from Prettier formatting (#19548) (Francesco Trotta)
  • 5405939 docs: show red underlines in TypeScript examples in rules docs (#19547) (Milos Djermanovic)
  • 48b53d6 docs: replace var with const in examples (#19539) (Nitin Kumar)
  • 0e20aa7 fix: move deprecated RuleContext methods to subtype (#19531) (Francesco Trotta)
  • 5228383 chore: fix update-readme formatting (#19544) (Milos Djermanovic)
  • c39d7db docs: Update README (GitHub Actions Bot)
  • a4f8760 docs: revert accidental changes (#19542) (Francesco Trotta)
  • 5439525 chore: format JSON files in Trunk (#19541) (Francesco Trotta)
  • 75adc99 chore: enabled Prettier in Trunk (#19354) (Josh Goldberg ✨)
  • 2395168 chore: added .git-blame-ignore-revs for Prettier via trunk fmt (#19538) (Josh Goldberg ✨)
  • 129882d chore: formatted files with Prettier via trunk fmt (#19355) (Josh Goldberg ✨)
  • 1738dbc chore: temporarily disable prettier in trunk (#19537) (Josh Goldberg ✨)
  • 8320241 feat: support TypeScript syntax in default-param-last (#19431) (Josh Goldberg ✨)
  • 280128f docs: add copy button (#19512) (xbinaryx)
  • 833c4a3 feat: defineConfig() supports "flat/" config prefix (#19533) (Nicholas C. Zakas)

... (truncated)

Commits
  • d49f5b7 9.24.0
  • 9b6ed8a Build: changelog update for 9.24.0
  • ef67420 chore: upgrade @​eslint/js@​9.24.0 (#19602)
  • 4946847 chore: package.json update for @​eslint/js release
  • f857820 docs: update documentation for --experimental-strip-types (#19594)
  • 803e4af docs: simplify gitignore path handling in includeIgnoreFile section (#19596)
  • 6d979cc docs: Update README
  • b23d1c5 fix: deduplicate variable names in no-loop-func error messages (#19595)
  • 556c25b feat: support loading TS config files using --experimental-strip-types (#19...
  • 82177e4 docs: Update README
  • Additional commits viewable in compare view

Updates knip from 5.43.6 to 5.50.4

Release notes

Sourced from knip's releases.

Release 5.50.4

  • Don't exclude (dist) files with js ext from being source mapped (b39ac44651f662cdd545d854011d107ab260baa2)
  • Mark simple-git-hooks as used dependency when config exists (#1027) (78f8cf4d4949f4102fd010d419ce49bcd36eac64) - thanks @​azat-io!
  • Update docs dependencies (a8b44f6bf9dc47772826e288b6db28fe2f0f635f)

Release 5.50.3

  • Include empty named import declaration (d958e90dd279cfd98cf5b43cc7b1dd3e9011d0b6)
  • Use pnpm workspaces over package.json workspaces (330e91857d89fa4a974c034be60b3fa71a638fdf)
  • Update comment (e8fcd87d46282b196434f5a5b323513b1305ceed)
  • Revert and improve fix for #1024 (3db59f715dcd3e2a6cbeb1360951e9237891d7ed)

Release 5.50.2

  • Add i18next-parser plugin (#1023) (6b6536b7a65b8c08a664f9cd85382529d7bb610c) - thanks @​robinvdvleuten!
  • Fix recursion in config file handling (resolves #1024) (1966c231deea753752e77cb205477fdaa739b3a1)

Release 5.50.1

  • Revert "Remove unused TS config options"

This reverts commit d1686e2f9aaff684e406b5681ca82c9bcf82fef7. (731fe7e9ba6478a50bc821a6d3bd80239e4efaf7)

Release 5.50.0

  • Add missing git-ignored files in fixture (bf4fd5bf36a79857cc2ee4883fa8c9400a50af57)
  • feat: add create-typescript-app plugin (#1022) (0dfed33bd5f3a26eb559d14811ef14456cd42858) - thanks @​JoshuaKGoldberg!
  • Remove unused TS config options (d1686e2f9aaff684e406b5681ca82c9bcf82fef7)
  • Add "source mapping" docs (3bdf5abd1a20a29999381d7ba67a643d4f81effd)
  • Minor refactor json reporter types (58cc662cc84d91dd787f76158efc437cdf7fbc7e)

Release 5.49.0

  • Fix TS Router plugin name (d350725350a0f01a772abe63b782edce96a18efe)
  • Remove a wrong "not" in handling-issues.mdx (#1021) (6132bf75b03afbe09d85da67681f9a1fb32db85c) - thanks @​dyedwiper!
  • Improve support for package.json#exports (closes #853) (3378d60dae98415833b9f098e3236c0127ca4591)
  • Improve handling/skipping of exports in entry files (d4df7941e0ab7bcf2fba7446199ce226511cee15)
  • Simplify toSourcePath a bit (5efde33c38098d48f9c25e5286e9a0bc03c6370e)
  • Fix up toEntry callsites (898c18eecb9ad34af69ced49f4cbb4ce94eee4c7)

Release 5.48.0

  • Upgrade release-it (8017157023728046ac9292fda9ad9fc9deeec972)
  • Use strict config validation (resolves #966) (74763372f598201dcd2eb132e2ef29c0764b7fad)
  • fix: escape react-router route paths (#988) - thanks @​rossipedia!
  • Add support for resolveFromAST in plugins (#1005) (17a6f3c369c37b9609db3e3331bddcd29be3b3c9)
  • Don't add entry files from nodemon positional arg (closes #1019) (e51ef342321be3fadbbc27eb9bfbd23a2b472105)
  • Sync up @​nodelib/fs.walk version with fast-glob (8cf2247aa8356c3a79e53d64b14eefc5e431dda3)
  • Replace codeowners dependency with internal helpers + tests (c9c9211674d20ad230fe4fa0b2b8167f1067b17c)
  • Replace summary dependency with internal helper (450a565505a3e97e73a0cae6c16d4d23d1846f32)
  • Report unused re-exports (resolves #874) (6630e3953e8cb83179ffd5752d1868f167e1b767)
  • Fix typos in test (aab0962b807762a08f6daed85aac7999813c3942)
  • Improve SST plugin (ba917c3475abde215031a71945ab0bf6fbf92ede)

Release 5.47.0

  • Always consider husky inputs non-production (resolves #1017) (11139573b5616b0b01d20b1e6ddb7e583088db75)

... (truncated)

Commits
  • 06ad58f Release 5.50.4
  • 78f8cf4 Mark simple-git-hooks as used dependency when config exists (#1027)
  • b39ac44 Don't exclude (dist) files with js ext from being source mapped
  • d425b5f Release 5.50.3
  • 3db59f7 Revert and improve fix for #1024
  • e8fcd87 Update comment
  • 330e918 Use pnpm workspaces over package.json workspaces
  • d958e90 Include empty named import declaration
  • b30ccd2 Release 5.50.2
  • 1966c23 Fix recursion in config file handling (resolves #1024)
  • Additional commits viewable in compare view

Updates prettier from 3.4.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

Commits

… 8 updates

Bumps the minor-and-patch group with 8 updates in the /docs directory:

| Package | From | To |
| --- | --- | --- |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.2.5` | `5.7.2` |
| [marked](https://github.com/markedjs/marked) | `15.0.7` | `15.0.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.1` | `22.14.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.24.0` | `8.30.1` |
| [eslint](https://github.com/eslint/eslint) | `9.19.0` | `9.24.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.43.6` | `5.50.4` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.3` |



Updates `astro` from 5.2.5 to 5.7.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.7.2/packages/astro)

Updates `marked` from 15.0.7 to 15.0.8
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v15.0.7...v15.0.8)

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

Updates `@typescript-eslint/parser` from 8.24.0 to 8.30.1
- [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.30.1/packages/parser)

Updates `eslint` from 9.19.0 to 9.24.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.19.0...v9.24.0)

Updates `knip` from 5.43.6 to 5.50.4
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.50.4/packages/knip)

Updates `prettier` from 3.4.2 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.5.3)

Updates `typescript` from 5.7.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.3)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 5.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: marked
  dependency-version: 15.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 22.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.30.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint
  dependency-version: 9.24.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: knip
  dependency-version: 5.50.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 16, 2025

Labels

The following labels could not be found: dependabot. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@ngnijland ngnijland merged commit f1833bd into master Apr 16, 2025
1 check passed
@ngnijland ngnijland deleted the dependabot/npm_and_yarn/docs/minor-and-patch-6a7018dbf2 branch April 16, 2025 14:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant