Skip to content

build(deps): Bump the patch-minor group with 10 updates#600

Merged
evadecker merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-minor-18de4c468e
Apr 28, 2025
Merged

build(deps): Bump the patch-minor group with 10 updates#600
evadecker merged 1 commit intomainfrom
dependabot/npm_and_yarn/patch-minor-18de4c468e

Conversation

@dependabot
Copy link
Contributor

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

Bumps the patch-minor group with 10 updates:

Package From To
@astrojs/db 0.14.11 0.14.12
@astrojs/mdx 4.2.4 4.2.5
@astrojs/netlify 6.3.0 6.3.1
@astrojs/react 4.2.4 4.2.5
@astrojs/sitemap 3.3.0 3.3.1
astro 5.7.4 5.7.6
astro-expressive-code 0.41.1 0.41.2
framer-motion 12.7.4 12.9.2
@types/node 22.14.1 22.15.3
sass 1.86.3 1.87.0

Updates @astrojs/db from 0.14.11 to 0.14.12

Release notes

Sourced from @​astrojs/db's releases.

@​astrojs/db@​0.14.12

Patch Changes

Changelog

Sourced from @​astrojs/db's changelog.

0.14.12

Patch Changes

Commits

Updates @astrojs/mdx from 4.2.4 to 4.2.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.2.5

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

4.2.5

Patch Changes

Commits

Updates @astrojs/netlify from 6.3.0 to 6.3.1

Release notes

Sourced from @​astrojs/netlify's releases.

@​astrojs/netlify@​6.3.1

Patch Changes

Changelog

Sourced from @​astrojs/netlify's changelog.

6.3.1

Patch Changes

Commits

Updates @astrojs/react from 4.2.4 to 4.2.5

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.2.5

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

4.2.5

Patch Changes

Commits

Updates @astrojs/sitemap from 3.3.0 to 3.3.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.3.1

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.3.1

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/sitemap since your current version.


Updates astro from 5.7.4 to 5.7.6

Release notes

Sourced from astro's releases.

astro@5.7.6

Patch Changes

  • #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be provided when using the experimental fonts API

  • #13680 18e1b97 Thanks @​florian-lefebvre! - Improves the UnsupportedExternalRedirect error message to include more details such as the concerned destination

  • #13703 659904b Thanks @​ascorbic! - Simplifies styles for experimental responsive images

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The generated styles for image layouts are now simpler and easier to override. Previously the responsive image component used CSS to set the size and aspect ratio of the images, but this is no longer needed. Now the styles just include object-fit and object-position for all images, and sets max-width: 100% for constrained images and width: 100% for full-width images.

    This is an implementation change only, and most users will see no change. However, it may affect any custom styles you have added to your responsive images. Please check your rendered images to determine whether any change to your CSS is needed.

    The styles now use the :where() pseudo-class, which has a specificity of 0, meaning that it is easy to override with your own styles. You can now be sure that your own classes will always override the applied styles, as will global styles on img.

    An exception is Tailwind 4, which uses cascade layers, meaning the rules are always lower specificity. Astro supports browsers that do not support cascade layers, so we cannot use this. If you need to override the styles using Tailwind 4, you must use !important classes. Do check if this is needed though: there may be a layout that is more appropriate for your use case.

  • #13703 659904b Thanks @​ascorbic! - Adds warnings about using local font files in the publicDir when the experimental fonts API is enabled.

  • #13703 659904b Thanks @​ascorbic! - Renames experimental responsive image layout option from "responsive" to "constrained"

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The layout option called "responsive" is renamed to "constrained" to better reflect its behavior.

    The previous name was causing confusion, because it is also the name of the feature. The responsive layout option is specifically for images that are displayed at the requested size, unless they do not fit the width of their container, at which point they would be scaled down to fit. They do not get scaled beyond the intrinsic size of the source image, or the width prop if provided.

    It became clear from user feedback that many people (understandably) thought that they needed to set layout to responsive if they wanted to use responsive images. They then struggled with overriding styles to make the image scale up for full-width hero images, for example, when they should have been using full-width layout. Renaming the layout to constrained should make it clearer that this layout is for when you want to constrain the maximum size of the image, but allow it to scale-down.

    Upgrading

    If you set a default image.experimentalLayout in your astro.config.mjs, or set it on a per-image basis using the layout prop, you will need to change all occurences to constrained:

    // astro.config.mjs
    export default {
      image: {
    -    experimentalLayout: 'responsive',
    +    experimentalLayout: 'constrained',
      },
    }
    // src/pages/index.astro
    ---
    import { Image } from 'astro:assets';
    ---

... (truncated)

Changelog

Sourced from astro's changelog.

5.7.6

Patch Changes

  • #13703 659904b Thanks @​ascorbic! - Fixes a bug where empty fallbacks could not be provided when using the experimental fonts API

  • #13680 18e1b97 Thanks @​florian-lefebvre! - Improves the UnsupportedExternalRedirect error message to include more details such as the concerned destination

  • #13703 659904b Thanks @​ascorbic! - Simplifies styles for experimental responsive images

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The generated styles for image layouts are now simpler and easier to override. Previously the responsive image component used CSS to set the size and aspect ratio of the images, but this is no longer needed. Now the styles just include object-fit and object-position for all images, and sets max-width: 100% for constrained images and width: 100% for full-width images.

    This is an implementation change only, and most users will see no change. However, it may affect any custom styles you have added to your responsive images. Please check your rendered images to determine whether any change to your CSS is needed.

    The styles now use the :where() pseudo-class, which has a specificity of 0, meaning that it is easy to override with your own styles. You can now be sure that your own classes will always override the applied styles, as will global styles on img.

    An exception is Tailwind 4, which uses cascade layers, meaning the rules are always lower specificity. Astro supports browsers that do not support cascade layers, so we cannot use this. If you need to override the styles using Tailwind 4, you must use !important classes. Do check if this is needed though: there may be a layout that is more appropriate for your use case.

  • #13703 659904b Thanks @​ascorbic! - Adds warnings about using local font files in the publicDir when the experimental fonts API is enabled.

  • #13703 659904b Thanks @​ascorbic! - Renames experimental responsive image layout option from "responsive" to "constrained"

    ⚠️ BREAKING CHANGE FOR EXPERIMENTAL RESPONSIVE IMAGES ONLY ⚠️

    The layout option called "responsive" is renamed to "constrained" to better reflect its behavior.

    The previous name was causing confusion, because it is also the name of the feature. The responsive layout option is specifically for images that are displayed at the requested size, unless they do not fit the width of their container, at which point they would be scaled down to fit. They do not get scaled beyond the intrinsic size of the source image, or the width prop if provided.

    It became clear from user feedback that many people (understandably) thought that they needed to set layout to responsive if they wanted to use responsive images. They then struggled with overriding styles to make the image scale up for full-width hero images, for example, when they should have been using full-width layout. Renaming the layout to constrained should make it clearer that this layout is for when you want to constrain the maximum size of the image, but allow it to scale-down.

    Upgrading

    If you set a default image.experimentalLayout in your astro.config.mjs, or set it on a per-image basis using the layout prop, you will need to change all occurences to constrained:

    // astro.config.mjs
    export default {
      image: {
    -    experimentalLayout: 'responsive',
    +    experimentalLayout: 'constrained',
      },
    }
    // src/pages/index.astro
    ---
    import { Image } from 'astro:assets';

... (truncated)

Commits

Updates astro-expressive-code from 0.41.1 to 0.41.2

Release notes

Sourced from astro-expressive-code's releases.

astro-expressive-code@0.41.2

Patch Changes

  • 013f07a: Fixes an issue where the deprecated, but still available theme option was not being taken into account during SSR bundle trimming.
  • 013f07a: Improves the error message when the <Code> component is being used on a page without having the Astro integration enabled in the project.
    • rehype-expressive-code@0.41.2
Changelog

Sourced from astro-expressive-code's changelog.

0.41.2

Patch Changes

  • 013f07a: Fixes an issue where the deprecated, but still available theme option was not being taken into account during SSR bundle trimming.
  • 013f07a: Improves the error message when the <Code> component is being used on a page without having the Astro integration enabled in the project.
    • rehype-expressive-code@0.41.2
Commits

Updates framer-motion from 12.7.4 to 12.9.2

Changelog

Sourced from framer-motion's changelog.

[12.9.2] 2025-04-25

Fixed

  • Fixed scroll timeline cache when defining offset.
  • Detect when page scroll is attached to document.body and use this instead of document.documentElement.

[12.9.1] 2025-04-24

Fixed

  • Restarting a finished main thread animation with a negative .speed now works as expected.

[12.9.0] 2025-04-24

Added

  • styleEffect

[12.8.3] 2025-04-24

Changed

  • Animating a MotionValue to its current value will skip creating the animation.

Fixed

  • Ensure .then() fires when .stop() or .cancel() are called. This is undesired but reverts the behaviour to before 12.7.5.

[12.8.2] 2025-04-24

Changed

  • Unifying transform behaviour for SVG and CSS switched from element measurements for transform-box: fill-box.

[12.8.1] 2025-04-23

Fixed

  • Removing errant console.trace on value.set("none").

[12.8.0] 2025-04-23

Added

  • mapValue
  • transformValue

Changed

... (truncated)

Commits

Updates @types/node from 22.14.1 to 22.15.3

Commits

Updates sass from 1.86.3 to 1.87.0

Release notes

Sourced from sass's releases.

Dart Sass 1.87.0

To install Sass 1.87.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking bug fix: When a plain CSS file with a top-level nesting selector & is loaded into a nested Sass context via meta.load-css() or @import, Sass now emits plain CSS nesting rather than incorrectly combining it with the parent selector using a descendant combinator.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.87.0

  • Potentially breaking bug fix: When a plain CSS file with a top-level nesting selector & is loaded into a nested Sass context via meta.load-css() or @import, Sass now emits plain CSS nesting rather than incorrectly combining it with the parent selector using a descendant combinator.
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 patch-minor group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/db](https://github.com/withastro/astro/tree/HEAD/packages/db) | `0.14.11` | `0.14.12` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.2.4` | `4.2.5` |
| [@astrojs/netlify](https://github.com/withastro/astro/tree/HEAD/packages/integrations/netlify) | `6.3.0` | `6.3.1` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `4.2.4` | `4.2.5` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.3.0` | `3.3.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.7.4` | `5.7.6` |
| [astro-expressive-code](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code) | `0.41.1` | `0.41.2` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.7.4` | `12.9.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.14.1` | `22.15.3` |
| [sass](https://github.com/sass/dart-sass) | `1.86.3` | `1.87.0` |


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

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

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

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

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

Updates `astro` from 5.7.4 to 5.7.6
- [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.6/packages/astro)

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

Updates `framer-motion` from 12.7.4 to 12.9.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.7.4...v12.9.2)

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

Updates `sass` from 1.86.3 to 1.87.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.86.3...1.87.0)

---
updated-dependencies:
- dependency-name: "@astrojs/db"
  dependency-version: 0.14.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/mdx"
  dependency-version: 4.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/netlify"
  dependency-version: 6.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/react"
  dependency-version: 4.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: astro
  dependency-version: 5.7.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: astro-expressive-code
  dependency-version: 0.41.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: framer-motion
  dependency-version: 12.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@types/node"
  dependency-version: 22.15.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: sass
  dependency-version: 1.87.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 28, 2025
@netlify
Copy link

netlify bot commented Apr 28, 2025

Deploy Preview for eva-town ready!

Name Link
🔨 Latest commit f153b30
🔍 Latest deploy log https://app.netlify.com/sites/eva-town/deploys/680f4093f754f800089d3a80
😎 Deploy Preview https://deploy-preview-600--eva-town.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 89
Accessibility: 100
Best Practices: 100
SEO: 93
PWA: 70
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

@evadecker evadecker merged commit 6a6762a into main Apr 28, 2025
8 checks passed
@evadecker evadecker deleted the dependabot/npm_and_yarn/patch-minor-18de4c468e branch April 28, 2025 13:36
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 javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant