Skip to content

Conversation

@dependabot-preview
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jan 31, 2020

Bumps libraryVersion.dagger from 2.18 to 2.26.
Updates dagger from 2.18 to 2.26

Release notes

Sourced from dagger's releases.

Dagger 2.26

What's new

  1. Fix #1700: Remove usages of non-Android Guava APIs. (0925e8f7)
  2. Fix #1720: Fix incremental dagger-android-processor in kapt when using dagger.android.experimentalUseStringKeys. (6a0ce588)
  3. Fix #1721: Migrate dagger-android to AndroidX. (f45213ea)
  4. Better support for binding declarations within Kotlin companion objects of @Module annotated classes. (8190c7c1)

Known breaking changes

Companion object modules are no longer allowed on Component#modules list (8190c7c1)

It is now an error to add an @Module annotated companion object class to Component#modules (or Subcomponent#modules) list. Instead, only the outer class should be added to the module list.

// Only add this class to the Component#modules list.
@Module
abstract class FooModule {
  @Binds abstract fun bindFoo(impl: FooImpl): Foo
// @Module is no longer needed here!
companion object {
// @JvmStatic is no longer needed here!
@Provides fun provideBar(): Bar = Bar()
}
}

Note: For backwards compatibility, we still allow @Module on the companion object and @JvmStatic on the provides methods. However, @Module on the companion object is now a no-op and all of its attributes (e.g. "includes") will be ignored. In future releases, we will make it an error to use @Module on a companion object.

Dagger Android artifacts now use Androidx (f45213ea)

The following artifacts have been migrated from the support library to AndroidX:

  • com.google.dagger:dagger-android:2.26
  • com.google.dagger:dagger-android-support:2.26

This change may break users who have not already migrated to AndroidX. The fix is to either migrate your app to AndroidX, or switch back to the support library artifacts which are now available at:

  • com.google.dagger:dagger-android-legacy:2.26
  • com.google.dagger:dagger-android-support-legacy:2.26

Dagger 2.25.4

What's new

Bug fixes

  • #1645: Fix memory leak in RequestKinds cache. (2902519e)

Dagger 2.25.3

What's new

... (truncated)
Commits
  • 749d06b 2.26 release
  • fa432da Roll forward of 291056440.
  • e568a92 Shuffling from internal-only change.
  • 94059d5 Use guava "-android" artifacts for "guava_jdk5" deps.
  • 1188ddb Add dependencies for internal-only change.
  • ffbf10c Automated g4 rollback of changelist 291056440.
  • 6a0ce58 Move identifiernamestring to proguard config.
  • f45213e Dagger AndroidX Migration
  • 7f636ca Upgrade Dagger to the latest bazel_common to fix sonatype https issues.
  • dd5c68c Allow private companion object modules if they have no binding methods.
  • Additional commits viewable in compare view

Updates dagger-compiler from 2.18 to 2.26

Release notes

Sourced from dagger-compiler's releases.

Dagger 2.26

What's new

  1. Fix #1700: Remove usages of non-Android Guava APIs. (0925e8f7)
  2. Fix #1720: Fix incremental dagger-android-processor in kapt when using dagger.android.experimentalUseStringKeys. (6a0ce588)
  3. Fix #1721: Migrate dagger-android to AndroidX. (f45213ea)
  4. Better support for binding declarations within Kotlin companion objects of @Module annotated classes. (8190c7c1)

Known breaking changes

Companion object modules are no longer allowed on Component#modules list (8190c7c1)

It is now an error to add an @Module annotated companion object class to Component#modules (or Subcomponent#modules) list. Instead, only the outer class should be added to the module list.

// Only add this class to the Component#modules list.
@Module
abstract class FooModule {
  @Binds abstract fun bindFoo(impl: FooImpl): Foo
// @Module is no longer needed here!
companion object {
// @JvmStatic is no longer needed here!
@Provides fun provideBar(): Bar = Bar()
}
}

Note: For backwards compatibility, we still allow @Module on the companion object and @JvmStatic on the provides methods. However, @Module on the companion object is now a no-op and all of its attributes (e.g. "includes") will be ignored. In future releases, we will make it an error to use @Module on a companion object.

Dagger Android artifacts now use Androidx (f45213ea)

The following artifacts have been migrated from the support library to AndroidX:

  • com.google.dagger:dagger-android:2.26
  • com.google.dagger:dagger-android-support:2.26

This change may break users who have not already migrated to AndroidX. The fix is to either migrate your app to AndroidX, or switch back to the support library artifacts which are now available at:

  • com.google.dagger:dagger-android-legacy:2.26
  • com.google.dagger:dagger-android-support-legacy:2.26

Dagger 2.25.4

What's new

Bug fixes

  • #1645: Fix memory leak in RequestKinds cache. (2902519e)

Dagger 2.25.3

What's new

... (truncated)
Commits
  • 749d06b 2.26 release
  • fa432da Roll forward of 291056440.
  • e568a92 Shuffling from internal-only change.
  • 94059d5 Use guava "-android" artifacts for "guava_jdk5" deps.
  • 1188ddb Add dependencies for internal-only change.
  • ffbf10c Automated g4 rollback of changelist 291056440.
  • 6a0ce58 Move identifiernamestring to proguard config.
  • f45213e Dagger AndroidX Migration
  • 7f636ca Upgrade Dagger to the latest bazel_common to fix sonatype https issues.
  • dd5c68c Allow private companion object modules if they have no binding methods.
  • Additional commits viewable in compare view

Updates dagger-android-support from 2.18 to 2.26

Release notes

Sourced from dagger-android-support's releases.

Dagger 2.26

What's new

  1. Fix #1700: Remove usages of non-Android Guava APIs. (0925e8f7)
  2. Fix #1720: Fix incremental dagger-android-processor in kapt when using dagger.android.experimentalUseStringKeys. (6a0ce588)
  3. Fix #1721: Migrate dagger-android to AndroidX. (f45213ea)
  4. Better support for binding declarations within Kotlin companion objects of @Module annotated classes. (8190c7c1)

Known breaking changes

Companion object modules are no longer allowed on Component#modules list (8190c7c1)

It is now an error to add an @Module annotated companion object class to Component#modules (or Subcomponent#modules) list. Instead, only the outer class should be added to the module list.

// Only add this class to the Component#modules list.
@Module
abstract class FooModule {
  @Binds abstract fun bindFoo(impl: FooImpl): Foo
// @Module is no longer needed here!
companion object {
// @JvmStatic is no longer needed here!
@Provides fun provideBar(): Bar = Bar()
}
}

Note: For backwards compatibility, we still allow @Module on the companion object and @JvmStatic on the provides methods. However, @Module on the companion object is now a no-op and all of its attributes (e.g. "includes") will be ignored. In future releases, we will make it an error to use @Module on a companion object.

Dagger Android artifacts now use Androidx (f45213ea)

The following artifacts have been migrated from the support library to AndroidX:

  • com.google.dagger:dagger-android:2.26
  • com.google.dagger:dagger-android-support:2.26

This change may break users who have not already migrated to AndroidX. The fix is to either migrate your app to AndroidX, or switch back to the support library artifacts which are now available at:

  • com.google.dagger:dagger-android-legacy:2.26
  • com.google.dagger:dagger-android-support-legacy:2.26

Dagger 2.25.4

What's new

Bug fixes

  • #1645: Fix memory leak in RequestKinds cache. (2902519e)

Dagger 2.25.3

What's new

... (truncated)
Commits
  • 749d06b 2.26 release
  • fa432da Roll forward of 291056440.
  • e568a92 Shuffling from internal-only change.
  • 94059d5 Use guava "-android" artifacts for "guava_jdk5" deps.
  • 1188ddb Add dependencies for internal-only change.
  • ffbf10c Automated g4 rollback of changelist 291056440.
  • 6a0ce58 Move identifiernamestring to proguard config.
  • f45213e Dagger AndroidX Migration
  • 7f636ca Upgrade Dagger to the latest bazel_common to fix sonatype https issues.
  • dd5c68c Allow private companion object modules if they have no binding methods.
  • Additional commits viewable in compare view

Updates dagger-android-processor from 2.18 to 2.26

Release notes

Sourced from dagger-android-processor's releases.

Dagger 2.26

What's new

  1. Fix #1700: Remove usages of non-Android Guava APIs. (0925e8f7)
  2. Fix #1720: Fix incremental dagger-android-processor in kapt when using dagger.android.experimentalUseStringKeys. (6a0ce588)
  3. Fix #1721: Migrate dagger-android to AndroidX. (f45213ea)
  4. Better support for binding declarations within Kotlin companion objects of @Module annotated classes. (8190c7c1)

Known breaking changes

Companion object modules are no longer allowed on Component#modules list (8190c7c1)

It is now an error to add an @Module annotated companion object class to Component#modules (or Subcomponent#modules) list. Instead, only the outer class should be added to the module list.

// Only add this class to the Component#modules list.
@Module
abstract class FooModule {
  @Binds abstract fun bindFoo(impl: FooImpl): Foo
// @Module is no longer needed here!
companion object {
// @JvmStatic is no longer needed here!
@Provides fun provideBar(): Bar = Bar()
}
}

Note: For backwards compatibility, we still allow @Module on the companion object and @JvmStatic on the provides methods. However, @Module on the companion object is now a no-op and all of its attributes (e.g. "includes") will be ignored. In future releases, we will make it an error to use @Module on a companion object.

Dagger Android artifacts now use Androidx (f45213ea)

The following artifacts have been migrated from the support library to AndroidX:

  • com.google.dagger:dagger-android:2.26
  • com.google.dagger:dagger-android-support:2.26

This change may break users who have not already migrated to AndroidX. The fix is to either migrate your app to AndroidX, or switch back to the support library artifacts which are now available at:

  • com.google.dagger:dagger-android-legacy:2.26
  • com.google.dagger:dagger-android-support-legacy:2.26

Dagger 2.25.4

What's new

Bug fixes

  • #1645: Fix memory leak in RequestKinds cache. (2902519e)

Dagger 2.25.3

What's new

... (truncated)
Commits
  • 749d06b 2.26 release
  • fa432da Roll forward of 291056440.
  • e568a92 Shuffling from internal-only change.
  • 94059d5 Use guava "-android" artifacts for "guava_jdk5" deps.
  • 1188ddb Add dependencies for internal-only change.
  • ffbf10c Automated g4 rollback of changelist 291056440.
  • 6a0ce58 Move identifiernamestring to proguard config.
  • f45213e Dagger AndroidX Migration
  • 7f636ca Upgrade Dagger to the latest bazel_common to fix sonatype https issues.
  • dd5c68c Allow private companion object modules if they have no binding methods.
  • Additional commits viewable in compare view

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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jan 31, 2020
Bumps `libraryVersion.dagger` from 2.18 to 2.26.

Updates `dagger` from 2.18 to 2.26
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.18...dagger-2.26)

Updates `dagger-compiler` from 2.18 to 2.26
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.18...dagger-2.26)

Updates `dagger-android-support` from 2.18 to 2.26
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.18...dagger-2.26)

Updates `dagger-android-processor` from 2.18 to 2.26
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.18...dagger-2.26)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/gradle/libraryVersion.dagger-2.26 branch from 8cfb5f0 to 8908ed9 Compare February 5, 2020 11:03
@dependabot-preview
Copy link
Contributor Author

Superseded by #84.

@dependabot-preview dependabot-preview bot deleted the dependabot/gradle/libraryVersion.dagger-2.26 branch May 4, 2020 05:02
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.

1 participant