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 sqlDelight from 1.5.3 to 1.5.5 #19

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 13, 2023

Bumps sqlDelight from 1.5.3 to 1.5.5.
Updates com.squareup.sqldelight:gradle-plugin from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:gradle-plugin's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:gradle-plugin's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Updates com.squareup.sqldelight:android-driver from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:android-driver's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:android-driver's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Updates com.squareup.sqldelight:sqlite-driver from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:sqlite-driver's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:sqlite-driver's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Updates com.squareup.sqldelight:coroutines-extensions from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:coroutines-extensions's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:coroutines-extensions's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Updates com.squareup.sqldelight:native-driver from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:native-driver's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:native-driver's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Updates com.squareup.sqldelight:runtime from 1.5.3 to 1.5.5

Release notes

Sourced from com.squareup.sqldelight:runtime's releases.

Version 1.5.5 (2023-01-20)

This is a compatibility release for Kotlin 1.8 and IntelliJ 2021+

Version 1.5.4 (2022-10-06)

This is a compatibility update for Kotlin 1.7.20 and AGP 7.3.0

Changelog

Sourced from com.squareup.sqldelight:runtime's changelog.

Change Log

[2.0.0-alpha05] - 2023-01-20

Added

  • [Paging] Multiplatform paging extension (by [Jeff Lockhart][jeffdgr8])
  • [Runtime] Add fun modifier to Listener interface.
  • [SQLite Dialect] Add SQLite 3.33 support (UPDATE FROM) (by [Eliezer Graber][eygraber]))
  • [PostgreSQL Dialect] Support UPDATE FROM in postgresql (by [Eliezer Graber][eygraber]))

Changed

  • [RDBC Driver] Expose the connection (by [Philip Wedemann][hfhbd])
  • [Runtime] Move migration callbacks into main migrate fun
  • [Gradle Plugin] Hide Configurations from downstream projects
  • [Gradle Plugin] Only shade Intellij (by [Philip Wedemann][hfhbd])
  • [Gradle Plugin] Support Kotlin 1.8.0-Beta and add multi version Kotlin test (by [Philip Wedemann][hfhbd])

Fixed

  • [RDBC Driver] Use javaObjectType instead (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Fix primitive null values in bindStatement (by [Philip Wedemann][hfhbd])
  • [RDBC Driver] Support R2DBC 1.0 (by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Postgres: Fix Array without type parameter (by [Philip Wedemann][hfhbd])
  • [IDE Plugin] Bump intellij to 221.6008.13 (by [Philip Wedemann][hfhbd])
  • [Compiler] Resolve recursive origin table from pure views (by [Philip Wedemann][hfhbd])
  • [Compiler] Use value classes from table foreign key clause (by [Philip Wedemann][hfhbd])
  • [Compiler] Fix SelectQueryGenerator to support bind expression without parenthesis (by [Doogie Min][bellatoris])
  • [Compiler] Fix duplicate generation of ${name}Indexes variables when using transactions (by [Andreas Sacher][sachera])

[2.0.0-alpha04] - 2022-10-03

Breaking Changes

  • The Paging 3 extension API has changed to only allow int types for the count.
  • The coroutines extension now requires a dispatcher to be passed in instead of defaulting.
  • Dialect and Driver classes are final, use delegation instead.

Added

  • [HSQL Dialect] Hsql: Support using DEFAULT for generated columns in Insert (#3372 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL: Support using DEFAULT for generated columns in INSERT (#3373 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] Add NOW() to PostgreSQL (#3403 by [Philip Wedemann][hfhbd])
  • [PostgreSQL Dialect] PostgreSQL Add NOT operator (#3504 by [Philip Wedemann][hfhbd])
  • [Paging] Allow passing in CoroutineContext to *QueryPagingSource (#3384)
  • [Gradle Plugin] Add better version catalog support for dialects (#3435)
  • [Native Driver] Add callback to hook into DatabaseConfiguration creation of NativeSqliteDriver (#3512 by [Sven Jacobs][svenjacobs])

Changed

  • [Paging] Add a default dispatcher to the KeyedQueryPagingSource backed QueryPagingSource function (#3385)
  • [Paging] Make OffsetQueryPagingSource only work with Int (#3386)
  • [Async Runtime] Move await* to upper class ExecutableQuery (#3524 by [Philip Wedemann][hfhbd])
  • [Coroutines Extensions] Remove default params to flow extensions (#3489)

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)

Bumps `sqlDelight` from 1.5.3 to 1.5.5.

Updates `com.squareup.sqldelight:gradle-plugin` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

Updates `com.squareup.sqldelight:android-driver` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

Updates `com.squareup.sqldelight:sqlite-driver` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

Updates `com.squareup.sqldelight:coroutines-extensions` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

Updates `com.squareup.sqldelight:native-driver` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

Updates `com.squareup.sqldelight:runtime` from 1.5.3 to 1.5.5
- [Release notes](https://github.com/square/sqldelight/releases)
- [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md)
- [Commits](cashapp/sqldelight@1.5.3...1.5.5)

---
updated-dependencies:
- dependency-name: com.squareup.sqldelight:gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.squareup.sqldelight:android-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.squareup.sqldelight:sqlite-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.squareup.sqldelight:coroutines-extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.squareup.sqldelight:native-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.squareup.sqldelight:runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from seljabali as a code owner March 13, 2023 19:07
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 13, 2023
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 java Pull requests that update Java code
Development

Successfully merging this pull request may close these issues.

None yet

0 participants