Skip to content

chore(deps): update pnpm workspace dependencies#1538

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/pnpm-workspace-dependencies
Open

chore(deps): update pnpm workspace dependencies#1538
renovate[bot] wants to merge 1 commit intomainfrom
renovate/pnpm-workspace-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 23, 2026

This PR contains the following updates:

Package Change Age Confidence
@types/pg (source) ^8.18.0^8.20.0 age confidence
diff ^8.0.3^8.0.4 age confidence
dotenv ^17.3.1^17.4.2 age confidence
kysely (source) ^0.28.12^0.28.16 age confidence
mysql2 (source) ^3.20.0^3.22.3 age confidence
react (source) ^19.2.4^19.2.5 age confidence
react-dom (source) ^19.2.4^19.2.5 age confidence
tinyglobby (source) ^0.2.15^0.2.16 age confidence
tsdown (source) ^0.21.4^0.21.10 age confidence

Release Notes

kpdecker/jsdiff (diff)

v8.0.4

Compare Source

  • #​667 - fix another bug in diffWords when used with an Intl.Segmenter. If the text to be diffed included a combining mark after a whitespace character (i.e. roughly speaking, an accented space), diffWords would previously crash. Now this case is handled correctly.
motdotla/dotenv (dotenv)

v17.4.2

Compare Source

v17.4.1

Compare Source

v17.4.0

Compare Source

kysely-org/kysely (kysely)

v0.28.16: 0.28.16

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

0.29 is getting closer btw. 🌶️

🚀 Features

🐞 Bugfixes

  • fix: FilterObject allows any defined value when query context has no tables (TB is never). by @​igalklebanov in #​1791

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

What's Changed

Full Changelog: kysely-org/kysely@v0.28.15...v0.28.16

v0.28.15: 0.28.15

Compare Source

Hey 👋

The introduction of dehydration in JSON functions/helpers caused an unexpected bug for consumers that have some columns defined as '${number}', e.g. '1' | '2' (also when wrapped in ColumnType or similar). Such columns, when participating in a JSON function/helper would dehydrate to number instead of staying as string.

Why dehydrate numeric strings to numbers in the first place? Select types in kysely describe the data after underlying driver's (e.g. pg) data transformation. Some drivers transform numeric columns to strings to be safe. When these columns participate in JSON functions, they lose original column data types - drivers don't know they need to transform to string - they return as-is.

This release introduces a special helper type that wraps your column type definition and tells kysely to NOT dehydrate it in JSON functions/helpers.

import type { NonDehydrateable } from 'kysely'

interface Database {
  my_table: {
    a_column: '1' | '2' | '3', // dehydrates to `number`
    another_column: NonDehydrateable<'1' | '2' | '3'>, // stays `'1' | '2' | '3'`
    column_too: NonDehydrateable<ColumnType<'1' | '2' | '3'>> // stays `'1' | '2' | '3'`
  }
}

🚀 Features

  • feat: add NonDehydrateable<T> to allow opt-out from dehydration in JSON functions/helpers. by @​igalklebanov in #​1697

🐞 Bugfixes

PostgreSQL 🐘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.14...v0.28.15

v0.28.14: 0.28.14

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

MySQL 🐬

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.13...v0.28.14

v0.28.13: 0.28.13

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

  • fix: missing sideEffects: false in root package.json resulting in bigger bundles in various bundlers. by @​igalklebanov in #​1746
  • fix: Insertable allows non-objects when a table has no required columns. by @​igalklebanov in #​1747
PostgreSQL 🐘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.12...v0.28.13

sidorares/node-mysql2 (mysql2)

v3.22.3

Compare Source

Bug Fixes
  • allow resetOnRelease in connection config validation (#​4278) (e72f923)

v3.22.2

Compare Source

Bug Fixes
  • promise: point rejection stacks at caller for promise API (#​4267) (c79a3f3)

v3.22.1

Compare Source

Bug Fixes

v3.22.0

Compare Source

Features
Performance Improvements
  • defer Error object creation to error handlers in promise wrappers (#​4257) (ab131de)

v3.21.1

Compare Source

Bug Fixes

v3.21.0

Compare Source

Features
  • add support for query attributes (#​4223) (d732f78)
  • types: export ExecuteValues and QueryValues from entry point (9fafd6f)
facebook/react (react)

v19.2.5: 19.2.5 (April 8th, 2026)

Compare Source

React Server Components
SuperchupuDev/tinyglobby (tinyglobby)

v0.2.16

Compare Source

Fixed
Changed
  • Overhauled and optimized most internals by Torathion
  • Ignore patterns are no longer compiled twice by webpro
rolldown/tsdown (tsdown)

v0.21.10

Compare Source

   🚀 Features
    View changes on GitHub

v0.21.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.7

Compare Source

   🚀 Features
  • Add module option for attw and publint to allow passing imported modules directly  -  by @​sxzz (31e90)
   🐞 Bug Fixes
  • deps: Add skipNodeModulesBundle dep subpath e2e tests and fix docs  -  by @​sxzz (deff7)
    View changes on GitHub

v0.21.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.

@renovate renovate Bot requested a review from a team as a code owner March 23, 2026 01:10
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Mar 23, 2026

⚠️ No Changeset found

Latest commit: 39b0b61

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Mar 23, 2026

Allure Test Report for this PR:

Allure Report | History

@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 23, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ All tests successful. No failed tests found.

📢 Thoughts on this report? Let us know!

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Mar 23, 2026

create-studiocms

npm i https://pkg.pr.new/create-studiocms@1538

effectify

npm i https://pkg.pr.new/effectify@1538

studiocms

npm i https://pkg.pr.new/studiocms@1538

@studiocms/auth0

npm i https://pkg.pr.new/@studiocms/auth0@1538

@studiocms/blog

npm i https://pkg.pr.new/@studiocms/blog@1538

@studiocms/cloudinary-image-service

npm i https://pkg.pr.new/@studiocms/cloudinary-image-service@1538

@studiocms/devapps

npm i https://pkg.pr.new/@studiocms/devapps@1538

@studiocms/discord

npm i https://pkg.pr.new/@studiocms/discord@1538

@studiocms/github

npm i https://pkg.pr.new/@studiocms/github@1538

@studiocms/google

npm i https://pkg.pr.new/@studiocms/google@1538

@studiocms/html

npm i https://pkg.pr.new/@studiocms/html@1538

@studiocms/markdoc

npm i https://pkg.pr.new/@studiocms/markdoc@1538

@studiocms/markdown-remark

npm i https://pkg.pr.new/@studiocms/markdown-remark@1538

@studiocms/md

npm i https://pkg.pr.new/@studiocms/md@1538

@studiocms/mdx

npm i https://pkg.pr.new/@studiocms/mdx@1538

@studiocms/s3-storage

npm i https://pkg.pr.new/@studiocms/s3-storage@1538

@studiocms/upgrade

npm i https://pkg.pr.new/@studiocms/upgrade@1538

@studiocms/wysiwyg

npm i https://pkg.pr.new/@studiocms/wysiwyg@1538

@withstudiocms/api-spec

npm i https://pkg.pr.new/@withstudiocms/api-spec@1538

@withstudiocms/auth-kit

npm i https://pkg.pr.new/@withstudiocms/auth-kit@1538

@withstudiocms/cli-kit

npm i https://pkg.pr.new/@withstudiocms/cli-kit@1538

@withstudiocms/component-registry

npm i https://pkg.pr.new/@withstudiocms/component-registry@1538

@withstudiocms/config-utils

npm i https://pkg.pr.new/@withstudiocms/config-utils@1538

@withstudiocms/effect

npm i https://pkg.pr.new/@withstudiocms/effect@1538

@withstudiocms/internal_helpers

npm i https://pkg.pr.new/@withstudiocms/internal_helpers@1538

@withstudiocms/kysely

npm i https://pkg.pr.new/@withstudiocms/kysely@1538

@withstudiocms/sdk

npm i https://pkg.pr.new/@withstudiocms/sdk@1538

@withstudiocms/template-lang

npm i https://pkg.pr.new/@withstudiocms/template-lang@1538

commit: 39b0b61

@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch from 6829b9a to e803427 Compare March 23, 2026 12:24
@renovate renovate Bot changed the title chore(deps): update dependency kysely to ^0.28.13 chore(deps): update dependency kysely to ^0.28.14 Mar 23, 2026
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch from e803427 to 54f971d Compare March 24, 2026 01:01
@renovate renovate Bot changed the title chore(deps): update dependency kysely to ^0.28.14 chore(deps): update pnpm workspace dependencies Mar 24, 2026
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch 5 times, most recently from 01601fe to 8482637 Compare March 31, 2026 15:05
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch 3 times, most recently from cec276e to 316697c Compare April 9, 2026 00:01
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch 7 times, most recently from 103199e to 61c37fb Compare April 16, 2026 14:47
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch 4 times, most recently from 0d1bfe5 to 145bdef Compare April 25, 2026 17:57
@renovate renovate Bot force-pushed the renovate/pnpm-workspace-dependencies branch from 145bdef to 39b0b61 Compare April 30, 2026 06:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants