Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sqlDelightVersion from 2.0.0-alpha05 to 2.0.1 #156

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2023

Bumps sqlDelightVersion from 2.0.0-alpha05 to 2.0.1.
Updates app.cash.sqldelight:coroutines-extensions from 2.0.0-alpha05 to 2.0.1

Release notes

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

Version 2.0.1 (2023-12-01)

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])

  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])

  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])

  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)

  • [IDE Plugin] Fixed some compatibility issues with 2023.2

  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])

  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])

  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])

  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])

  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])

  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])

  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])

  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])

  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

... (truncated)

Changelog

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

[2.0.1] - 2023-12-01

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])
  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])
  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])
  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)
  • [IDE Plugin] Fixed some compatibility issues with 2023.2
  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])
  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])
  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])
  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])
  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])
  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])
  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])
  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])
  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

[2.0.0] - 2023-07-26

... (truncated)

Commits

Updates app.cash.sqldelight:android-driver from 2.0.0-alpha05 to 2.0.1

Release notes

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

Version 2.0.1 (2023-12-01)

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])

  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])

  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])

  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)

  • [IDE Plugin] Fixed some compatibility issues with 2023.2

  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])

  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])

  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])

  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])

  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])

  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])

  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])

  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])

  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

... (truncated)

Changelog

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

[2.0.1] - 2023-12-01

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])
  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])
  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])
  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)
  • [IDE Plugin] Fixed some compatibility issues with 2023.2
  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])
  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])
  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])
  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])
  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])
  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])
  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])
  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])
  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

[2.0.0] - 2023-07-26

... (truncated)

Commits

Updates app.cash.sqldelight:native-driver from 2.0.0-alpha05 to 2.0.1

Release notes

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

Version 2.0.1 (2023-12-01)

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])

  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])

  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])

  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)

  • [IDE Plugin] Fixed some compatibility issues with 2023.2

  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])

  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])

  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])

  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])

  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])

  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])

  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])

  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])

  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])

  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

... (truncated)

Changelog

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

[2.0.1] - 2023-12-01

Added

  • [Compiler] Add support multi-column-expr when doing a SELECT (#4453 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL CREATE INDEX CONCURRENTLY (#4531 by [Griffio][griffio])
  • [PostgreSQL Dialect] Allow PostgreSQL CTEs auxiliary statements to reference each other (#4493 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL types for binary expr and sum (#4539 by [Adriel Martinez][Adriel-M])
  • [PostgreSQL Dialect] Add support for PostgreSQL SELECT DISTINCT ON syntax (#4584 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add support for PostgreSQL JSON functions in SELECT statements (#4590 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add generate_series PostgreSQL function (#4717 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add additional Postgres String function definitions (#4752 by [Marius Volkhart][MariusV])
  • [PostgreSQL Dialect] Add DATE PostgreSQL type to min and max aggregate functions (#4816 by [André Danielsson][anddani])
  • [PostgreSQL Dialect] Add PostgreSql temporal types to SqlBinaryExpr (#4657 by [Griifio][griffio])
  • [PostgreSQL Dialect] Add TRUNCATE to postgres dialect (#4817 by [Bastien de Luca][de-luca])
  • [SQLite 3.35 Dialect] Allow multiple ON CONFLICT clauses that are evaluated in order (#4551 by [Griffio][griffio])
  • [JDBC Driver] Add Language annotations for more pleasant SQL editing (#4602 by [Marius Volkhart][MariusV])
  • [Native Driver] Native-driver: add support for linuxArm64 (#4792 by [Philip Wedemann][hfhbd])
  • [Android Driver] Add a windowSizeBytes parameter to AndroidSqliteDriver (#4804 by [Benoit Lubek][BoD])
  • [Paging3 Extension] feat: add initialOffset for OffsetQueryPagingSource (#4802 by [Mohamad Jaara][MohamadJaara])

Changed

  • [Compiler] Prefer Kotlin types where appropriate (#4517 by [Eliezer Graber][eygraber])
  • [Compiler] When doing a value type insert always include the column names (#4864)
  • [PostgreSQL Dialect] Remove experimental status from PostgreSQL dialect (#4443 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Update docs for PostgreSQL types (#4569 by [Marius Volkhart][MariusV])
  • [R2DBC Driver] Optimize performance when handling integer data types in PostgreSQL (#4588 by [Marius Volkhart][MariusV])

Removed

  • [SQLite Javascript Driver] Remove sqljs-driver (#4613, #4670 by [Derek Ellis][dellisd])

Fixed

  • [Compiler] Fix compilation of grouped statements with returns and no parameters (#4699 by [Griffio][griffio])
  • [Compiler] Bind arguments with SqlBinaryExpr (#4604 by [Griffio][griffio])
  • [IDE Plugin] Use IDEA Project JDK if set (#4689 by [Griffio][griffio])
  • [IDE Plugin] Fix "Unknown element type: TYPE_NAME" error in IDEA 2023.2 and greater (#4727)
  • [IDE Plugin] Fixed some compatibility issues with 2023.2
  • [Gradle Plugin] Correct documentation of verifyMigrationTask Gradle task (#4713 by [Josh Friend][joshfriend])
  • [Gradle Plugin] Add Gradle task output message to help users generate a database before verifying a database (#4684 by [Jingwei][jingwei99])
  • [PostgreSQL Dialect] Fix the renaming of PostgreSQL columns multiple times (#4566 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4714 postgresql alter column nullability (#4831 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4837 alter table alter column (#4846 by [Griffio][griffio])
  • [PostgreSQL Dialect] Fix 4501 PostgreSql sequence (#4528 by [Griffio][griffio])
  • [SQLite Dialect] Allow JSON binary operator to be used on a column expression (#4776 by [Eliezer Graber][eygraber])
  • [SQLite Dialect] Update From false positive for multiple columns found with name (#4777 by [Eliezer Graber][eygraber])
  • [Native Driver] Support named in-memory databases (#4662 by [Matthew Nelson][05nelsonm])
  • [Native Driver] Ensure thread safety for query listener collection (#4567 by [Kevin Galligan][kpgalligan])
  • [JDBC Driver] Fix a connection leak in the ConnectionManager (#4589 by [Marius Volkhart][MariusV])
  • [JDBC Driver] Fix JdbcSqliteDriver url parsing when choosing ConnectionManager type (#4656 by [Matthew Nelson][05nelsonm])

[2.0.0] - 2023-07-26

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 4, 2023
Bumps `sqlDelightVersion` from 2.0.0-alpha05 to 2.0.1.

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

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

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

---
updated-dependencies:
- dependency-name: app.cash.sqldelight:coroutines-extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: app.cash.sqldelight:android-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: app.cash.sqldelight:native-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/gradle/sqlDelightVersion-2.0.1 branch from 1054972 to ba06d92 Compare December 11, 2023 08:19
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 8, 2024

Superseded by #166.

@dependabot dependabot bot closed this Apr 8, 2024
@dependabot dependabot bot deleted the dependabot/gradle/sqlDelightVersion-2.0.1 branch April 8, 2024 08:41
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants