Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.

Bump daggerVersion from 2.14.1 to 2.23.1#5

Open
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/gradle/daggerVersion-2.23.1
Open

Bump daggerVersion from 2.14.1 to 2.23.1#5
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/gradle/daggerVersion-2.23.1

Conversation

@dependabot-preview
Copy link

Bumps daggerVersion from 2.14.1 to 2.23.1.

Updates dagger from 2.14.1 to 2.23.1

Release notes

Sourced from dagger's releases.

Dagger 2.23.1

In addition to the 2.23 release notes, this release fixes support for gradle incremental annotation processing (a91d9624)

Dagger 2.23

  • Validation/strictness
    • Generated components are no longer public unless the component type is public (298dea83)
    • @BindsInstance annotations are now more strictly validated (d3ed46dd)
  • Build performance
    • Generated code is no longer formatted by default. Use -Adagger.formatGeneratedSource=enabled to turn it on. (fcd069cc)
    • General build performance improvements (7e374b58)
  • Android
    • Added dagger.android.HasAndroidInjector, which will soon replace the Has*Injector interfaces. This one interfaces coalesces the others and should be functionally equivalent. (8f015262)
  • Full Binding Graph Validation
    • Rename -Adagger.moduleBindingValidation to -Adagger.fullBindingGraphValidation. The old name continues to work as an alias. (add5a744)
    • Do full binding graph validation for components and subcomponents, not just modules. (15d20f88)
  • Bug Fixes
    • Fixed an issue where @BindsInstance on a Builder setter method's parameter caused a failure in codegen if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22.1

In addition to the 2.22 release notes, this release fixes an issue where @BindsInstance on a @Component.Builder setter method's parameter caused a failure in code generation if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22

NOTE: A bug in the Dagger compiler was introduced in this release. A fix is available in 2.22.1

  • Add the ability to create @Component.Factory types for components instead of @Component.Builders. An @Component.Factory is stateless and has a single method, returning the creator type, that takes parameters for anything that a Builder could have setters for. (d3408866)
  • @BindsInstance can now be applied to the parameter of a setter method on a builder rather than to the setter method itself, for consistency with factory methods. (60dc2a61)
  • When a single instance of a component builder with no setter for a particular module that Dagger can instantiate is used to instantiate multiple component instances, provide a new instance of that module to each component rather than caching and reusing a single instance of the module for each component. (fa714e9a)
  • Public modules are now allowed to include non-public modules when those included modules do not require an instance: that is, they only have abstract and/or static binding methods. (bfdecadf)
  • Fix @BindsOptionalOf methods to require that they have a different name than any other binding method in the module; this was already true for all other types of binding methods (@Provides, @Binds etc.) but @BindsOptionalOf wasn't being included. (1ea36ecc)
  • Report an error for scopes on @Multibinds methods. This was never supported, but the scope was previously ignored. (9582bc37)
  • Limit the number of requests and entry points reported explicitly for errors. (1d5d8298)
  • SPI: Renamed BindingKind.SUBCOMPONENT_BUILDER to SUBCOMPONENT_CREATOR to reflect the fact that it can be a builder or a factory, and renamed the edge type to SubcomponentCreatorBindingEdge. (65e2209a)
  • Build performance improvements:
    • 82f10d4f
    • c7b0f123
    • 6cb9f6bc
    • c74e5dc2
    • 9b4a0949
    • 6caef06e
    • 39456a4f
    • 9cf7cecf

Dagger 2.21

  • Build performance improvements (174a7a9b)
    • Separately, there may be an increase in build times for opensource users using javac9 or javac10. Neither javac8 or javac11 should be affected. (96fcce89)
  • New validation:
    • Installing a module with scoped bindings that an ancestor component has also installed is now an error. (4695ff51)
    • A warning is now reported if an explicit binding conflicts with an @Inject binding in an ancestor component. This was never intended to be supported but never checked. Adds a flag to control whether that is a warning or an error. (7f5500fb)
    • Installing a @ProducerModule in a @Subcomponent that is already installed in a parent (or earlier ancestor) component is now an error. It is also an error to repeat a @Module that has a binding in @ProductionScope. (68b21537)
... (truncated)
Commits
  • c7d2f2d 2.23.1 release
  • a91d962 Remove simple_jar in favor of the Gradle Incremental Annotation Processor hel...
  • 37ebdd2 Use putAll() calls instead of creating a MapDifference.
  • 5a6be36 Remove references to Google+
  • 072c477 Replace google.github.io/dagger with dagger.dev
  • f36dca4 Make CommandProcessorFactory top-level to avoid introducing users to the some...
  • f9e41bc Refactoring: Extract InjectionSiteFactory from BindingFactory.
  • 304f3c9 Use one missing binding node per-key in AOT.
  • 8c50f2c Make methods that aren't overridden final.
  • 673d34b Refactor BindingMethodValidator to avoid the need to pass around the Validati...
  • Additional commits viewable in compare view

Updates dagger-android from 2.14.1 to 2.23.1

Release notes

Sourced from dagger-android's releases.

Dagger 2.23.1

In addition to the 2.23 release notes, this release fixes support for gradle incremental annotation processing (a91d9624)

Dagger 2.23

  • Validation/strictness
    • Generated components are no longer public unless the component type is public (298dea83)
    • @BindsInstance annotations are now more strictly validated (d3ed46dd)
  • Build performance
    • Generated code is no longer formatted by default. Use -Adagger.formatGeneratedSource=enabled to turn it on. (fcd069cc)
    • General build performance improvements (7e374b58)
  • Android
    • Added dagger.android.HasAndroidInjector, which will soon replace the Has*Injector interfaces. This one interfaces coalesces the others and should be functionally equivalent. (8f015262)
  • Full Binding Graph Validation
    • Rename -Adagger.moduleBindingValidation to -Adagger.fullBindingGraphValidation. The old name continues to work as an alias. (add5a744)
    • Do full binding graph validation for components and subcomponents, not just modules. (15d20f88)
  • Bug Fixes
    • Fixed an issue where @BindsInstance on a Builder setter method's parameter caused a failure in codegen if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22.1

In addition to the 2.22 release notes, this release fixes an issue where @BindsInstance on a @Component.Builder setter method's parameter caused a failure in code generation if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22

NOTE: A bug in the Dagger compiler was introduced in this release. A fix is available in 2.22.1

  • Add the ability to create @Component.Factory types for components instead of @Component.Builders. An @Component.Factory is stateless and has a single method, returning the creator type, that takes parameters for anything that a Builder could have setters for. (d3408866)
  • @BindsInstance can now be applied to the parameter of a setter method on a builder rather than to the setter method itself, for consistency with factory methods. (60dc2a61)
  • When a single instance of a component builder with no setter for a particular module that Dagger can instantiate is used to instantiate multiple component instances, provide a new instance of that module to each component rather than caching and reusing a single instance of the module for each component. (fa714e9a)
  • Public modules are now allowed to include non-public modules when those included modules do not require an instance: that is, they only have abstract and/or static binding methods. (bfdecadf)
  • Fix @BindsOptionalOf methods to require that they have a different name than any other binding method in the module; this was already true for all other types of binding methods (@Provides, @Binds etc.) but @BindsOptionalOf wasn't being included. (1ea36ecc)
  • Report an error for scopes on @Multibinds methods. This was never supported, but the scope was previously ignored. (9582bc37)
  • Limit the number of requests and entry points reported explicitly for errors. (1d5d8298)
  • SPI: Renamed BindingKind.SUBCOMPONENT_BUILDER to SUBCOMPONENT_CREATOR to reflect the fact that it can be a builder or a factory, and renamed the edge type to SubcomponentCreatorBindingEdge. (65e2209a)
  • Build performance improvements:
    • 82f10d4f
    • c7b0f123
    • 6cb9f6bc
    • c74e5dc2
    • 9b4a0949
    • 6caef06e
    • 39456a4f
    • 9cf7cecf

Dagger 2.21

  • Build performance improvements (174a7a9b)
    • Separately, there may be an increase in build times for opensource users using javac9 or javac10. Neither javac8 or javac11 should be affected. (96fcce89)
  • New validation:
    • Installing a module with scoped bindings that an ancestor component has also installed is now an error. (4695ff51)
    • A warning is now reported if an explicit binding conflicts with an @Inject binding in an ancestor component. This was never intended to be supported but never checked. Adds a flag to control whether that is a warning or an error. (7f5500fb)
    • Installing a @ProducerModule in a @Subcomponent that is already installed in a parent (or earlier ancestor) component is now an error. It is also an error to repeat a @Module that has a binding in @ProductionScope. (68b21537)
... (truncated)
Commits
  • c7d2f2d 2.23.1 release
  • a91d962 Remove simple_jar in favor of the Gradle Incremental Annotation Processor hel...
  • 37ebdd2 Use putAll() calls instead of creating a MapDifference.
  • 5a6be36 Remove references to Google+
  • 072c477 Replace google.github.io/dagger with dagger.dev
  • f36dca4 Make CommandProcessorFactory top-level to avoid introducing users to the some...
  • f9e41bc Refactoring: Extract InjectionSiteFactory from BindingFactory.
  • 304f3c9 Use one missing binding node per-key in AOT.
  • 8c50f2c Make methods that aren't overridden final.
  • 673d34b Refactor BindingMethodValidator to avoid the need to pass around the Validati...
  • Additional commits viewable in compare view

Updates dagger-android-support from 2.14.1 to 2.23.1

Release notes

Sourced from dagger-android-support's releases.

Dagger 2.23.1

In addition to the 2.23 release notes, this release fixes support for gradle incremental annotation processing (a91d9624)

Dagger 2.23

  • Validation/strictness
    • Generated components are no longer public unless the component type is public (298dea83)
    • @BindsInstance annotations are now more strictly validated (d3ed46dd)
  • Build performance
    • Generated code is no longer formatted by default. Use -Adagger.formatGeneratedSource=enabled to turn it on. (fcd069cc)
    • General build performance improvements (7e374b58)
  • Android
    • Added dagger.android.HasAndroidInjector, which will soon replace the Has*Injector interfaces. This one interfaces coalesces the others and should be functionally equivalent. (8f015262)
  • Full Binding Graph Validation
    • Rename -Adagger.moduleBindingValidation to -Adagger.fullBindingGraphValidation. The old name continues to work as an alias. (add5a744)
    • Do full binding graph validation for components and subcomponents, not just modules. (15d20f88)
  • Bug Fixes
    • Fixed an issue where @BindsInstance on a Builder setter method's parameter caused a failure in codegen if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22.1

In addition to the 2.22 release notes, this release fixes an issue where @BindsInstance on a @Component.Builder setter method's parameter caused a failure in code generation if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22

NOTE: A bug in the Dagger compiler was introduced in this release. A fix is available in 2.22.1

  • Add the ability to create @Component.Factory types for components instead of @Component.Builders. An @Component.Factory is stateless and has a single method, returning the creator type, that takes parameters for anything that a Builder could have setters for. (d3408866)
  • @BindsInstance can now be applied to the parameter of a setter method on a builder rather than to the setter method itself, for consistency with factory methods. (60dc2a61)
  • When a single instance of a component builder with no setter for a particular module that Dagger can instantiate is used to instantiate multiple component instances, provide a new instance of that module to each component rather than caching and reusing a single instance of the module for each component. (fa714e9a)
  • Public modules are now allowed to include non-public modules when those included modules do not require an instance: that is, they only have abstract and/or static binding methods. (bfdecadf)
  • Fix @BindsOptionalOf methods to require that they have a different name than any other binding method in the module; this was already true for all other types of binding methods (@Provides, @Binds etc.) but @BindsOptionalOf wasn't being included. (1ea36ecc)
  • Report an error for scopes on @Multibinds methods. This was never supported, but the scope was previously ignored. (9582bc37)
  • Limit the number of requests and entry points reported explicitly for errors. (1d5d8298)
  • SPI: Renamed BindingKind.SUBCOMPONENT_BUILDER to SUBCOMPONENT_CREATOR to reflect the fact that it can be a builder or a factory, and renamed the edge type to SubcomponentCreatorBindingEdge. (65e2209a)
  • Build performance improvements:
    • 82f10d4f
    • c7b0f123
    • 6cb9f6bc
    • c74e5dc2
    • 9b4a0949
    • 6caef06e
    • 39456a4f
    • 9cf7cecf

Dagger 2.21

  • Build performance improvements (174a7a9b)
    • Separately, there may be an increase in build times for opensource users using javac9 or javac10. Neither javac8 or javac11 should be affected. (96fcce89)
  • New validation:
    • Installing a module with scoped bindings that an ancestor component has also installed is now an error. (4695ff51)
    • A warning is now reported if an explicit binding conflicts with an @Inject binding in an ancestor component. This was never intended to be supported but never checked. Adds a flag to control whether that is a warning or an error. (7f5500fb)
    • Installing a @ProducerModule in a @Subcomponent that is already installed in a parent (or earlier ancestor) component is now an error. It is also an error to repeat a @Module that has a binding in @ProductionScope. (68b21537)
... (truncated)
Commits
  • c7d2f2d 2.23.1 release
  • a91d962 Remove simple_jar in favor of the Gradle Incremental Annotation Processor hel...
  • 37ebdd2 Use putAll() calls instead of creating a MapDifference.
  • 5a6be36 Remove references to Google+
  • 072c477 Replace google.github.io/dagger with dagger.dev
  • f36dca4 Make CommandProcessorFactory top-level to avoid introducing users to the some...
  • f9e41bc Refactoring: Extract InjectionSiteFactory from BindingFactory.
  • 304f3c9 Use one missing binding node per-key in AOT.
  • 8c50f2c Make methods that aren't overridden final.
  • 673d34b Refactor BindingMethodValidator to avoid the need to pass around the Validati...
  • Additional commits viewable in compare view

Updates dagger-compiler from 2.14.1 to 2.23.1

Release notes

Sourced from dagger-compiler's releases.

Dagger 2.23.1

In addition to the 2.23 release notes, this release fixes support for gradle incremental annotation processing (a91d9624)

Dagger 2.23

  • Validation/strictness
    • Generated components are no longer public unless the component type is public (298dea83)
    • @BindsInstance annotations are now more strictly validated (d3ed46dd)
  • Build performance
    • Generated code is no longer formatted by default. Use -Adagger.formatGeneratedSource=enabled to turn it on. (fcd069cc)
    • General build performance improvements (7e374b58)
  • Android
    • Added dagger.android.HasAndroidInjector, which will soon replace the Has*Injector interfaces. This one interfaces coalesces the others and should be functionally equivalent. (8f015262)
  • Full Binding Graph Validation
    • Rename -Adagger.moduleBindingValidation to -Adagger.fullBindingGraphValidation. The old name continues to work as an alias. (add5a744)
    • Do full binding graph validation for components and subcomponents, not just modules. (15d20f88)
  • Bug Fixes
    • Fixed an issue where @BindsInstance on a Builder setter method's parameter caused a failure in codegen if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22.1

In addition to the 2.22 release notes, this release fixes an issue where @BindsInstance on a @Component.Builder setter method's parameter caused a failure in code generation if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22

NOTE: A bug in the Dagger compiler was introduced in this release. A fix is available in 2.22.1

  • Add the ability to create @Component.Factory types for components instead of @Component.Builders. An @Component.Factory is stateless and has a single method, returning the creator type, that takes parameters for anything that a Builder could have setters for. (d3408866)
  • @BindsInstance can now be applied to the parameter of a setter method on a builder rather than to the setter method itself, for consistency with factory methods. (60dc2a61)
  • When a single instance of a component builder with no setter for a particular module that Dagger can instantiate is used to instantiate multiple component instances, provide a new instance of that module to each component rather than caching and reusing a single instance of the module for each component. (fa714e9a)
  • Public modules are now allowed to include non-public modules when those included modules do not require an instance: that is, they only have abstract and/or static binding methods. (bfdecadf)
  • Fix @BindsOptionalOf methods to require that they have a different name than any other binding method in the module; this was already true for all other types of binding methods (@Provides, @Binds etc.) but @BindsOptionalOf wasn't being included. (1ea36ecc)
  • Report an error for scopes on @Multibinds methods. This was never supported, but the scope was previously ignored. (9582bc37)
  • Limit the number of requests and entry points reported explicitly for errors. (1d5d8298)
  • SPI: Renamed BindingKind.SUBCOMPONENT_BUILDER to SUBCOMPONENT_CREATOR to reflect the fact that it can be a builder or a factory, and renamed the edge type to SubcomponentCreatorBindingEdge. (65e2209a)
  • Build performance improvements:
    • 82f10d4f
    • c7b0f123
    • 6cb9f6bc
    • c74e5dc2
    • 9b4a0949
    • 6caef06e
    • 39456a4f
    • 9cf7cecf

Dagger 2.21

  • Build performance improvements (174a7a9b)
    • Separately, there may be an increase in build times for opensource users using javac9 or javac10. Neither javac8 or javac11 should be affected. (96fcce89)
  • New validation:
    • Installing a module with scoped bindings that an ancestor component has also installed is now an error. (4695ff51)
    • A warning is now reported if an explicit binding conflicts with an @Inject binding in an ancestor component. This was never intended to be supported but never checked. Adds a flag to control whether that is a warning or an error. (7f5500fb)
    • Installing a @ProducerModule in a @Subcomponent that is already installed in a parent (or earlier ancestor) component is now an error. It is also an error to repeat a @Module that has a binding in @ProductionScope. (68b21537)
... (truncated)
Commits
  • c7d2f2d 2.23.1 release
  • a91d962 Remove simple_jar in favor of the Gradle Incremental Annotation Processor hel...
  • 37ebdd2 Use putAll() calls instead of creating a MapDifference.
  • 5a6be36 Remove references to Google+
  • 072c477 Replace google.github.io/dagger with dagger.dev
  • f36dca4 Make CommandProcessorFactory top-level to avoid introducing users to the some...
  • f9e41bc Refactoring: Extract InjectionSiteFactory from BindingFactory.
  • 304f3c9 Use one missing binding node per-key in AOT.
  • 8c50f2c Make methods that aren't overridden final.
  • 673d34b Refactor BindingMethodValidator to avoid the need to pass around the Validati...
  • Additional commits viewable in compare view

Updates dagger-android-processor from 2.14.1 to 2.23.1

Release notes

Sourced from dagger-android-processor's releases.

Dagger 2.23.1

In addition to the 2.23 release notes, this release fixes support for gradle incremental annotation processing (a91d9624)

Dagger 2.23

  • Validation/strictness
    • Generated components are no longer public unless the component type is public (298dea83)
    • @BindsInstance annotations are now more strictly validated (d3ed46dd)
  • Build performance
    • Generated code is no longer formatted by default. Use -Adagger.formatGeneratedSource=enabled to turn it on. (fcd069cc)
    • General build performance improvements (7e374b58)
  • Android
    • Added dagger.android.HasAndroidInjector, which will soon replace the Has*Injector interfaces. This one interfaces coalesces the others and should be functionally equivalent. (8f015262)
  • Full Binding Graph Validation
    • Rename -Adagger.moduleBindingValidation to -Adagger.fullBindingGraphValidation. The old name continues to work as an alias. (add5a744)
    • Do full binding graph validation for components and subcomponents, not just modules. (15d20f88)
  • Bug Fixes
    • Fixed an issue where @BindsInstance on a Builder setter method's parameter caused a failure in codegen if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22.1

In addition to the 2.22 release notes, this release fixes an issue where @BindsInstance on a @Component.Builder setter method's parameter caused a failure in code generation if the parameter had a different name than the method itself (#1464). (8051d285)

Dagger 2.22

NOTE: A bug in the Dagger compiler was introduced in this release. A fix is available in 2.22.1

  • Add the ability to create @Component.Factory types for components instead of @Component.Builders. An @Component.Factory is stateless and has a single method, returning the creator type, that takes parameters for anything that a Builder could have setters for. (d3408866)
  • @BindsInstance can now be applied to the parameter of a setter method on a builder rather than to the setter method itself, for consistency with factory methods. (60dc2a61)
  • When a single instance of a component builder with no setter for a particular module that Dagger can instantiate is used to instantiate multiple component instances, provide a new instance of that module to each component rather than caching and reusing a single instance of the module for each component. (fa714e9a)
  • Public modules are now allowed to include non-public modules when those included modules do not require an instance: that is, they only have abstract and/or static binding methods. (bfdecadf)
  • Fix @BindsOptionalOf methods to require that they have a different name than any other binding method in the module; this was already true for all other types of binding methods (@Provides, @Binds etc.) but @BindsOptionalOf wasn't being included. (1ea36ecc)
  • Report an error for scopes on @Multibinds methods. This was never supported, but the scope was previously ignored. (9582bc37)
  • Limit the number of requests and entry points reported explicitly for errors. (1d5d8298)
  • SPI: Renamed BindingKind.SUBCOMPONENT_BUILDER to SUBCOMPONENT_CREATOR to reflect the fact that it can be a builder or a factory, and renamed the edge type to SubcomponentCreatorBindingEdge. (65e2209a)
  • Build performance improvements:
    • 82f10d4f
    • c7b0f123
    • 6cb9f6bc
    • c74e5dc2
    • 9b4a0949
    • 6caef06e
    • 39456a4f
    • 9cf7cecf

Dagger 2.21

  • Build performance improvements (174a7a9b)
    • Separately, there may be an increase in build times for opensource users using javac9 or javac10. Neither javac8 or javac11 should be affected. (96fcce89)
  • New validation:
    • Installing a module with scoped bindings that an ancestor component has also installed is now an error. (4695ff51)
    • A warning is now reported if an explicit binding conflicts with an @Inject binding in an ancestor component. This was never intended to be supported but never checked. Adds a flag to control whether that is a warning or an error. (7f5500fb)
    • Installing a @ProducerModule in a @Subcomponent that is already installed in a parent (or earlier ancestor) component is now an error. It is also an error to repeat a @Module that has a binding in @ProductionScope. (68b21537)
... (truncated)
Commits
  • c7d2f2d 2.23.1 release
  • a91d962 Remove simple_jar in favor of the Gradle Incremental Annotation Processor hel...
  • 37ebdd2 Use putAll() calls instead of creating a MapDifference.
  • 5a6be36 Remove references to Google+
  • 072c477 Replace google.github.io/dagger with dagger.dev
  • f36dca4 Make CommandProcessorFactory top-level to avoid introducing users to the some...
  • f9e41bc Refactoring: Extract InjectionSiteFactory from BindingFactory.
  • 304f3c9 Use one missing binding node per-key in AOT.
  • 8c50f2c Make methods that aren't overridden final.
  • 673d34b Refactor BindingMethodValidator to avoid the need to pass around the Validati...
  • 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 ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • 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)

Finally, you can contact us by mentioning @dependabot.

Bumps `daggerVersion` from 2.14.1 to 2.23.1.

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

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

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

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

Updates `dagger-android-processor` from 2.14.1 to 2.23.1
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.14.1...dagger-2.23.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 13, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants