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.0 #291

Merged
merged 1 commit into from
Jul 30, 2023
Merged

Update sqlDelight to v2.0.0 #291

merged 1 commit into from
Jul 30, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 30, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

cashapp/sqldelight (app.cash.sqldelight)

v2.0.0

Compare Source

Added
  • [MySQL Dialect] MySQL: support timestamp/bigint in IF expression (#​4329 by [Mike Gershunovsky][shellderp])
  • [MySQL Dialect] MySQL: Add now (#​4431 by [Philip Wedemann][hfhbd])
  • [Web Driver] Enable NPM package publishing (#​4364)
  • [IDE Plugin] Allow users to show the stacktrace when the gradle tooling connect fails (#​4383)
Changed
  • [Sqlite Driver] Simplify using schema migrations for JdbcSqliteDriver (#​3737 by [Lukáš Moravec][morki])
  • [R2DBC Driver] Real async R2DBC cursor (#​4387 by [Philip Wedemann][hfhbd])
Fixed
  • [IDE Plugin] Dont instantiate the database project service until needed (#​4382)
  • [IDE Plugin] Handle process cancellation during find usages (#​4340)
  • [IDE Plugin] Fix IDE generation of async code (#​4406)
  • [IDE Plugin] Move assembly of the package structure to be one-time computed and off the EDT (#​4417)
  • [IDE Plugin] Use the correct stub index key for kotlin type resolution on 2023.2 (#​4416)
  • [IDE Plugin] Wait for the index to be ready before performing a search (#​4419)
  • [IDE Plugin] Dont perform a goto if the index is unavailable (#​4420)
  • [Compiler] Fix result expression for grouped statements (#​4378)
  • [Compiler] Don't use virtual table as interface type (#​4427 by [Philip Wedemann][hfhbd])

v2.0.0-rc02

Compare Source

Added
  • [MySQL Dialect] support lowercase date types and min and max on date types (#​4243 by [Mike Gershunovsky][shellderp])
  • [MySQL Dialect] support mysql types for binary expr and sum (#​4254 by [Mike Gershunovsky][shellderp])
  • [MySQL Dialect] support unsigned ints without display width (#​4306 by [Mike Gershunovsky][shellderp])
  • [MySQL Dialect] Support LOCK IN SHARED MODE
  • [PostgreSQL Dialect] Add boolean and Timestamp to min max (#​4245 by [Griffio][griffio])
  • [PostgreSQL Dialect] Postgres: Add window function support (#​4283 by [Philip Wedemann][hfhbd])
  • [Runtime] Add linuxArm64, androidNative and watchosDeviceArm targets to runtime (#​4258 by [Philip Wedemann][hfhbd])
  • [Paging Extension] Add linux and mingw x64 target to the paging extension (#​4280 by [Cedric Hippmann][chippman])
Changed
  • [Gradle Plugin] Add automatic dialect support for Android API 34 (#​4251)
  • [Paging Extension] Add support for SuspendingTransacter in QueryPagingSource (#​4292 by [Ilya Polenov][daio])
  • [Runtime] Improve addListener api (#​4244 by [Philip Wedemann][hfhbd])
  • [Runtime] Use Long as migration version (#​4297 by [Philip Wedemann][hfhbd])
Fixed
  • [Gradle Plugin] Use stable output path for generated source (#​4269 by [Josh Friend][joshfriend])
  • [Gradle Plugin] Gradle tweaks (#​4222 by [Matthew Haughton][3flex])

v2.0.0-rc01

Compare Source

Added
  • [Paging] Add js browser target to paging extensions (#​3843 by [Sean Proctor][sproctor])
  • [Paging] Add iosSimulatorArm64 target to androidx-paging3 extension (#​4117)
  • [PostgreSQL Dialect] add support and test for gen_random_uuid() (#​3855 by [David Wheeler][davidwheeler123])
  • [PostgreSQL Dialect] Alter table add constraint postgres (#​4116 by [Griffio][griffio])
  • [PostgreSQL Dialect] Alter table add constraint check (#​4120 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add postgreSql character length functions (#​4121 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add postgreSql column default interval (#​4142 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add postgreSql interval column result (#​4152 by [Griffio][griffio])
  • [PostgreSQL Dialect] Add postgreSql Alter Column (#​4165 by [Griffio][griffio])
  • [PostgreSQL Dialect] PostgreSQL: Add date_part (#​4198 by [Philip Wedemann][hfhbd])
  • [MySQL Dialect] Add sql char length functions (#​4134 by [Griffio][griffio])
  • [IDE Plugin] Add sqldelight directory suggestions (#​3976 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Compact middle packages in project tree (#​3992 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Add join clause completion (#​4086 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Create view intention and live template (#​4074 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Warn about missing WHERE inside DELETE or UPDATE (#​4058 by [Alexander Perfilyev][aperfilyev])
  • [Gradle Plugin] Enable typesafe project accessors (#​4005 by [Philip Wedemann][hfhbd])
Changed
  • [Gradle Plugin] Allow registering DriverInitializer for VerifyMigrationTask with ServiceLoader mechanism (#​3986 by [Alex Doubov][C2H6O])
  • [Gradle Plugin] Create explicit compiler env (#​4079 by [Philip Wedemann][hfhbd])
  • [JS Driver] Split web worker driver into separate artifact
  • [JS Driver] Don't expose JsWorkerSqlCursor (#​3874 by [Philip Wedemann][hfhbd])
  • [JS Driver] Disable publication of the sqljs driver (#​4108)
  • [Runtime] Enforce that synchronous drivers require a synchronous schema initializer (#​4013)
  • [Runtime] Improve async support for Cursors (#​4102)
  • [Runtime] Remove deprecated targets (#​4149 by [Philip Wedemann][hfhbd])
  • [Runtime] Remove support for old MM (#​4148 by [Philip Wedemann][hfhbd])
Fixed
  • [R2DBC Driver] R2DBC: Await closing the driver (#​4139 by [Philip Wedemann][hfhbd])
  • [Compiler] Include PRAGMAs from migrations in database create(SqlDriver) (#​3845 by [Marius Volkhart][MariusV])
  • [Compiler] Fix codegen for RETURNING clause (#​3872 by [Marius Volkhart][MariusV])
  • [Compiler] Dont generate types for virtual tables (#​4015)
  • [Gradle Plugin] Small Gradle plugin QoL improvements (#​3930 by [Zac Sweers][zacsweers])
  • [IDE Plugin] Fix unresolved kotlin types (#​3924 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Fix for expand wildcard intention to work with qualifier (#​3979 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Use available jdk if java home is missing (#​3925 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Fix find usages on package names (#​4010)
  • [IDE Plugin] Dont show auto imports for invalid elements (#​4008)
  • [IDE Plugin] Do not resolve if a dialect is missing (#​4009)
  • [IDE Plugin] Ignore IDE runs of the compiler during an invalidated state (#​4016)
  • [IDE Plugin] Add support for IntelliJ 2023.1 (#​4037 by [Madis Pink][madisp])
  • [IDE Plugin] Rename named argument usage on column rename (#​4027 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Fix add migration popup (#​4105 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Disable SchemaNeedsMigrationInspection in migration files (#​4106 by [Alexander Perfilyev][aperfilyev])
  • [IDE Plugin] Use sql column name for migration generation instead of type name (#​4112 by [Alexander Perfilyev][aperfilyev])

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.

Base automatically changed from develop to main June 24, 2023 14:42
@renovate renovate bot changed the title Update sqlDelight to v2.0.0-rc01 Update sqlDelight to v2.0.0-rc01 - autoclosed Jun 24, 2023
@renovate renovate bot closed this Jun 24, 2023
@renovate renovate bot deleted the renovate/sqldelight branch June 24, 2023 14:42
@renovate renovate bot changed the title Update sqlDelight to v2.0.0-rc01 - autoclosed Update sqlDelight to v2.0.0-rc01 Jun 24, 2023
@renovate renovate bot reopened this Jun 24, 2023
@renovate renovate bot restored the renovate/sqldelight branch June 24, 2023 16:01
@renovate renovate bot changed the base branch from main to develop June 24, 2023 16:02
@renovate renovate bot changed the title Update sqlDelight to v2.0.0-rc01 Update sqlDelight to v2.0.0-rc02 Jun 27, 2023
@renovate renovate bot changed the title Update sqlDelight to v2.0.0-rc02 Update sqlDelight to v2.0.0 Jul 26, 2023
@renovate renovate bot force-pushed the renovate/sqldelight branch 3 times, most recently from 00befd0 to 99b5bf1 Compare July 30, 2023 19:26
@serbelga serbelga merged commit 5e0a6c4 into develop Jul 30, 2023
1 check passed
@renovate renovate bot deleted the renovate/sqldelight branch July 30, 2023 19:52
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

1 participant