Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Bumps the production-dependencies group with 17 updates in the / directory:

Package From To
@prisma/adapter-pg 7.0.1 7.3.0
@prisma/client 7.0.1 7.3.0
bullmq 5.64.1 5.67.1
cheerio 1.1.2 1.2.0
metascraper 5.49.5 5.49.19
metascraper-author 5.49.5 5.49.19
metascraper-date 5.49.5 5.49.19
metascraper-description 5.49.5 5.49.19
metascraper-image 5.49.5 5.49.19
metascraper-title 5.49.5 5.49.19
metascraper-url 5.49.5 5.49.19
next 16.0.3 16.1.4
pg 8.16.3 8.17.2
pino 10.1.0 10.3.0
pino-pretty 13.1.2 13.1.3
react 19.2.0 19.2.3
react-dom 19.2.0 19.2.3

Updates @prisma/adapter-pg from 7.0.1 to 7.3.0

Release notes

Sourced from @​prisma/adapter-pg's releases.

7.3.0

Today, we are excited to share the 7.3.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

ORM

  • #28976: Fast and Small Query Compilers We've been working on various performance-related bugs since the initial ORM 7.0 release. With 7.3.0, we're introducing a new compilerBuild option for the client generator block in schema.prisma with two options: fast and small. This allows you to swap the underlying Query Compiler engine based on your selection, one built for speed (with an increase in size), and one built for size (with the trade off for speed). By default, the fast mode is used, but this can be set by the user:
generator client {
  provider = "prisma-client"
  output   = "../src/generated/prisma"
  compilerBuild = "fast" // "fast" | "small"
}

We still have more in progress for performance, but this new compilerBuild option is our first step toward addressing your concerns!

  • #29005: Bypass the Query Compiler for Raw Queries Raw queries ($executeRaw, $queryRaw) can now skip going through the query compiler and query interpreter infrastructure. They can be sent directly to the driver adapter, removing additional overhead.

  • #28965: Update MSSQL to v12.2.0 This community PR updates the @prisma/adapter-mssql to use MSSQL v12.2.0. Thanks Jay-Lokhande!

  • #29001: Pin better-sqlite3 version to avoid SQLite bug An underlying bug in SQLite 3.51.0 has affected the better-sqlite3 adapter. We’ve bumped the version that powers @prisma/better-sqlite3 and have pinned the version to prevent any unexpected issues. If you are using @prisma/better-sqlite3 , please upgrade to v7.3.0.

  • #29002: Revert @map enums to v6.19.0 behavior In the initial release of v7.0, we made a change with Mapped Enums where the generated enum would get its value from the value passed to the @map function. This was a breaking change from v6 that caused issues for many users. We have reverted this change for the time being, as many different diverging approaches have emerged from the community discussion.

  • prisma-engines#5745: Cast BigInt to text in JSON aggregation When using relationJoins with BigInt fields in Prisma 7, JavaScript's JSON.parse loses precision for integers larger than Number.MAX_SAFE_INTEGER (2^53 - 1). This happens because PostgreSQL's JSONB_BUILD_OBJECT returns BigInt values as JSON numbers, which JavaScript cannot represent precisely.

    // Original BigInt ID: 312590077454712834
    // After JSON.parse: 312590077454712830 (corrupted!)
    

    This PR cast BigInt columns to ::text inside JSONB_BUILD_OBJECT calls, similar to how MONEY is already cast to ::numeric.

    -- Before
    JSONB_BUILD_OBJECT('id', "id")
    

    -- After
    JSONB_BUILD_OBJECT('id', "id"::text)

... (truncated)

Commits
  • 531886f fix: fix byte upserts by removing legacy byte array representation (#28913)
  • 0c6db15 fix(adapter-{pg,neon,ppg}): handle 22P02 error in Postgres (#28849)
  • See full diff in compare view

Updates @prisma/client from 7.0.1 to 7.3.0

Release notes

Sourced from @​prisma/client's releases.

7.3.0

Today, we are excited to share the 7.3.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

ORM

  • #28976: Fast and Small Query Compilers We've been working on various performance-related bugs since the initial ORM 7.0 release. With 7.3.0, we're introducing a new compilerBuild option for the client generator block in schema.prisma with two options: fast and small. This allows you to swap the underlying Query Compiler engine based on your selection, one built for speed (with an increase in size), and one built for size (with the trade off for speed). By default, the fast mode is used, but this can be set by the user:
generator client {
  provider = "prisma-client"
  output   = "../src/generated/prisma"
  compilerBuild = "fast" // "fast" | "small"
}

We still have more in progress for performance, but this new compilerBuild option is our first step toward addressing your concerns!

  • #29005: Bypass the Query Compiler for Raw Queries Raw queries ($executeRaw, $queryRaw) can now skip going through the query compiler and query interpreter infrastructure. They can be sent directly to the driver adapter, removing additional overhead.

  • #28965: Update MSSQL to v12.2.0 This community PR updates the @prisma/adapter-mssql to use MSSQL v12.2.0. Thanks Jay-Lokhande!

  • #29001: Pin better-sqlite3 version to avoid SQLite bug An underlying bug in SQLite 3.51.0 has affected the better-sqlite3 adapter. We’ve bumped the version that powers @prisma/better-sqlite3 and have pinned the version to prevent any unexpected issues. If you are using @prisma/better-sqlite3 , please upgrade to v7.3.0.

  • #29002: Revert @map enums to v6.19.0 behavior In the initial release of v7.0, we made a change with Mapped Enums where the generated enum would get its value from the value passed to the @map function. This was a breaking change from v6 that caused issues for many users. We have reverted this change for the time being, as many different diverging approaches have emerged from the community discussion.

  • prisma-engines#5745: Cast BigInt to text in JSON aggregation When using relationJoins with BigInt fields in Prisma 7, JavaScript's JSON.parse loses precision for integers larger than Number.MAX_SAFE_INTEGER (2^53 - 1). This happens because PostgreSQL's JSONB_BUILD_OBJECT returns BigInt values as JSON numbers, which JavaScript cannot represent precisely.

    // Original BigInt ID: 312590077454712834
    // After JSON.parse: 312590077454712830 (corrupted!)
    

    This PR cast BigInt columns to ::text inside JSONB_BUILD_OBJECT calls, similar to how MONEY is already cast to ::numeric.

    -- Before
    JSONB_BUILD_OBJECT('id', "id")
    

    -- After JSONB_BUILD_OBJECT('id', "id"::text)

... (truncated)

Commits
  • b6fd1bd chore(deps): update engines to 7.3.0-16.9d6ad21cbbceab97458517b147a6a09ff43aa...
  • 223b6ea chore: make the interpreter reusable (#29016)
  • 9d44ecc feat: compile raw queries in the client engine (#29005)
  • 272b176 fix: revert "feat(client-generator-ts): [breaking] add support for ma… (#29002)
  • c03d384 fix: pin better sqlite for exists bug (#29001)
  • 8f69196 chore(deps): update engines to 7.3.0-8.aee8f579c2872ad0cedd6fd7e9070704fdb361...
  • 768cd82 fix: fix QC benchmark (#28987)
  • fd479fd feat(qc): fast and small build modes (#28976)
  • a60094a perf: add query compilation and performance benchmarks (#28954)
  • bebccbd feat(cli): customize prisma init based on the JS runtime (Bun vs other) (#2...
  • Additional commits viewable in compare view

Updates bullmq from 5.64.1 to 5.67.1

Release notes

Sourced from bullmq's releases.

v5.67.1

5.67.1 (2026-01-24)

v5.67.0

5.67.0 (2026-01-24)

Features

  • job: add job name and id as telemetry attributes in complete, retry, delay and failed spans (#3707) ref #3692 (6294b36)

v5.66.7

5.66.7 (2026-01-23)

Bug Fixes

  • deps: update dependency ioredis to v5.9.2 (#3713) (87e74b5)

v5.66.6

5.66.6 (2026-01-22)

Performance Improvements

  • job: apply limit when removing jobs by max age (python) (elixir) (#3694) fixes #3672 (a8fc316)

v5.66.5

5.66.5 (2026-01-12)

Bug Fixes

v5.66.4

5.66.4 (2025-12-27)

Bug Fixes

  • flow: remove debounce option from flow producer (#3646) (cc74805)

v5.66.3

5.66.3 (2025-12-26)

Bug Fixes

  • flow: remove deduplication option from flow producer (#3637) (f60c172)

... (truncated)

Commits
  • fa22e84 fix: fix worker connection name on cluster #3340 (#3660)
  • d2f5344 chore(deps): update dependency types-redis to v4.6.0.20241004 (#3635)
  • e39f987 chore(deps): update actions/setup-node digest to 6044e13 (#3710)
  • 29f73b4 chore(deps): bump the npm_and_yarn group across 4 directories with 1 update (...
  • 2eda533 chore(release): 5.67.0 (#3730)
  • 6294b36 feat(job): add job name and id as telemetry attributes in complete, retry, de...
  • a92740f chore(release): 5.66.7 (#3727)
  • 5d4033d chore(deps): bump the npm_and_yarn group across 4 directories with 1 update (...
  • 87e74b5 fix(deps): update dependency ioredis to v5.9.2 (#3713)
  • e993f5a chore(deps): update dependency prettier to v3.8.1 (#3714)
  • Additional commits viewable in compare view

Updates cheerio from 1.1.2 to 1.2.0

Release notes

Sourced from cheerio's releases.

v1.2.0

What's Changed

New Contributors

Full Changelog: cheeriojs/cheerio@v1.1.2...v1.2.0

Commits
  • e3c7aaf 1.2.0
  • 96bfd3e chore(package): Exclude tests from published bundle
  • 08d396c docs(readme): Update Sponsors (#5014)
  • bd9d3dd build(deps-dev): bump eslint-plugin-jsdoc from 62.3.0 to 62.3.1 (#5022)
  • f4c8a58 build(deps): bump unist-util-visit from 5.0.0 to 5.1.0 in /website (#5027)
  • 8fa46d5 build(deps): bump astro from 5.16.12 to 5.16.14 in /website (#5026)
  • 8e132a6 build(deps-dev): bump @​vitest/coverage-v8 from 4.0.17 to 4.0.18 (#5023)
  • 6d31bfc build(deps-dev): bump globals from 17.0.0 to 17.1.0 (#5025)
  • 65aa6c8 build(deps): bump @​docsearch/css from 4.5.0 to 4.5.3 in /website (#5020)
  • 5567e65 build(deps): bump astro from 5.16.11 to 5.16.12 in /website (#5021)
  • Additional commits viewable in compare view

Updates ioredis from 5.8.2 to 5.9.2

Release notes

Sourced from ioredis's releases.

v5.9.2

5.9.2 (2026-01-15)

Bug Fixes

  • cluster: Cluster reconnect sharded subscribers (#2060) (def9804)
  • preserve replica slots on MOVED in pipelines (#2059) (a1c3e9d)

Reverts

v5.9.1

5.9.1 (2026-01-08)

Bug Fixes

  • make client-side blocking timeouts opt-in (#2058) (07ed493)

v5.9.0

5.9.0 (2026-01-05)

Bug Fixes

  • remove unnecessary case-sensitivity when working with commands (#2036) (f33a2c8)

Features

Changelog

Sourced from ioredis's changelog.

5.9.2 (2026-01-15)

Bug Fixes

  • cluster: Cluster reconnect sharded subscribers (#2060) (def9804)
  • preserve replica slots on MOVED in pipelines (#2059) (a1c3e9d)

Reverts

5.9.1 (2026-01-08)

Bug Fixes

  • make client-side blocking timeouts opt-in (#2058) (07ed493)

5.9.0 (2026-01-05)

Bug Fixes

  • remove unnecessary case-sensitivity when working with commands (#2036) (f33a2c8)

Features

Commits

Updates metascraper from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.12

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.11

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

... (truncated)

Changelog

Sourced from metascraper's changelog.

5.49.19 (2026-01-24)

Bug Fixes

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

5.49.16 (2026-01-22)

Bug Fixes

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

5.49.10 (2025-12-23)

Note: Version bump only for package metascraper

5.49.9 (2025-12-23)

Note: Version bump only for package metascraper

5.49.8 (2025-12-23)

... (truncated)

Commits

Updates metascraper-author from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper-author's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.12

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.11

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

... (truncated)

Changelog

Sourced from metascraper-author's changelog.

5.49.19 (2026-01-24)

Bug Fixes

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

5.49.16 (2026-01-22)

Bug Fixes

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

5.49.10 (2025-12-23)

Note: Version bump only for package metascraper

5.49.9 (2025-12-23)

Note: Version bump only for package metascraper

5.49.8 (2025-12-23)

... (truncated)

Commits

Updates metascraper-date from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper-date's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.12

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.11

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

... (truncated)

Changelog

Sourced from metascraper-date's changelog.

5.49.19 (2026-01-24)

Note: Version bump only for package metascraper-date

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper-date

5.49.16 (2026-01-22)

Note: Version bump only for package metascraper-date

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper-date

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper-date

5.49.7 (2025-12-03)

Note: Version bump only for package metascraper-date

Commits

Updates metascraper-description from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper-description's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.12

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.11

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

... (truncated)

Changelog

Sourced from metascraper-description's changelog.

5.49.19 (2026-01-24)

Note: Version bump only for package metascraper-description

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper-description

5.49.16 (2026-01-22)

Note: Version bump only for package metascraper-description

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper-description

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper-description

5.49.7 (2025-12-03)

Note: Version bump only for package metascraper-description

Commits

Updates metascraper-image from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper-image's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.12

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.11

5.49.11 (2025-12-23)

Note: Version bump only for package metascraper

... (truncated)

Changelog

Sourced from metascraper-image's changelog.

5.49.19 (2026-01-24)

Note: Version bump only for package metascraper-image

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper-image

5.49.16 (2026-01-22)

Note: Version bump only for package metascraper-image

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper-image

5.49.12 (2025-12-30)

Note: Version bump only for package metascraper-image

5.49.7 (2025-12-03)

Note: Version bump only for package metascraper-image

Commits

Updates metascraper-title from 5.49.5 to 5.49.19

Release notes

Sourced from metascraper-title's releases.

v5.49.19

5.49.19 (2026-01-24)

Bug Fixes

v5.49.18

5.49.18 (2026-01-23)

Note: Version bump only for package metascraper

v5.49.17

5.49.17 (2026-01-22)

Note: Version bump only for package metascraper

v5.49.16

5.49.16 (2026-01-22)

Bug Fixes

v5.49.15

5.49.15 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.14

5.49.14 (2025-12-30)

Note: Version bump only for package metascraper

v5.49.13

5.49.13 (2025-12-30)

Note: Version bump only for ...

Description has been truncated

…y with 18 updates

Bumps the production-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@prisma/adapter-pg](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-pg) | `7.0.1` | `7.3.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `7.0.1` | `7.3.0` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.64.1` | `5.67.1` |
| [cheerio](https://github.com/cheeriojs/cheerio) | `1.1.2` | `1.2.0` |
| [metascraper](https://github.com/microlinkhq/metascraper) | `5.49.5` | `5.49.19` |
| [metascraper-author](https://github.com/microlinkhq/metascraper) | `5.49.5` | `5.49.19` |
| [metascraper-date](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-date) | `5.49.5` | `5.49.19` |
| [metascraper-description](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-description) | `5.49.5` | `5.49.19` |
| [metascraper-image](https://github.com/microlinkhq/metascraper/tree/HEAD/packages/metascraper-image) | `5.49.5` | `5.49.19` |
| [metascraper-title](https://github.com/microlinkhq/metascraper) | `5.49.5` | `5.49.19` |
| [metascraper-url](https://github.com/microlinkhq/metascraper) | `5.49.5` | `5.49.19` |
| [next](https://github.com/vercel/next.js) | `16.0.3` | `16.1.4` |
| [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.16.3` | `8.17.2` |
| [pino](https://github.com/pinojs/pino) | `10.1.0` | `10.3.0` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `13.1.2` | `13.1.3` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.3` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.3` |



Updates `@prisma/adapter-pg` from 7.0.1 to 7.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.3.0/packages/adapter-pg)

Updates `@prisma/client` from 7.0.1 to 7.3.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.3.0/packages/client)

Updates `bullmq` from 5.64.1 to 5.67.1
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.64.1...v5.67.1)

Updates `cheerio` from 1.1.2 to 1.2.0
- [Release notes](https://github.com/cheeriojs/cheerio/releases)
- [Commits](cheeriojs/cheerio@v1.1.2...v1.2.0)

Updates `ioredis` from 5.8.2 to 5.9.2
- [Release notes](https://github.com/luin/ioredis/releases)
- [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
- [Commits](redis/ioredis@v5.8.2...v5.9.2)

Updates `metascraper` from 5.49.5 to 5.49.19
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.5...v5.49.19)

Updates `metascraper-author` from 5.49.5 to 5.49.19
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.5...v5.49.19)

Updates `metascraper-date` from 5.49.5 to 5.49.19
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/packages/metascraper-date/CHANGELOG.md)
- [Commits](https://github.com/microlinkhq/metascraper/commits/v5.49.19/packages/metascraper-date)

Updates `metascraper-description` from 5.49.5 to 5.49.19
- [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.49.19/packages/metascraper-description)

Updates `metascraper-image` from 5.49.5 to 5.49.19
- [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.49.19/packages/metascraper-image)

Updates `metascraper-title` from 5.49.5 to 5.49.19
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.5...v5.49.19)

Updates `metascraper-url` from 5.49.5 to 5.49.19
- [Release notes](https://github.com/microlinkhq/metascraper/releases)
- [Changelog](https://github.com/microlinkhq/metascraper/blob/master/CHANGELOG.md)
- [Commits](microlinkhq/metascraper@v5.49.5...v5.49.19)

Updates `next` from 16.0.3 to 16.1.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.0.3...v16.1.4)

Updates `pg` from 8.16.3 to 8.17.2
- [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianc/node-postgres/commits/pg@8.17.2/packages/pg)

Updates `pino` from 10.1.0 to 10.3.0
- [Release notes](https://github.com/pinojs/pino/releases)
- [Commits](pinojs/pino@v10.1.0...v10.3.0)

Updates `pino-pretty` from 13.1.2 to 13.1.3
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v13.1.2...v13.1.3)

Updates `react` from 19.2.0 to 19.2.3
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.3/packages/react)

Updates `react-dom` from 19.2.0 to 19.2.3
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.3/packages/react-dom)

---
updated-dependencies:
- dependency-name: "@prisma/adapter-pg"
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@prisma/client"
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: bullmq
  dependency-version: 5.67.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: cheerio
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ioredis
  dependency-version: 5.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: metascraper
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-author
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-date
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-description
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-image
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-title
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: metascraper-url
  dependency-version: 5.49.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: next
  dependency-version: 16.1.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pg
  dependency-version: 8.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: pino-pretty
  dependency-version: 13.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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 Jan 26, 2026
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