sczerwinski / android-hilt

Extensions for Dagger Hilt
https://czerwinski.it/projects/android-hilt/
Apache License 2.0
47 stars 1 forks source link

Bump the kotlinpoet group with 1 update #307

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps the kotlinpoet group with 1 update: com.squareup:kotlinpoet.

Release notes

Sourced from com.squareup:kotlinpoet's releases.

1.14.2

  • Fix: Fix one more missing API in binary compatibility override in Annotatable.Builder (#1581).

1.14.1

  • Fix: Restore ABI stability for annotatable and documentable builders (#1580).

1.14.0

Thanks to @​Omico, @​drawers, @​RBusarow for contributing to this release.

  • New: Kotlin 1.8.21.

  • New: KSP 1.8.21-1.0.11.

  • New: Enable default methods in Java bytecode (#1561).

  • New: Group Kotlin and Renovate updates together in Renovate (#1562).

  • New: Extract trait interface for annotatable constructs and their builders (#1564).

  • New: Extract trait interface for documentable constructs and their builders (#1571).

  • New: Document the usage of STAR (#1572).

  • New: Add builder for FunSpec which accepts a MemberName (#1574).

  • Fix: Omit public modifier on override function or constructor parameters (#1550).

  • Fix: Correct handling of members in various types (#1558).

  • Fix: Function return types now default to Unit unless explicitly set (#1559).

    Previously the default was null which behaved like Unit for block bodies. When an expression body was produced, however, no return type would be emitted. This meant that the return type was implicit based on the contents of the body.

    With this change, when no return type is specified and an expression body is produced, the return type will be explicitly Unit. Specify the actual return type explicitly to correct the output.

    Old versions:

    val funSpec = FunSpec.builder("foo")
      .addStatement("return 1")
      .build()
    
    public fun foo() = 1
    

    This version, incorrect:

    val funSpec = FunSpec.builder("foo")
      .addStatement("return 1")
      .build()
    
    public fun foo(): Unit = 1 // ❌
    

    This version, correct:

... (truncated)

Changelog

Sourced from com.squareup:kotlinpoet's changelog.

Version 1.14.2

2023-05-30

  • Fix: Fix one more missing API in binary compatibility override in Annotatable.Builder (#1581).

Version 1.14.1

2023-05-29

  • Fix: Restore ABI stability for annotatable and documentable builders (#1580).

Version 1.14.0

2023-05-29

Thanks to [@​Omico][Omico], [@​drawers][drawers], [@​RBusarow][RBusarow] for contributing to this release.

  • New: Kotlin 1.8.21.

  • New: KSP 1.8.21-1.0.11.

  • New: Enable default methods in Java bytecode (#1561).

  • New: Group Kotlin and Renovate updates together in Renovate (#1562).

  • New: Extract trait interface for annotatable constructs and their builders (#1564).

  • New: Extract trait interface for documentable constructs and their builders (#1571).

  • New: Document the usage of STAR (#1572).

  • New: Add builder for FunSpec which accepts a MemberName (#1574).

  • Fix: Omit public modifier on override function or constructor parameters (#1550).

  • Fix: Correct handling of members in various types (#1558).

  • Fix: Function return types now default to Unit unless explicitly set (#1559).

    Previously, when FunSpec didn't have a return type specified and an expression body was produced, no return type would be emitted. However, starting from 1.14.0, KotlinPoet will not add Unit as a return type in such cases. In order to correct the generated output, you are to specify the actual return type of the FunSpec.

    Before 1.14.0, if omitted, no return type is produced:

    val funSpec = FunSpec.builder("foo")
      .addStatement("return 1")
      .build()
    
    public fun foo() = 1
    

    From 1.14.0, the return type defaults to Unit if not otherwise set:

    val funSpec = FunSpec.builder("foo")
      .addStatement("return 1")
      .build()
    

... (truncated)

Commits
  • cfacd26 Prepare for release 1.14.2
  • 5a951ab Update dependency mkdocs-material to v9.1.15
  • 4e182d9 Fix one more missing API in binary compatibility override in Annotatable.Buil...
  • 7985f10 Prepare next development version
  • a60941e Prepare for release 1.14.1
  • 8b2c0fb Restore ABI stability for annotatable and documentable builders (#1580)
  • 60491f2 Prepare next development version
  • a9917e7 Prepare for release 1.14.0
  • 2c3dbb8 Merge pull request #1575 from drawers/fix/1525
  • cf2e019 Update dependency com.google.guava:guava to v32 (#1577)
  • Additional commits viewable in compare view


Dependabot compatibility score

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
sczerwinski commented 1 year ago

@dependabot rebase

github-actions[bot] commented 1 year ago

Unit Test Results

  6 files  ±0    6 suites  ±0   18s :stopwatch: +3s 12 tests ±0  12 :heavy_check_mark: ±0  0 :zzz: ±0  0 :x: ±0  20 runs  ±0  20 :heavy_check_mark: ±0  0 :zzz: ±0  0 :x: ±0 

Results for commit 7d767fd2. ± Comparison against base commit 051fcb67.

github-actions[bot] commented 1 year ago

Connected Test Results

  4 files  ±0    4 suites  ±0   53s :stopwatch: -12s 11 tests ±0  11 :heavy_check_mark: ±0  0 :zzz: ±0  0 :x: ±0  12 runs  ±0  12 :heavy_check_mark: ±0  0 :zzz: ±0  0 :x: ±0 

Results for commit 7d767fd2. ± Comparison against base commit 051fcb67.