Skip to content

chore(deps): bump the minor-and-patch group with 6 updates - #152

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-da2525955e
Open

chore(deps): bump the minor-and-patch group with 6 updates#152
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-da2525955e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 6 updates:

Package From To
@astrojs/preact 6.0.4 6.0.5
@primer/react-brand 0.74.0 0.75.1
astro 7.2.9 7.3.1
framer-motion 13.1.1 13.2.0
@types/node 26.4.0 26.4.1
baseline-browser-mapping 2.11.20 2.11.21

Updates @astrojs/preact from 6.0.4 to 6.0.5

Release notes

Sourced from @​astrojs/preact's releases.

@​astrojs/preact@​6.0.5

Patch Changes

  • Updated dependencies [f8e9458]:
    • @​astrojs/internal-helpers@​0.11.0
Changelog

Sourced from @​astrojs/preact's changelog.

6.0.5

Patch Changes

  • Updated dependencies [f8e9458]:
    • @​astrojs/internal-helpers@​0.11.0
Commits

Updates @primer/react-brand from 0.74.0 to 0.75.1

Release notes

Sourced from @​primer/react-brand's releases.

@​primer/react-brand@​0.75.1

Patch Changes

  • #1466 9582731 Thanks @​rezrah! - Restored missing design tokens and global styles in the compiled UMD CSS bundle.

@​primer/react-brand@​0.75.0

Minor Changes

  • #1453 4dea1ea Thanks @​rezrah! - Updated TextCursorAnimation to use the new typing animation and phased cursor colors.

    Animated text types once by default. Pass initialText to transition between two messages with a type, delete, and retype sequence:

    <TextCursorAnimation animate initialText="Your AI assistant">
      Your AI accelerator
    </TextCursorAnimation>

    ⚠️ --brand-TextCursorAnimation-reveal-progress and --brand-TextCursorAnimation-cursor-progress design tokens are no longer used.

    New tokens:

    • --brand-TextCursorAnimation-cursor-animationDuration
    • --brand-TextCursorAnimation-cursor-deleteColor
    • --brand-TextCursorAnimation-cursor-finalColor
    • --brand-TextCursorAnimation-cursor-color
  • #1402 c676903 Thanks @​danielguillan! - Updated SubdomainNavBar with a gridline visual design, content slots, search APIs, and responsive navigation behavior.

    • Migration note: The opinionated gridline design changes the component's default appearance. After upgrading, manually inspect affected sites, especially existing subdomain sites. If adjustments are needed, override the --brand-SubdomainNavBar-* custom properties through the root className or style props.

    • Added leadingComponent and trailingComponent props for rendering custom content around the navigation links and actions.

    • Added a responsive input-style search trigger that collapses to an icon-only button on smaller viewports, custom placeholder and shortcut labels, opt-in keyboard shortcuts, grouped results, and a labels prop for localizing visible and accessible search text. Pass keyboardShortcut, such as keyboardShortcut="/", to enable a global shortcut.

    • Added a menuLabels prop for localizing the narrow and desktop overflow menu controls.

    • The SubdomainNavBar ref now exposes openSearch() and closeSearch() methods.

    • Improved desktop overflow handling. Overflowed links are removed from keyboard and assistive technology navigation, and focus returns to the More button when its menu closes.

      import * as React from 'react'
      import {
        Button,
        SubdomainNavBar,
        type SubdomainNavBarHandle,
        type SubdomainNavBarSearchLabels,
        type SubdomainNavBarSearchProps,
        type SubdomainNavBarSearchResults,

... (truncated)

Commits

Updates astro from 7.2.9 to 7.3.1

Release notes

Sourced from astro's releases.

astro@7.3.1

Patch Changes

astro@7.3.0

Minor Changes

  • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

  • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

    Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

    import type { LocalImageService } from 'astro';
    const service: LocalImageService = {
    // ...
    async transform(inputBuffer, transform, imageConfig, logger) {
    logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
    return { data: inputBuffer, format: 'png' };
    },
    };

    Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

  • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

    Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

    import type { CacheProvider } from 'astro';
    const provider: CacheProvider = {
    name: 'my-cache',
    async onRequest({ request, url, logger }, next) {
    logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
    return next();
    },
    // ...
    };

    Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

Patch Changes

  • #17818 c0b6581 Thanks @​florian-lefebvre! - Updates Astro's remaining internal warnings and errors to be written through the configured logger instead of directly to the console, when possible

... (truncated)

Changelog

Sourced from astro's changelog.

7.3.1

Patch Changes

7.3.0

Minor Changes

  • #17767 ce7c91f Thanks @​astro-factory! - Adds --ignore-lock flag to astro preview, allowing multiple preview servers to run simultaneously on different ports. This is useful for E2E testing workflows (e.g., Playwright) that need to run several preview servers at once.

  • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds a logger parameter to image services hooks

    Custom image services now receive Astro's runtime logger as an extra argument. Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

    import type { LocalImageService } from 'astro';
    const service: LocalImageService = {
    // ...
    async transform(inputBuffer, transform, imageConfig, logger) {
    logger.warn(Could not optimize &quot;${transform.src}&quot;. Passing it through unchanged.);
    return { data: inputBuffer, format: 'png' };
    },
    };

    Astro's built-in Sharp service now uses this logger for the warnings it emits when it encounters an unexpected or unsupported source format.

  • #17818 c0b6581 Thanks @​florian-lefebvre! - Adds logger to the context object passed to cache providers

    Custom cache providers now receive Astro's runtime logger on the context passed to onRequest(). Messages logged with it are routed through the destination configured in logger and respect your log level, instead of being written straight to the console:

    import type { CacheProvider } from 'astro';
    const provider: CacheProvider = {
    name: 'my-cache',
    async onRequest({ request, url, logger }, next) {
    logger.warn(Skipping cache for ${url.pathname} because the response sets a cookie.);
    return next();
    },
    // ...
    };

    Astro's built-in memoryCache() provider now uses this logger for the warnings it emits when it skips caching a response that sets cookies, and when a background revalidation fails.

Patch Changes

... (truncated)

Commits

Updates framer-motion from 13.1.1 to 13.2.0

Changelog

Sourced from framer-motion's changelog.

[13.2.0] 2026-unreleased

Added

  • animate.addEffect() for registering effects that lets animate drive non-DOM subjects alongside DOM elements.
  • threeEffect (motion/three) supporting Three.js objects, materials, shader uniforms, TSL uniform nodes and more.
  • vgpuEffect (motion/vgpu) supporting shared uniforms, Effect/Draw/Compute bindings ("params.time"), scene nodes, cameras, lights, materials, orbit controls, CSS colors and vector components.
  • createEffect now accepts test, read and step options and exposes bound motion values via effect.get().

Changed

  • Reduced filesize and improved performance of spring.
Commits
  • 0f1c119 v13.2.0
  • f73cbd7 Latest
  • d743b79 Latest
  • ce2719d Add WebGPURenderer TSL demo
  • b800e58 Add TSL uniform node support to Three.js animate
  • d60a956 Merge pull request #3800 from motiondivision/add-uniform-effect
  • a2d3227 Merge pull request #3799 from motiondivision/generator-filesize-optimisations
  • 55c8f8e Remove redundant comment from inertia bounds check
  • 84c2599 Add GPU adapter preview examples
  • 7b0ac88 Create adapter MotionValues lazily
  • Additional commits viewable in compare view

Updates @types/node from 26.4.0 to 26.4.1

Commits

Updates baseline-browser-mapping from 2.11.20 to 2.11.21

Commits
  • 0e5ed80 Patch to 2.11.21 because browser or feature data changed
  • 11da0b6 Browser or feature data changed
  • 69fcc81 Updating static site
  • See full diff 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 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 minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact) | `6.0.4` | `6.0.5` |
| [@primer/react-brand](https://github.com/primer/brand) | `0.74.0` | `0.75.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `7.2.9` | `7.3.1` |
| [framer-motion](https://github.com/motiondivision/motion) | `13.1.1` | `13.2.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.4.0` | `26.4.1` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.11.20` | `2.11.21` |


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

Updates `@primer/react-brand` from 0.74.0 to 0.75.1
- [Release notes](https://github.com/primer/brand/releases)
- [Commits](https://github.com/primer/brand/compare/@primer/react-brand@0.74.0...@primer/react-brand@0.75.1)

Updates `astro` from 7.2.9 to 7.3.1
- [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@7.3.1/packages/astro)

Updates `framer-motion` from 13.1.1 to 13.2.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v13.1.1...v13.2.0)

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

Updates `baseline-browser-mapping` from 2.11.20 to 2.11.21
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.11.20...v2.11.21)

---
updated-dependencies:
- dependency-name: "@astrojs/preact"
  dependency-version: 6.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@primer/react-brand"
  dependency-version: 0.75.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: astro
  dependency-version: 7.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: framer-motion
  dependency-version: 13.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 26.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: baseline-browser-mapping
  dependency-version: 2.11.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor Author

Labels

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

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

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 7, 2026
@dependabot
dependabot Bot requested review from Damovisa and jldeen as code owners September 7, 2026 22:45

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auto-approving Dependabot version-update:semver-minor update for @astrojs/preact, @primer/react-brand, astro, framer-motion, @types/node, baseline-browser-mapping.

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