Skip to content

Bump the build group across 1 directory with 9 updates#401

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/metascraper/build-8607720ffe
Open

Bump the build group across 1 directory with 9 updates#401
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/metascraper/build-8607720ffe

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps the build group with 9 updates in the /metascraper directory:

Package From To
got 14.6.6 15.0.3
jsdom 28.1.0 29.1.1
metascraper 5.49.24 5.50.1
metascraper-description 5.49.24 5.50.1
metascraper-image 5.49.24 5.50.1
metascraper-logo 5.49.24 5.50.1
metascraper-logo-favicon 5.49.24 5.50.1
metascraper-title 5.49.24 5.50.1
metascraper-url 5.49.24 5.50.1

Updates got from 14.6.6 to 15.0.3

Release notes

Sourced from got's releases.

v15.0.3

  • Fix false ReadError on responses without Content-Length 071ea07

sindresorhus/got@v15.0.2...v15.0.3

v15.0.2

  • Fix stream cookie jar completion race b170125

sindresorhus/got@v15.0.1...v15.0.2

v15.0.1

  • Fix init types 20633bc

sindresorhus/got@v15.0.0...v15.0.1

v15.0.0

Breaking changes

  • Require Node.js 22 b933476
  • Remove promise cancel API a06ac6c
  • Remove isStream option c241c6c
    • Use got.stream() directly.
  • Use native FormData global 670b228
  • responseType: 'buffer' returns Uint8Array instead of Buffer 309e36d
    • response.rawBody and promise.buffer() now return a Uint8Array. Buffer is a subclass of Uint8Array, so most code will continue to work, but strict type checks will need updating.
  • strictContentLength defaults to true 08e9dff
    • Got now throws a ContentLengthMismatchError by default if Content-Length doesn't match the actual body size. Set {strictContentLength: false} to restore the old behavior.
  • retry.enforceRetryRules defaults to true 9bc8dfb
    • Custom calculateDelay functions are now only called when a retry is actually allowed by limit, methods, statusCodes, and errorCodes. If your calculateDelay was previously used to override retry eligibility unconditionally, set {retry: {enforceRetryRules: false}}.
  • Piped header copying is now opt-in 8e392f3
    • Got no longer automatically copies headers from a piped stream. Set {copyPipedHeaders: true} to re-enable. Hop-by-hop headers are never copied even when enabled (RFC 9110 §7.6.1).
  • url removed from public options objects 87de8d6
    • The url property is no longer present on the options object passed to hooks. Use response.url or request.requestUrl instead.
  • 300 and 304 responses are no longer auto-followed 5fccaab
    • Per RFC 9110, 304 is a conditional-GET hint, not a redirect, and 300 is only a SHOULD for user agents. Got now returns these responses as-is. Handle them manually if needed.
  • Removed the undocumented named export for Got.
    • Got has always been a default export. The named export was there only for buggy build tools during the ESM migration times.

Improvements

  • Stream decode large text/json bodies incrementally for lower peak memory usage c9a95b1
  • uploadProgress now emits granular per-chunk events for json and form request bodies 13c889d

... (truncated)

Commits

Updates jsdom from 28.1.0 to 29.1.1

Release notes

Sourced from jsdom's releases.

v29.1.1

  • Fixed 'border-radius' computed style serialization. (@​asamuzaK)
  • Fixed computed style computation when using 'background-origin' and 'background-clip' CSS properties. (@​asamuzaK)
  • Significantly optimized initial calls to getComputedStyle(), before the cache warms up. (@​asamuzaK)

v29.1.0

  • Added basic support for the ratio CSS type. (@​asamuzaK)
  • Fixed getComputedStyle() sometimes returning outdated results after CSS was modified. (@​asamuzaK)

v29.0.2

  • Significantly improved and sped up getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such as currentcolor and system colors. (@​asamuzaK)
  • Fixed CSS 'background' and 'border' shorthand parsing. (@​asamuzaK)

v29.0.1

  • Fixed CSS parsing of 'border', 'background', and their sub-shorthands containing keywords or var(). (@​asamuzaK)
  • Fixed getComputedStyle() to return a more functional CSSStyleDeclaration object, including indexed access support, which regressed in v29.0.0.

v29.0.0

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (@​thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.
Commits
  • 9b9ea7e 29.1.1
  • 07efb78 Optimize computed style comparison
  • 5f66329 Fix background-origin/background-clip in background shorthand
  • ad8af77 Fix border shorthand handling
  • 5a3e88e 29.1.0
  • 73db204 Update dependencies and dev dependencies
  • a7168a5 Support ratio CSS unit type
  • 15346e0 Fix style cache invalidation
  • 2a1e2cd 29.0.2
  • 4097d66 Resolve computed CSS values lazily in CSSStyleDeclaration
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for jsdom since your current version.

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates metascraper from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Changelog

Sourced from metascraper's changelog.

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

5.50.0 (2026-03-20)

Features

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Commits

Updates metascraper-description from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper-description's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Changelog

Sourced from metascraper-description's changelog.

5.50.1 (2026-04-14)

Note: Version bump only for package metascraper-description

5.50.0 (2026-03-20)

Note: Version bump only for package metascraper-description

5.49.25 (2026-03-07)

Note: Version bump only for package metascraper-description

Commits

Updates metascraper-image from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper-image's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Changelog

Sourced from metascraper-image's changelog.

5.50.1 (2026-04-14)

Note: Version bump only for package metascraper-image

5.50.0 (2026-03-20)

Note: Version bump only for package metascraper-image

5.49.25 (2026-03-07)

Note: Version bump only for package metascraper-image

Commits

Updates metascraper-logo from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper-logo's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Changelog

Sourced from metascraper-logo's changelog.

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

5.50.0 (2026-03-20)

Note: Version bump only for package metascraper-logo

5.49.25 (2026-03-07)

Note: Version bump only for package metascraper-logo

Commits

Updates metascraper-logo-favicon from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper-logo-favicon's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (2be6d3b)
  • regression (#813) (64aa483)
  • rule error isolation (#801) (5c702f0)
  • tiktok: fallback date parsing when video id is invalid (#807) (f92682a)

Performance Improvements

  • audio,video: replace lodash media scans with native loops (#811) (c175eb4)
  • audio,video: short-circuit iframe probing on first hit (#810) (ac8fc2a)
  • audio: cache iframe fetches and dedupe probing urls (#818) (db184af)
  • helpers: use reference-only html dom memoization (#816) (bb90b1c)
  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
  • media-provider: select best format in linear time (#819) (97587f3)
  • metascraper: fast-path mergeRules in common case (#820) (7dc559a)
  • metascraper: reduce getData allocations (#827) (5c674af)
  • readability: cache html serialization per htmlDom (#823) (a1b10fc)
  • readability: use happy-dom window parser (#822) (0333253)
  • video: share iframe fetch cache across rules (#817) (a54cc73)

Reverts

  • Revert "fix(instagram): avoid stale description cache for date parsing" (0677cd6)
Changelog

Sourced from metascraper-logo-favicon's changelog.

5.50.1 (2026-04-14)

Note: Version bump only for package metascraper-logo-favicon

5.50.0 (2026-03-20)

Note: Version bump only for package metascraper-logo-favicon

5.49.25 (2026-03-07)

Performance Improvements

  • logo-favicon: reduce favicon candidate allocations (#814) (d2f4291)
Commits

Updates metascraper-title from 5.49.24 to 5.50.1

Release notes

Sourced from metascraper-title's releases.

v5.50.1

5.50.1 (2026-04-14)

Bug Fixes

  • security: bump lodash from ~4.17.23 to ~4.18.0 (#833) (e89d9d3), closes #832

v5.50.0

5.50.0 (2026-03-20)

Features

v5.49.25

5.49.25 (2026-03-07)

Bug Fixes

  • helpers: terminate iframe workers after settle (#809) (c7317ac)
  • instagram: avoid stale description cache for date parsing (#804) (31ac6c3)
  • manifest: fallback publisher to name when short_name missing (#803) (0fc8043)
  • media-provider: bound retry loop and add coverage (#800) (

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 13, 2026
Bumps the build group with 9 updates in the /metascraper directory:

| Package | From | To |
| --- | --- | --- |
| [got](https://github.com/sindresorhus/got) | `14.6.6` | `15.0.3` |
| [jsdom](https://github.com/jsdom/jsdom) | `28.1.0` | `29.1.1` |
| [metascraper](https://github.com/microlinkhq/metascraper) | `5.49.24` | `5.50.1` |
| [metascraper-description](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-description) | `5.49.24` | `5.50.1` |
| [metascraper-image](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-image) | `5.49.24` | `5.50.1` |
| [metascraper-logo](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-logo) | `5.49.24` | `5.50.1` |
| [metascraper-logo-favicon](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-logo-favicon) | `5.49.24` | `5.50.1` |
| [metascraper-title](https://github.com/microlinkhq/metascraper) | `5.49.24` | `5.50.1` |
| [metascraper-url](https://github.com/microlinkhq/metascraper) | `5.49.24` | `5.50.1` |



Updates `got` from 14.6.6 to 15.0.3
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v14.6.6...v15.0.3)

Updates `jsdom` from 28.1.0 to 29.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v28.1.0...v29.1.1)

Updates `metascraper` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.24...v5.50.1)

Updates `metascraper-description` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/packages/metascraper-description/CHANGELOG.md)
- [Commits](https://github.com/microlinkhq/metascraper/commits/v5.50.1/packages/metascraper-description)

Updates `metascraper-image` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/packages/metascraper-image/CHANGELOG.md)
- [Commits](https://github.com/microlinkhq/metascraper/commits/v5.50.1/packages/metascraper-image)

Updates `metascraper-logo` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/packages/metascraper-logo/CHANGELOG.md)
- [Commits](https://github.com/microlinkhq/metascraper/commits/v5.50.1/packages/metascraper-logo)

Updates `metascraper-logo-favicon` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/packages/metascraper-logo-favicon/CHANGELOG.md)
- [Commits](https://github.com/microlinkhq/metascraper/commits/v5.50.1/packages/metascraper-logo-favicon)

Updates `metascraper-title` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.24...v5.50.1)

Updates `metascraper-url` from 5.49.24 to 5.50.1
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.24...v5.50.1)

---
updated-dependencies:
- dependency-name: got
  dependency-version: 15.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build
- dependency-name: jsdom
  dependency-version: 29.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build
- dependency-name: metascraper
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-description
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-image
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-logo
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-logo-favicon
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-title
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
- dependency-name: metascraper-url
  dependency-version: 5.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: build
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the build group in /metascraper with 9 updates Bump the build group across 1 directory with 9 updates May 4, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/metascraper/build-8607720ffe branch from f20a257 to d09e578 Compare May 4, 2026 07:13
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.

0 participants