Skip to content

Bump sqldelight from 2.0.2 to 2.2.1#60

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/sqldelight-2.2.1
Open

Bump sqldelight from 2.0.2 to 2.2.1#60
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/sqldelight-2.2.1

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 17, 2026

Bumps sqldelight from 2.0.2 to 2.2.1.
Updates app.cash.sqldelight:android-driver from 2.0.2 to 2.2.1

Release notes

Sourced from app.cash.sqldelight:android-driver's releases.

2.2.1

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

Version 2.1.0 - 2025-05-16

Codegen Changes

Generated insert/update/delete statements return the number of row changed now, meaning functions that relied on the codegen returning Unit will need to be updated like so:

fun doAnInsert() = db.someQueries.insert()
// changes to
fun doAnInsert() {
db.someQueries.insert()
}

Added

  • [WASM Driver] Add support for wasmJs to web worker driver (#5534 by [Ilya Gulya][IlyaGulya])

... (truncated)

Changelog

Sourced from app.cash.sqldelight:android-driver's changelog.

2.2.1 - 2025-11-13

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

2.2.0 - 2025-11-13

Failed release with partially published artifacts. Use 2.2.1!

2.1.0 - 2025-05-16

Added

... (truncated)

Commits
  • fbfb075 Prepare version 2.2.1
  • 16060fa Publish NPM after artifacts (#6005)
  • 6c0cefc Revert "Temporarily disable NPM publish requirement"
  • b60ff18 Prepare next development version
  • bc997f3 Prepare version 2.2.0
  • e0f98d0 Temporarily disable NPM publish requirement
  • 79b4404 Bump publish plugin
  • 8854424 Prepare next development version
  • ba73eab Prepare version 2.2.0
  • a7b9d6d Update some Gradle properties
  • Additional commits viewable in compare view

Updates app.cash.sqldelight:coroutines-extensions from 2.0.2 to 2.2.1

Release notes

Sourced from app.cash.sqldelight:coroutines-extensions's releases.

2.2.1

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

Version 2.1.0 - 2025-05-16

Codegen Changes

Generated insert/update/delete statements return the number of row changed now, meaning functions that relied on the codegen returning Unit will need to be updated like so:

fun doAnInsert() = db.someQueries.insert()
// changes to
fun doAnInsert() {
db.someQueries.insert()
}

Added

  • [WASM Driver] Add support for wasmJs to web worker driver (#5534 by [Ilya Gulya][IlyaGulya])

... (truncated)

Changelog

Sourced from app.cash.sqldelight:coroutines-extensions's changelog.

2.2.1 - 2025-11-13

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

2.2.0 - 2025-11-13

Failed release with partially published artifacts. Use 2.2.1!

2.1.0 - 2025-05-16

Added

... (truncated)

Commits
  • fbfb075 Prepare version 2.2.1
  • 16060fa Publish NPM after artifacts (#6005)
  • 6c0cefc Revert "Temporarily disable NPM publish requirement"
  • b60ff18 Prepare next development version
  • bc997f3 Prepare version 2.2.0
  • e0f98d0 Temporarily disable NPM publish requirement
  • 79b4404 Bump publish plugin
  • 8854424 Prepare next development version
  • ba73eab Prepare version 2.2.0
  • a7b9d6d Update some Gradle properties
  • Additional commits viewable in compare view

Updates app.cash.sqldelight:jdbc-driver from 2.0.2 to 2.2.1

Release notes

Sourced from app.cash.sqldelight:jdbc-driver's releases.

2.2.1

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

Version 2.1.0 - 2025-05-16

Codegen Changes

Generated insert/update/delete statements return the number of row changed now, meaning functions that relied on the codegen returning Unit will need to be updated like so:

fun doAnInsert() = db.someQueries.insert()
// changes to
fun doAnInsert() {
db.someQueries.insert()
}

Added

  • [WASM Driver] Add support for wasmJs to web worker driver (#5534 by [Ilya Gulya][IlyaGulya])

... (truncated)

Changelog

Sourced from app.cash.sqldelight:jdbc-driver's changelog.

2.2.1 - 2025-11-13

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

2.2.0 - 2025-11-13

Failed release with partially published artifacts. Use 2.2.1!

2.1.0 - 2025-05-16

Added

... (truncated)

Commits
  • fbfb075 Prepare version 2.2.1
  • 16060fa Publish NPM after artifacts (#6005)
  • 6c0cefc Revert "Temporarily disable NPM publish requirement"
  • b60ff18 Prepare next development version
  • bc997f3 Prepare version 2.2.0
  • e0f98d0 Temporarily disable NPM publish requirement
  • 79b4404 Bump publish plugin
  • 8854424 Prepare next development version
  • ba73eab Prepare version 2.2.0
  • a7b9d6d Update some Gradle properties
  • Additional commits viewable in compare view

Updates app.cash.sqldelight:native-driver from 2.0.2 to 2.2.1

Release notes

Sourced from app.cash.sqldelight:native-driver's releases.

2.2.1

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

Version 2.1.0 - 2025-05-16

Codegen Changes

Generated insert/update/delete statements return the number of row changed now, meaning functions that relied on the codegen returning Unit will need to be updated like so:

fun doAnInsert() = db.someQueries.insert()
// changes to
fun doAnInsert() {
db.someQueries.insert()
}

Added

  • [WASM Driver] Add support for wasmJs to web worker driver (#5534 by [Ilya Gulya][IlyaGulya])

... (truncated)

Changelog

Sourced from app.cash.sqldelight:native-driver's changelog.

2.2.1 - 2025-11-13

Added

  • [PostgreSQL Dialect] Fix Postgres numeric/integer/biginteger type mapping (#5994 by @​griffio)
  • [Compiler] Improve the compiler error message to include source file location when a CAST is required (#5979 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON operator path extraction (#5971 by @​griffio)
  • [SQLite Dialect] Add Sqlite 3.35 support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for MATERIALIZED query planner hint using Common Table Expressions (#5961 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres JSON Aggregate FILTER (#5957 by @​griffio)
  • [PostgreSQL Dialect] Add support for Postgres Enums (#5935 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for Postgres Triggers (#5932 by @​griffio)
  • [PostgreSQL Dialect] Add predicate to check whether SQL expression can be parsed as JSON (#5843 by @​griffio)
  • [PostgreSQL Dialect] Add limited support for PostgreSql Comment On statement (#5808 by @​griffio)
  • [MySQL Dialect] Add support for index visibility options (#5785 by @​orenkislev-faire)
  • [PostgreSql Dialect] Add support for TSQUERY data type (#5779 by @​griffio)
  • [Gradle Plugin] Add support for version catalogs when adding modules (#5755 by @​DRSchlaubi)

Changed

Fixed

  • [Compiler] Fix stack overflow when using View containing Common Table Expression (#5928 by @​griffio)
  • [Gradle Plugin] Fix crash when opening SqlDelight tool window to add "New Connection" (#5906 by @​griffio)
  • [IntelliJ Plugin] Avoid threading-related crash in the copy-to-sqlite gutter action (#5901 by @​griffio)
  • [IntelliJ Plugin] Fix for PostgreSql dialect when using schema statements CREATE INDEX and CREATE VIEW (#5772 by @​griffio)
  • [Compiler] Fix FTS stack overflow when referencing columns (#5896 by @​griffio)
  • [Compiler] Fix With Recursive stack overflow (#5892 by @​griffio)
  • [Compiler] Fix Notify for Insert|Update|Delete Returning statements (#5851 by @​griffio)
  • [Compiler] Fix async result type for transaction blocks returning Long (#5836 by @​griffio)
  • [Compiler] Optimize SQL parameter binding from O(n²) to O(n) complexity (#5898 by @​chenf7)
  • [SQLite Dialect] Fix Sqlite 3.18 missing functions (#5759 by @​griffio)

2.2.0 - 2025-11-13

Failed release with partially published artifacts. Use 2.2.1!

2.1.0 - 2025-05-16

Added

... (truncated)

Commits
  • fbfb075 Prepare version 2.2.1
  • 16060fa Publish NPM after artifacts (#6005)
  • 6c0cefc Revert "Temporarily disable NPM publish requirement"
  • b60ff18 Prepare next development version
  • bc997f3 Prepare version 2.2.0

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 17, 2026

Labels

The following labels could not be found: dependencies, security. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot force-pushed the dependabot/gradle/sqldelight-2.2.1 branch from d3bacc6 to ffaed91 Compare February 27, 2026 02:46
Bumps `sqldelight` from 2.0.2 to 2.2.1.

Updates `app.cash.sqldelight:android-driver` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight:coroutines-extensions` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight:jdbc-driver` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight:native-driver` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight:sqlite-driver` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight:web-worker-driver` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

Updates `app.cash.sqldelight` from 2.0.2 to 2.2.1
- [Release notes](https://github.com/sqldelight/sqldelight/releases)
- [Changelog](https://github.com/sqldelight/sqldelight/blob/master/CHANGELOG.md)
- [Commits](sqldelight/sqldelight@2.0.2...2.2.1)

---
updated-dependencies:
- dependency-name: app.cash.sqldelight:android-driver
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight:coroutines-extensions
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight:jdbc-driver
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight:native-driver
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight:sqlite-driver
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight:web-worker-driver
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: app.cash.sqldelight
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/gradle/sqldelight-2.2.1 branch from ffaed91 to 8ca6e57 Compare February 28, 2026 20:20
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.

0 participants