Skip to content

fix(deps): update sqldelight to v2.1.0#312

Merged
irgaly merged 1 commit intomainfrom
renovate/sqldelight
Jul 16, 2025
Merged

fix(deps): update sqldelight to v2.1.0#312
irgaly merged 1 commit intomainfrom
renovate/sqldelight

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jul 15, 2025

This PR contains the following updates:

Package Change Age Confidence
app.cash.sqldelight 2.0.1 -> 2.1.0 age confidence
app.cash.sqldelight:native-driver 2.0.1 -> 2.1.0 age confidence
app.cash.sqldelight:sqlite-driver 2.0.1 -> 2.1.0 age confidence
app.cash.sqldelight:android-driver 2.0.1 -> 2.1.0 age confidence

Release Notes

sqldelight/sqldelight (app.cash.sqldelight)

v2.1.0

Compare Source

Added
  • [WASM Driver] Add support for wasmJs to web worker driver (#​5534 by [Ilya Gulya][IlyaGulya])
  • [PostgreSQL Dialect] Support PostgreSql UnNest Array to rows (#​5673 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql TSRANGE/TSTZRANGE support (#​5297 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql Right Full Join (#​5086 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postrgesql extract from temporal types (#​5273 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql array contains operators (#​4933 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql drop constraint (#​5288 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postgresql type casting (#​5089 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql lateral join operator for subquery (#​5122 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postgresql ILIKE operator (#​5330 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql XML type (#​5331 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql AT TIME ZONE (#​5243 by [Griffio][griffio])
  • [PostgreSQL Dialect] Support postgresql order by nulls (#​5199 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add PostgreSQL current date/time function support (#​5226 by [Drew Dobson][drewd])
  • [PostgreSQL Dialect] PostgreSql Regex operators (#​5137 by [Griffio][griffio])
  • [PostgreSQL Dialect] add brin gist (#​5059 by [Griffio][griffio])
  • [MySQL Dialect] Support RENAME INDEX for MySql dialect (#​5212 by [Oren Kislev][orenkislev-faire])
  • [JSON Extension] Add alias to json table function (#​5372 by [Griffio][griffio])
Changed
  • [Compiler] Generated query files return row counts for simple mutators (#​4578 by [Marius Volkhart][MariusV])
  • [Native Driver] Update NativeSqlDatabase.kt to change readonly flag for DELETE, INSERT, and UPDATE statements (#​5680 by [Griffio][griffio])
  • [PostgreSQL Dialect] Change PgInterval to String (#​5403 by [Griffio][griffio])
  • [PostgreSQL Dialect] Support SqlDelight modules to implement PostgreSql extensions (#​5677 by [Griffio][griffio])
Fixed
  • [Compiler] fix: notify queries when executing group statements with result (#​5006 by [Vitor Hugo Schwaab][vitorhugods])
  • [Compiler] Fix SqlDelightModule type resolver (#​5625 by [Griffio][griffio])
  • [Compiler] Fix 5501 insert object escaped column (#​5503 by [Griffio][griffio])
  • [Compiler] Compiler: Improve error message such that path links are clickable with the correct line & char position. (#​5604 by [Niklas Baudy][vanniktech])
  • [Compiler] Fix issue 5298: allow keywords to be used as table names
  • [Compiler] fix named executes and add test
  • [Compiler] Consider foreign key table constraints when sorting initialization statements (#​5325 by [Leon Linhart][TheMrMilchmann])
  • [Compiler] Align error underlines properly when tabs are involved (#​5224 by [Drew Dobson][drewd])
  • [JDBC Driver] Fix memory leak for connectionManager during end of transaction
  • [JDBC Driver] Run SQLite migrations inside transaction as mentioned in documentation (#​5218 by [Lukáš Moravec][morki])
  • [JDBC Driver] Fix leaking connections after transaction commit / rollback (#​5205 by [Lukáš Moravec][morki])
  • [Gradle Plugin] Execute DriverInitializer before GenerateSchemaTask (#​5562 by [Emeka Nwagu][nwagu])
  • [Runtime] Fix crash in LogSqliteDriver when real driver is Async (#​5723 by [Eric Denman][edenman])
  • [Runtime] Fix StringBuilder capacity (#​5192 by [Jan Bína][janbina])
  • [PostgreSQL Dialect] PostgreSql create or replace view (#​5407 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postgresql to_json (#​5606 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql numeric resolver (#​5399 by [Griffio][griffio])
  • [PostgreSQL Dialect] sqlite windows function (#​2799 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql SELECT DISTINCT ON (#​5345 by [Griffio][griffio])
  • [PostgreSQL Dialect] alter table add column if not exists (#​5309 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postgresql async bind parameter (#​5313 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql boolean literals (#​5262 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql window functions (#​5155 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql isNull isNotNull types (#​5173 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSql select distinct (#​5172 by [Griffio][griffio])
  • [Paging Extension] paging refresh initial load fix (#​5615 by [Eva][evant])
  • [Paging Extension] Add MacOS native targets (#​5324 by [Vitor Hugo Schwaab][vitorhugods])
  • [IntelliJ Plugin] K2 Support

v2.0.2

Compare Source

Added
  • [PostgreSQL Dialect] Add PostgreSQL STRING_AGG function (#​4950 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add SET statement to pg dialect (#​4927 by [Bastien de Luca][de-luca])
  • [PostgreSQL Dialect] Add PostgreSql alter column sequence parameters (#​4916 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add postgresql alter column default support for insert statement (#​4912 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add PostgreSql alter sequence and drop sequence (#​4920 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add Postgres Regex function definitions (#​5025 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add grammar for GIN (#​5027 by [Griffio][griffio])
Changed
  • [IDE Plugin] Minimum version of 2023.1 / Android Studio Iguana
  • [Compiler] Allow overriding the type nullability in encapsulatingType (#​4882 by [Eliezer Graber][eygraber])
  • [Compiler] Inline the column names for SELECT *
  • [Gradle Plugin] switch to processIsolation (#​5068 by [Emeka Nwagu][nwagu])
  • [Android Runtime] Increase Android minSDK to 21 (#​5094 by [Philip Wedemann][hfhbd])
  • [Drivers] Expose more JDBC/R2DBC statement methods for dialect authors (#​5098 by [Philip Wedemann][hfhbd])
Fixed
  • [PostgreSQL Dialect] Fix postgresql alter table alter column (#​4868 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4448 missing import for table model (#​4885 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 4932 postgresql default constraint functions (#​4934 by [Griffio][griffio])
  • [PostgreSQL Dialect] fixes 4879 postgresql class-cast error in alter table rename column during migrations (#​4880 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4474 PostgreSql create extension (#​4541 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 5018 PostgreSql add Primary Key not nullable types (#​5020 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 4703 aggregate expressions (#​5071 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 5028 PostgreSql json (#​5030 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 5040 PostgreSql json operators (#​5041 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes json operator binding for 5040 (#​5100 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 5082 tsvector (#​5104 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fixes 5032 column adjacency for PostgreSql UPDATE FROM statement (#​5035 by [Griffio][griffio])
  • [SQLite Dialect] fixes 4897 sqlite alter table rename column (#​4899 by [Griffio][griffio])
  • [IDE Plugin] Fix error handler crash (#​4988 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] BugSnag fails to init in IDEA 2023.3 (by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] PluginException when opening .sq file in IntelliJ via plugin (by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Dont bundle the kotlin lib into the intellij plugin as its already a plugin dependency (#​5126)
  • [IDE Plugin] Use the extensions array instead of stream (#​5127)

Configuration

📅 Schedule: Branch creation - On day 1 of the month, every 3 months ( * * 1 */3 * ) (UTC), 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@irgaly irgaly merged commit 928e9dc into main Jul 16, 2025
6 checks passed
@irgaly irgaly deleted the renovate/sqldelight branch July 16, 2025 02:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant