Skip to content

chore(deps): update astro monorepo#146

Merged
finn-block merged 1 commit intomainfrom
renovate/astro-monorepo
Dec 16, 2025
Merged

chore(deps): update astro monorepo#146
finn-block merged 1 commit intomainfrom
renovate/astro-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

This PR contains the following updates:

Package Change Age Confidence
@astrojs/check (source) 0.9.4 -> 0.9.6 age confidence
@astrojs/rss (source) 4.0.11 -> 4.0.14 age confidence
@astrojs/sitemap (source) 3.4.0 -> 3.6.0 age confidence

Release Notes

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/rss)

v4.0.14

Compare Source

Patch Changes

v4.0.13

Compare Source

Patch Changes

v4.0.12

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>
    

v3.5.1

Compare Source

Patch Changes
  • #​14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.

v3.5.0

Compare Source

Minor Changes
  • #​13682 5824b32 Thanks @​gouravkhunger! - Adds a customSitemaps option to include extra sitemaps in the sitemap-index.xml file generated by Astro.

    This is useful for multi-framework setups on the same domain as your Astro site (example.com), such as a blog at example.com/blog whose sitemap is generated by another framework.

    The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in sitemap-index.xml:

    Example:

    import { defineConfig } from 'astro/config';
    import sitemap from '@&#8203;astrojs/sitemap';
    
    export default defineConfig({
      site: 'https://example.com',
      integrations: [
        sitemap({
          customSitemaps: [
            'https://example.com/blog/sitemap.xml',
            'https://example.com/helpcenter/sitemap.xml',
          ],
        }),
      ],
    });

    Learn more in the @astrojs/sitemap configuration documentation.

v3.4.2

Compare Source

Patch Changes

v3.4.1

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 Jun 9, 2025

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #15525101999 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 70440bb to f4748fd Compare June 22, 2025 12:50
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #15806773117 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from f4748fd to 4580289 Compare July 28, 2025 11:49
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #16568230022 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 4580289 to 21610e6 Compare August 14, 2025 11:11
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #16963542844 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 21610e6 to d4bfc2d Compare August 19, 2025 17:51
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #17077635859 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from d4bfc2d to cb91607 Compare August 22, 2025 19:52
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #17164637808 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from cb91607 to d4081cf Compare September 17, 2025 11:04
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #17795489426 / attempt 1)

@renovate renovate bot changed the title fix(deps): update astro monorepo chore(deps): update astro monorepo Sep 25, 2025
@renovate renovate bot force-pushed the renovate/astro-monorepo branch from d4081cf to 830145f Compare October 21, 2025 10:05
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #18680297313 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 830145f to 8ebbbe8 Compare October 23, 2025 14:00
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #18750921371 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 8ebbbe8 to a8a6604 Compare November 10, 2025 20:00
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #19244449176 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a8a6604 to 7f1735a Compare November 18, 2025 22:26
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #19482501328 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from 7f1735a to f68a16c Compare November 20, 2025 18:43
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #19547765824 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from f68a16c to a677b4c Compare November 26, 2025 17:36
@github-actions
Copy link

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #19712523385 / attempt 1)

@renovate renovate bot force-pushed the renovate/astro-monorepo branch from a677b4c to 009ad82 Compare December 3, 2025 18:10
@github-actions
Copy link

github-actions bot commented Dec 3, 2025

Site preview deployed to: https://block.github.io/ospo/projects-dashboard-preview-pr-146

(execution #19904075028 / attempt 1)

@finn-block finn-block merged commit b1eba04 into main Dec 16, 2025
3 checks passed
@github-project-automation github-project-automation bot moved this from 🆕 New to ✅ Done in Open Source Program Office Dec 16, 2025
@renovate renovate bot deleted the renovate/astro-monorepo branch December 16, 2025 23:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: ✅ Done

Development

Successfully merging this pull request may close these issues.

1 participant