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 libraryVersion.dagger from 2.18 to 2.28.1 #94

Conversation

dependabot-preview[bot]
Copy link
Contributor

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

Release notes

Sourced from dagger's releases.

Dagger 2.28.1

What's New

New Bazel helper macros for using Dagger. See the updated README for instructions. There are also examples using these macros for Dagger and Hilt (9494f40f).

Bug fixes

Hilt

  • Throws an error when @AndroidEntryPoint base classes use default params in Kotlin. This is a temporary stopgap while support is investigated (2d433491).
  • Fixes #1910: Allow usage of an @AndroidEntryPoint class having an @AndroidEntryPoint base class when using the gradle plugin (3a31bf65).
  • Fixes #1864: Add minSdkVersion to Lint AndroidManifest.xml. This fixes problems of incorrect added permissions to the manifest (85f285c2).

Dagger 2.28

What's New

Hilt Alpha Release

Hilt is a new library that layers on top of Dagger and provides a standard way to incorporate Dagger into an Android application. For more information, see https://dagger.dev/hilt.

Lint checks in Dagger for Kotlin (2597f5a6)

Dagger now includes Lint checks for Kotlin users. The checks cover the following cases:

  • Using a redundant field: site target in injected properties
  • Using a redundant @JvmStatic in object modules.
  • Annotating companion objects with @Module (@Module should just be on the enclosing class)

These checks are included by default for users of dagger-android and hilt-android. For Kotlin only projects the checks are available in a new artifact, com.google.dagger:dagger-lint:<version> and can be applied via the lintChecks configuration in Gradle:

apply plugin: "com.android.lint"
dependencies {
lintChecks "com.google.dagger:dagger-lint:<version>"
}

Bug Fixes

  • Fixes #1812: Fix deploy script for Mac by updating bazel-common containing a fix in the jarjar macro. (11c86ec4)
  • Fixes #1693: Gracefully handle @kotlin.Metadata produced by Kotlin compiler versions earlier than 1.3. (477d052c)
  • Fixes #1805: Add custom lint checks to Dagger (2597f5a6)
  • Fixes #1769: Minor fixes to error messages (8e29da20)

Dagger 2.27

What's New

  1. Fix #955: No longer generate MembersInjectors for types without local injection sites. (20f6442f)
  2. Fix #1414: Allow multiple scoped component dependencies (113c498e)
  3. Fix #1734: Add support constructor with content layout id for AndroidX (22b27266)
  4. Fix #1740: Remove a usage of Guava API not available in the '-android' variant in case of processor classpath conflicts. (bfb87d5b)
  5. Fix #1665: Add an explicit check for member injection of Kotlin object classes rather than crashing. (550d6969)
  6. Fix: #1612: Fix duplicate binding errors when a component dependency has the same method defined multiple times via multiple interfaces (0bb69e91)
Commits

Updates dagger-compiler from 2.18 to 2.28.1

Release notes

Sourced from dagger-compiler's releases.

Dagger 2.28.1

What's New

New Bazel helper macros for using Dagger. See the updated README for instructions. There are also examples using these macros for Dagger and Hilt (9494f40f).

Bug fixes

Hilt

  • Throws an error when @AndroidEntryPoint base classes use default params in Kotlin. This is a temporary stopgap while support is investigated (2d433491).
  • Fixes #1910: Allow usage of an @AndroidEntryPoint class having an @AndroidEntryPoint base class when using the gradle plugin (3a31bf65).
  • Fixes #1864: Add minSdkVersion to Lint AndroidManifest.xml. This fixes problems of incorrect added permissions to the manifest (85f285c2).

Dagger 2.28

What's New

Hilt Alpha Release

Hilt is a new library that layers on top of Dagger and provides a standard way to incorporate Dagger into an Android application. For more information, see https://dagger.dev/hilt.

Lint checks in Dagger for Kotlin (2597f5a6)

Dagger now includes Lint checks for Kotlin users. The checks cover the following cases:

  • Using a redundant field: site target in injected properties
  • Using a redundant @JvmStatic in object modules.
  • Annotating companion objects with @Module (@Module should just be on the enclosing class)

These checks are included by default for users of dagger-android and hilt-android. For Kotlin only projects the checks are available in a new artifact, com.google.dagger:dagger-lint:<version> and can be applied via the lintChecks configuration in Gradle:

apply plugin: "com.android.lint"
dependencies {
lintChecks "com.google.dagger:dagger-lint:<version>"
}

Bug Fixes

  • Fixes #1812: Fix deploy script for Mac by updating bazel-common containing a fix in the jarjar macro. (11c86ec4)
  • Fixes #1693: Gracefully handle @kotlin.Metadata produced by Kotlin compiler versions earlier than 1.3. (477d052c)
  • Fixes #1805: Add custom lint checks to Dagger (2597f5a6)
  • Fixes #1769: Minor fixes to error messages (8e29da20)

Dagger 2.27

What's New

  1. Fix #955: No longer generate MembersInjectors for types without local injection sites. (20f6442f)
  2. Fix #1414: Allow multiple scoped component dependencies (113c498e)
  3. Fix #1734: Add support constructor with content layout id for AndroidX (22b27266)
  4. Fix #1740: Remove a usage of Guava API not available in the '-android' variant in case of processor classpath conflicts. (bfb87d5b)
  5. Fix #1665: Add an explicit check for member injection of Kotlin object classes rather than crashing. (550d6969)
  6. Fix: #1612: Fix duplicate binding errors when a component dependency has the same method defined multiple times via multiple interfaces (0bb69e91)
Commits

Updates dagger-android-support from 2.18 to 2.28.1

Release notes

Sourced from dagger-android-support's releases.

Dagger 2.28.1

What's New

New Bazel helper macros for using Dagger. See the updated README for instructions. There are also examples using these macros for Dagger and Hilt (9494f40f).

Bug fixes

Hilt

  • Throws an error when @AndroidEntryPoint base classes use default params in Kotlin. This is a temporary stopgap while support is investigated (2d433491).
  • Fixes #1910: Allow usage of an @AndroidEntryPoint class having an @AndroidEntryPoint base class when using the gradle plugin (3a31bf65).
  • Fixes #1864: Add minSdkVersion to Lint AndroidManifest.xml. This fixes problems of incorrect added permissions to the manifest (85f285c2).

Dagger 2.28

What's New

Hilt Alpha Release

Hilt is a new library that layers on top of Dagger and provides a standard way to incorporate Dagger into an Android application. For more information, see https://dagger.dev/hilt.

Lint checks in Dagger for Kotlin (2597f5a6)

Dagger now includes Lint checks for Kotlin users. The checks cover the following cases:

  • Using a redundant field: site target in injected properties
  • Using a redundant @JvmStatic in object modules.
  • Annotating companion objects with @Module (@Module should just be on the enclosing class)

These checks are included by default for users of dagger-android and hilt-android. For Kotlin only projects the checks are available in a new artifact, com.google.dagger:dagger-lint:<version> and can be applied via the lintChecks configuration in Gradle:

apply plugin: "com.android.lint"
dependencies {
lintChecks "com.google.dagger:dagger-lint:<version>"
}

Bug Fixes

  • Fixes #1812: Fix deploy script for Mac by updating bazel-common containing a fix in the jarjar macro. (11c86ec4)
  • Fixes #1693: Gracefully handle @kotlin.Metadata produced by Kotlin compiler versions earlier than 1.3. (477d052c)
  • Fixes #1805: Add custom lint checks to Dagger (2597f5a6)
  • Fixes #1769: Minor fixes to error messages (8e29da20)

Dagger 2.27

What's New

  1. Fix #955: No longer generate MembersInjectors for types without local injection sites. (20f6442f)
  2. Fix #1414: Allow multiple scoped component dependencies (113c498e)
  3. Fix #1734: Add support constructor with content layout id for AndroidX (22b27266)
  4. Fix #1740: Remove a usage of Guava API not available in the '-android' variant in case of processor classpath conflicts. (bfb87d5b)
  5. Fix #1665: Add an explicit check for member injection of Kotlin object classes rather than crashing. (550d6969)
  6. Fix: #1612: Fix duplicate binding errors when a component dependency has the same method defined multiple times via multiple interfaces (0bb69e91)
Commits

Updates dagger-android-processor from 2.18 to 2.28.1

Release notes

Sourced from dagger-android-processor's releases.

Dagger 2.28.1

What's New

New Bazel helper macros for using Dagger. See the updated README for instructions. There are also examples using these macros for Dagger and Hilt (9494f40f).

Bug fixes

Hilt

  • Throws an error when @AndroidEntryPoint base classes use default params in Kotlin. This is a temporary stopgap while support is investigated (2d433491).
  • Fixes #1910: Allow usage of an @AndroidEntryPoint class having an @AndroidEntryPoint base class when using the gradle plugin (3a31bf65).
  • Fixes #1864: Add minSdkVersion to Lint AndroidManifest.xml. This fixes problems of incorrect added permissions to the manifest (85f285c2).

Dagger 2.28

What's New

Hilt Alpha Release

Hilt is a new library that layers on top of Dagger and provides a standard way to incorporate Dagger into an Android application. For more information, see https://dagger.dev/hilt.

Lint checks in Dagger for Kotlin (2597f5a6)

Dagger now includes Lint checks for Kotlin users. The checks cover the following cases:

  • Using a redundant field: site target in injected properties
  • Using a redundant @JvmStatic in object modules.
  • Annotating companion objects with @Module (@Module should just be on the enclosing class)

These checks are included by default for users of dagger-android and hilt-android. For Kotlin only projects the checks are available in a new artifact, com.google.dagger:dagger-lint:<version> and can be applied via the lintChecks configuration in Gradle:

apply plugin: "com.android.lint"
dependencies {
lintChecks "com.google.dagger:dagger-lint:<version>"
}

Bug Fixes

  • Fixes #1812: Fix deploy script for Mac by updating bazel-common containing a fix in the jarjar macro. (11c86ec4)
  • Fixes #1693: Gracefully handle @kotlin.Metadata produced by Kotlin compiler versions earlier than 1.3. (477d052c)
  • Fixes #1805: Add custom lint checks to Dagger (2597f5a6)
  • Fixes #1769: Minor fixes to error messages (8e29da20)

Dagger 2.27

What's New

  1. Fix #955: No longer generate MembersInjectors for types without local injection sites. (20f6442f)
  2. Fix #1414: Allow multiple scoped component dependencies (113c498e)
  3. Fix #1734: Add support constructor with content layout id for AndroidX (22b27266)
  4. Fix #1740: Remove a usage of Guava API not available in the '-android' variant in case of processor classpath conflicts. (bfb87d5b)
  5. Fix #1665: Add an explicit check for member injection of Kotlin object classes rather than crashing. (550d6969)
  6. Fix: #1612: Fix duplicate binding errors when a component dependency has the same method defined multiple times via multiple interfaces (0bb69e91)
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)
  • @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)

Bumps `libraryVersion.dagger` from 2.18 to 2.28.1.

Updates `dagger` from 2.18 to 2.28.1
- [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.28.1)

Updates `dagger-compiler` from 2.18 to 2.28.1
- [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.28.1)

Updates `dagger-android-support` from 2.18 to 2.28.1
- [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.28.1)

Updates `dagger-android-processor` from 2.18 to 2.28.1
- [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.28.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jun 23, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #98.

@dependabot-preview dependabot-preview bot deleted the dependabot/gradle/libraryVersion.dagger-2.28.1 branch July 16, 2020 04:54
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.

0 participants