Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 29, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@astro-community/astro-embed-youtube (source) 0.5.6 -> 0.5.9 age confidence
@astrojs/check (source) 0.9.4 -> 0.9.6 age confidence
@astrojs/markdown-remark (source) 6.3.6 -> 6.3.10 age confidence
@astrojs/mdx (source) 4.3.4 -> 4.3.13 age confidence
@astrojs/sitemap (source) 3.5.1 -> 3.6.0 age confidence
@astrojs/vue (source) 5.1.0 -> 5.1.3 age confidence
@eslint/config-inspector 1.2.0 -> 1.4.2 age confidence
@eslint/js (source) 9.34.0 -> 9.39.1 age confidence
@iconify/json (source) 2.2.379 -> 2.2.416 age confidence
@stylistic/eslint-plugin (source) 5.2.3 -> 5.6.1 age confidence
@types/node (source) 24.3.0 -> 24.10.3 age confidence
@types/nodemailer (source) 7.0.1 -> 7.0.4 age confidence
@unocss/eslint-config (source) 66.4.2 -> 66.5.10 age confidence
@vite-pwa/astro 1.1.0 -> 1.2.0 age confidence
@vitejs/plugin-vue (source) 6.0.1 -> 6.0.2 age confidence
browserslist 4.25.3 -> 4.28.1 age confidence
dotenv 17.2.1 -> 17.2.3 age confidence
eslint (source) 9.34.0 -> 9.39.1 age confidence
eslint-plugin-astro (source) 1.3.1 -> 1.5.0 age confidence
eslint-plugin-css 0.11.0 -> 0.11.1 age confidence
eslint-plugin-jsdoc 54.1.1 -> 54.7.0 age confidence
eslint-plugin-vue (source) 10.4.0 -> 10.6.2 age confidence
eslint-plugin-vue-scoped-css (source) 2.11.0 -> 2.12.0 age confidence
globals 16.3.0 -> 16.5.0 age confidence
jiti 2.5.1 -> 2.6.1 age confidence
lightningcss 1.30.1 -> 1.30.2 age confidence
marked (source) 16.2.1 -> 16.4.2 age confidence
tailwind-merge 3.3.1 -> 3.4.0 age confidence
typescript (source) 5.9.2 -> 5.9.3 age confidence
typescript-eslint (source) 8.41.0 -> 8.49.0 age confidence
unocss (source) 66.4.2 -> 66.5.10 age confidence
vite-plugin-pwa 1.0.3 -> 1.2.0 age confidence
vue-tsc (source) 3.0.6 -> 3.1.8 age confidence
workbox-window (source) 7.3.0 -> 7.4.0 age confidence

Release Notes

delucis/astro-embed (@​astro-community/astro-embed-youtube)

v0.5.9

Compare Source

Patch Changes
  • #​219 d90ce7a Thanks @​delucis! - No code changes. This release is the first published using OIDC trusted publisher configuration for improved security.

v0.5.8

Compare Source

Patch Changes
  • #​217 4668c58 Thanks @​Mikescops! - Fixes compatibility with the latest release of lite-youtube-embed to make sure the play button displays

v0.5.7

Compare Source

Patch Changes
withastro/astro (@​astrojs/check)

v0.9.6

Patch Changes

v0.9.5

Patch Changes
  • d415d4e: When no errors or warnings are detected, display "0 errors" or "0 warnings" in a dimmed color on the console instead of red or yellow.
withastro/astro (@​astrojs/markdown-remark)

v6.3.10

Compare Source

Patch Changes

v6.3.9

Compare Source

Patch Changes

v6.3.8

Compare Source

Patch Changes

v6.3.7

Compare Source

Patch Changes
withastro/astro (@​astrojs/mdx)

v4.3.13

Compare Source

Patch Changes

v4.3.12

Compare Source

Patch Changes

v4.3.11

Compare Source

Patch Changes

v4.3.10

Compare Source

Patch Changes
  • #​14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

v4.3.9

Patch Changes

v4.3.8

Patch Changes
  • #​14591 3e887ec Thanks @​matthewp! - Adds TypeScript support for the components prop on MDX Content component when using await render(). Developers now get proper IntelliSense and type checking when passing custom components to override default MDX element rendering.

  • #​14598 7b45c65 Thanks @​delucis! - Reduces terminal text styling dependency size by switching from kleur to picocolors

v4.3.7

Compare Source

Patch Changes

v4.3.6

Compare Source

Patch Changes

v4.3.5

Compare Source

Patch Changes
withastro/astro (@​astrojs/sitemap)

v3.6.0

Compare Source

Minor Changes
  • #​14285 bedc31b Thanks @​jdcolombo! - Adds a new configuration option namespaces for more control over XML namespaces used in sitemap generation

    Excluding unused namespaces can help create cleaner, more focused sitemaps that are faster for search engines to parse and use less bandwidth. If your site doesn't have news content, videos, or multiple languages, you can exclude those namespaces to reduce XML bloat.

    The namespaces option allows you to configure news, xhtml, image, and video namespaces independently. All namespaces are enabled by default for backward compatibility and no change to existing projects is necessary. But now, you can choose to streamline your XML and avoid unnecessary code.

    For example, to exclude the video namespace from your sitemap, set video: false in your configuration:

    // astro.config.mjs
    import { sitemap } from '@​astrojs/sitemap';
    
    export default {
      integrations: [
        sitemap({
          namespaces: {
            video: false,
            // other namespaces remain enabled by default
          }
        })
      ]
    };
    

    The generated XML will not include the xmlns:video namespace:

    <?xml version="1.0" encoding="UTF-8"?>
    <urlset
      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
      xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"
      xmlns:xhtml="http://www.w3.org/1999/xhtml"
      xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
    >
      <!-- ... -->
    </urlset>
    
withastro/astro (@​astrojs/vue)

v5.1.3

Compare Source

Patch Changes
  • #​14715 3d55c5d Thanks @​ascorbic! - Adds support for client hydration in getContainerRenderer()

    The getContainerRenderer() function is exported by Astro framework integrations to simplify the process of rendering framework components when using the experimental Container API inside a Vite or Vitest environment. This update adds the client hydration entrypoint to the returned object, enabling client-side interactivity for components rendered using this function. Previously this required users to manually call container.addClientRenderer() with the appropriate client renderer entrypoint.

    See the container-with-vitest demo for a usage example, and the Container API documentation for more information on using framework components with the experimental Container API.

v5.1.2

Compare Source

Patch Changes

v5.1.1

Compare Source

Patch Changes
eslint/config-inspector (@​eslint/config-inspector)

v1.4.2

Compare Source

Bug Fixes

v1.4.1

Compare Source

Bug Fixes

v1.3.0

Compare Source

Features
eslint/eslint (@​eslint/js)

v9.39.1

Compare Source

v9.39.0

Compare Source

v9.38.0

Compare Source

Features
  • ce40f74 feat: update complexity rule to only highlight function header (#​20048) (Atul Nair)
  • e37e590 feat: correct no-loss-of-precision false positives with e notation (#​20187) (Francesco Trotta)
Bug Fixes
  • 50c3dfd fix: improve type support for isolated dependencies in pnpm (#​20201) (Francesco Trotta)
  • a1f06a3 fix: correct SourceCode typings (#​20114) (Pixel998)
Documentation
  • 462675a docs: improve web accessibility by hiding non-semantic character (#​20205) (루밀LuMir)
  • c070e65 docs: correct formatting in no-irregular-whitespace rule documentation (#​20203) (루밀LuMir)
  • b39e71a docs: Update README (GitHub Actions Bot)
  • cd39983 docs: move custom-formatters type descriptions to nodejs-api (#​20190) (Percy Ma)
Chores

v9.37.0

Compare Source

Features
  • 39f7fb4 feat: preserve-caught-error should recognize all static "cause" keys (#​20163) (Pixel998)
  • f81eabc feat: support TS syntax in no-restricted-imports (#​19562) (Nitin Kumar)
Bug Fixes
Documentation
  • b950359 docs: fix typos across the docs (#​20182) (루밀LuMir)
  • 42498a2 docs: improve ToC accessibility by hiding non-semantic character (#​20181) (Percy Ma)
  • 29ea092 docs: Update README (GitHub Actions Bot)
  • 5c97a04 docs: show availableUntil in deprecated rule banner (#​20170) (Pixel998)
  • 90a71bf docs: update README files to add badge and instructions (#​20115) (루밀LuMir)
  • 1603ae1 docs: update references from master to main (#​20153) (루밀LuMir)
Chores
  • afe8a13 chore: update @eslint/js dependency to version 9.37.0 (#​20183) (Francesco Trotta)
  • abee4ca chore: package.json update for @​eslint/js release (Jenkins)
  • fc9381f chore: fix typos in comments (#​20175) (overlookmotel)
  • e1574a2 chore: unpin jiti (#​20173) (renovate[bot])
  • e1ac05e refactor: mark ESLint.findConfigFile() as async, add missing docs (#​20157) (Pixel998)
  • 347906d chore: update eslint (#​20149) (renovate[bot])
  • 0cb5897 test: remove tmp dir created for circular fixes in multithread mode test (#​20146) (Milos Djermanovic)
  • bb99566 ci: pin jiti to version 2.5.1 (#​20151) (Pixel998)
  • 177f669 perf: improve worker count calculation for "auto" concurrency (#​20067) (Francesco Trotta)
  • 448b57b chore: Mark deprecated formatting rules as available until v11.0.0 (#​20144) (Milos Djermanovic)

v9.36.0

Compare Source

Features
  • 47afcf6 feat: correct preserve-caught-error edge cases (#​20109) (Francesco Trotta)
Bug Fixes
Documentation
  • b73ab12 docs: update examples to use defineConfig (#​20131) (sethamus)
  • 31d9392 docs: fix typos (#​20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)
Chores

v9.35.0

Compare Source

Features
  • 42761fa feat: implement suggestions for no-empty-function (#​20057) (jaymarvelz)
  • 102f444 feat: implement suggestions for no-empty-static-block (#​20056) (jaymarvelz)
  • e51ffff feat: add preserve-caught-error rule (#​19913) (Amnish Singh Arora)
Bug Fixes
  • 10e7ae2 fix: update uncloneable options error message (#​20059) (soda-sorcery)
  • bfa4601 fix: ignore empty switch statements with comments in no-empty rule (#​20045) (jaymarvelz)
  • dfd11de fix: add before and after to test case types (#​20049) (Francesco Trotta)
  • dabbe95 fix: correct types for no-restricted-imports rule (#​20034) (Milos Djermanovic)
  • ea789c7 fix: no-loss-of-precision false positive with uppercase exponent (#​20032) (sethamus)
Documentation
  • d265515 docs: improve phrasing - "if" → "even if" from getting-started section (#​20074) (jjangga0214)
  • a355a0e docs: invert comparison logic for example in no-var doc page (#​20064) (OTonGitHub)
  • 5082fc2 docs: Update README (GitHub Actions Bot)
  • 99cfd7e docs: add missing "the" in rule deprecation docs (#​20050) (Josh Goldberg ✨)
  • 6ad8973 docs: update --no-ignore and --ignore-pattern documentation (#​20036) (Francesco Trotta)
  • 8033b19 docs: add documentation for --no-config-lookup (#​20033) (Francesco Trotta)
Chores
iconify/icon-sets (@​iconify/json)

v2.2.416

Compare Source

v2.2.415

Compare Source

v2.2.414

Compare Source

v2.2.413

Compare Source

v2.2.412

Compare Source

v2.2.411

Compare Source

v2.2.410

Compare Source

v2.2.409

Compare Source

v2.2.408

Compare Source

v2.2.407

Compare Source

v2.2.406

Compare Source

v2.2.405

Compare Source

v2.2.404

Compare Source

v2.2.403

Compare Source

v2.2.402

Compare Source

v2.2.401

Compare Source

v2.2.400

Compare Source

v2.2.399

Compare Source

v2.2.398

Compare Source

v2.2.397

Compare Source

v2.2.396

Compare Source

v2.2.395

Compare Source

v2.2.394

Compare Source

v2.2.393

[Compare Source](https://redirect.github.c


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link

github-actions bot commented Aug 29, 2025

Cloudflare Pages deployment

Latest commit 43989cd
Status 🔄 Deploying...
Preview URL Not available
Type 🔀 Preview

@renovate renovate bot force-pushed the renovate/npm-(development) branch 2 times, most recently from 4567979 to 3f99e88 Compare August 29, 2025 16:16
@renovate renovate bot changed the title chore(deps): update dependency browserslist to v4.25.4 chore(deps): update npm (development) Aug 29, 2025
@renovate renovate bot force-pushed the renovate/npm-(development) branch 24 times, most recently from 0cd456b to 9a1dfbd Compare September 4, 2025 21:28
@renovate renovate bot force-pushed the renovate/npm-(development) branch from 9a1dfbd to 079857a Compare September 5, 2025 17:57
@renovate renovate bot force-pushed the renovate/npm-(development) branch 10 times, most recently from b99d845 to 6a97d34 Compare November 24, 2025 17:35
@renovate renovate bot force-pushed the renovate/npm-(development) branch 8 times, most recently from 5d51b08 to e3c524e Compare December 2, 2025 17:48
@renovate renovate bot force-pushed the renovate/npm-(development) branch 10 times, most recently from e8f89dd to e3bb6d1 Compare December 10, 2025 16:15
@renovate renovate bot force-pushed the renovate/npm-(development) branch from e3bb6d1 to 43989cd Compare December 10, 2025 23:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant