chore(release): version packages#1559
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
8 times, most recently
from
July 18, 2026 13:05
61d90a7 to
f8e45a6
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 18, 2026 13:09
f8e45a6 to
7a85a01
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@prisma/studio-core@0.34.0
Minor Changes
Reset layoutaction clears the remembered layout.Patch Changes
1b72949: Fix white page background around Studio in dark mode. When Studio runs in a full-page shell whose document has no host-authored background, the resolved theme now syncs to the document root (
color-schemeplus Studio's background color), so overscroll areas and the space behind Studio's rounded corners match the active theme. Host pages that style their own<html>/<body>background are left untouched.6415faf: Fix PostgreSQL enum array cell updates failing with "Update Operation failed" by always writing array values as explicit
array[...]expressions with an array-type cast instead of relying on driver-specific array parameter serialization. Also preserve the original error name when errors are deserialized from the Studio BFF transport.3e1c902: # Support libpq SSL parameters in Postgres connection strings
Consume
sslrootcert,sslcert,sslkey,sslpassword, andsslmodeclient-side when building the postgres.js client instead of forwarding them to the server, which rejected connections withunrecognized configuration parameter "sslrootcert". The newcreatePostgresJSConnectionConfighelper in@prisma/studio-core/data/postgresjstranslates a connection string into a stripped connection string plus TLS options (reading certificate files from disk) forpostgres().3f4d84c: Fix grid column widths being reset when columns are pinned or unpinned. Resizing a column and then changing any column's pin state (which round-trips through the URL-backed
pinnedColumnIdsprop) wiped all user column widths and custom column ordering back to defaults. The reset now only happens when the set of columns itself changes.df3f210: Fix MySQL introspection failing on MariaDB. The adapter now detects MariaDB via
select version()and uses a dedicated tables query that returns one row per column and groups the result on the client, avoidingjson_arrayagg(missing before MariaDB 10.5), JSON casts (invalid syntax on MariaDB), and any server-side string aggregation that would be truncated atgroup_concat_max_len. Introspection also parses string-encodedjson_arrayaggpayloads returned by some MySQL transports.f6b4652: Fix
TypeError: crypto.randomUUID is not a functionwhen Studio is served over plain HTTP on a non-localhost host (non-secure context, e.g.http://192.168.x.x:5555). UUID generation now falls back to a UUIDv4 built fromcrypto.getRandomValueswhencrypto.randomUUIDis unavailable.9eeb555: # Show common PostgreSQL type aliases
Display native PostgreSQL catalog type names by their common SQL aliases (
int8->bigint,int4->integer,int2->smallint,float8->double precision,float4->real,bool->boolean,bpchar->char) in the table header, filter column picker, and schema visualizer, including array types (int8[]->bigint[]).6c9e625: Fix broken horizontal scrolling in wide data tables. The column virtualization window now follows scrolling synchronously and only re-renders the grid when the set of mounted columns changes, so scrolling no longer jumps between columns and the last column is reachable. Focused-cell auto-scroll now runs at most once per focus change, so clicking a cell to edit no longer snaps the viewport back and off-screen focus targets no longer fight user scrolling. Also corrects the virtualization window offset when columns are pinned.
cb4f6d5: # Fix SQLite date-like column edits producing NaN
SQLite columns declared as
date,datetime, ortimestampget NUMERIC affinity, so Studio treated their date-string values as numbers and coerced edits toNaN. Date-like declared types are now edited as text and stored as-is, and numeric cell edits, pastes, and filters only coerce input to a number when it actually parses as one — non-numeric text is kept as text, matching SQLite's NUMERIC-affinity semantics, soNaNis never written.3fec72a: Fix saving staged cell edits silently failing for rows loaded beyond the first batch when infinite scroll is enabled. Row update, delete, and insert mutations now target the same rows-collection scope the grid displays instead of the paginated first page.
099b7da: Allow UUID v6–v8 values in column filters.