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

Update sqldelight to v2.0.2 #642

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update sqldelight to v2.0.2 #642

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 18, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
app.cash.sqldelight 2.0.0 -> 2.0.2 age adoption passing confidence
app.cash.sqldelight:coroutines-extensions 2.0.0 -> 2.0.2 age adoption passing confidence
app.cash.sqldelight:native-driver 2.0.0 -> 2.0.2 age adoption passing confidence
app.cash.sqldelight:android-driver 2.0.0 -> 2.0.2 age adoption passing confidence

Release Notes

cashapp/sqldelight (app.cash.sqldelight)

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)

v2.0.1

Compare Source

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])

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/sqldelight branch 23 times, most recently from 14ec00d to 003bf81 Compare April 23, 2024 22:58
@renovate renovate bot force-pushed the renovate/sqldelight branch 6 times, most recently from 5763e1f to c36cd37 Compare May 2, 2024 06:03
@renovate renovate bot force-pushed the renovate/sqldelight branch 5 times, most recently from ad4fd5d to 43f3f8c Compare May 11, 2024 01:44
@renovate renovate bot force-pushed the renovate/sqldelight branch 12 times, most recently from 2e3c529 to 98c66ac Compare May 21, 2024 13:11
@renovate renovate bot force-pushed the renovate/sqldelight branch 6 times, most recently from 729708e to 9951afd Compare May 29, 2024 20:08
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.

None yet

0 participants