Skip to content

build: bump metro from 0.13.2 to 1.1.1#814

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/metro-1.1.1
Open

build: bump metro from 0.13.2 to 1.1.1#814
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/metro-1.1.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 20, 2026

Bumps metro from 0.13.2 to 1.1.1.
Updates dev.zacsweers.metro:gradle-plugin from 0.13.2 to 1.1.1

Release notes

Sourced from dev.zacsweers.metro:gradle-plugin's releases.

1.1.1

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.1.0...1.1.1

1.1.0

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.0.1...1.1.0

1.0.1

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.

... (truncated)

Changelog

Sourced from dev.zacsweers.metro:gradle-plugin's changelog.

1.1.1

2026-05-14

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

1.1.0

2026-05-13

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

1.0.1

2026-05-13

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.
    • [IR] Compare IrTypeKey instances structurally instead of by rendered strings.
    • [IR/graph] Pre-size internal hash collections to avoid resizing during validation.
    • [IR/graph] Faster compilation for modules with many @Binds/@ContributesBinding declarations by batching incremental-compilation lookup tracking per graph rather than per-callable.
    • [IR/graph] Small additional compile-time win from using cheaper short-lived working sets during binding-graph population.
    • [IR/graph] Significantly faster binding-graph validation on projects with deep or wide dependency graphs (the graph seal drops ~60% in benchmarks).
    • [IR/graph] When populating bindings from roots, track a processedKeys set so duplicate queue entries don't re-walk dependency lists. This avoids unnecessary extra iterations when doing an initial reachability walk.

... (truncated)

Commits

Updates dev.zacsweers.metro:runtime from 0.13.2 to 1.1.1

Release notes

Sourced from dev.zacsweers.metro:runtime's releases.

1.1.1

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.1.0...1.1.1

1.1.0

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.0.1...1.1.0

1.0.1

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.

... (truncated)

Changelog

Sourced from dev.zacsweers.metro:runtime's changelog.

1.1.1

2026-05-14

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

1.1.0

2026-05-13

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

1.0.1

2026-05-13

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.
    • [IR] Compare IrTypeKey instances structurally instead of by rendered strings.
    • [IR/graph] Pre-size internal hash collections to avoid resizing during validation.
    • [IR/graph] Faster compilation for modules with many @Binds/@ContributesBinding declarations by batching incremental-compilation lookup tracking per graph rather than per-callable.
    • [IR/graph] Small additional compile-time win from using cheaper short-lived working sets during binding-graph population.
    • [IR/graph] Significantly faster binding-graph validation on projects with deep or wide dependency graphs (the graph seal drops ~60% in benchmarks).
    • [IR/graph] When populating bindings from roots, track a processedKeys set so duplicate queue entries don't re-walk dependency lists. This avoids unnecessary extra iterations when doing an initial reachability walk.

... (truncated)

Commits

Updates dev.zacsweers.metro:metrox-viewmodel-compose from 0.13.2 to 1.1.1

Release notes

Sourced from dev.zacsweers.metro:metrox-viewmodel-compose's releases.

1.1.1

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.1.0...1.1.1

1.1.0

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.0.1...1.1.0

1.0.1

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.

... (truncated)

Changelog

Sourced from dev.zacsweers.metro:metrox-viewmodel-compose's changelog.

1.1.1

2026-05-14

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

1.1.0

2026-05-13

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

1.0.1

2026-05-13

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.
    • [IR] Compare IrTypeKey instances structurally instead of by rendered strings.
    • [IR/graph] Pre-size internal hash collections to avoid resizing during validation.
    • [IR/graph] Faster compilation for modules with many @Binds/@ContributesBinding declarations by batching incremental-compilation lookup tracking per graph rather than per-callable.
    • [IR/graph] Small additional compile-time win from using cheaper short-lived working sets during binding-graph population.
    • [IR/graph] Significantly faster binding-graph validation on projects with deep or wide dependency graphs (the graph seal drops ~60% in benchmarks).
    • [IR/graph] When populating bindings from roots, track a processedKeys set so duplicate queue entries don't re-walk dependency lists. This avoids unnecessary extra iterations when doing an initial reachability walk.

... (truncated)

Commits

Updates dev.zacsweers.metro from 0.13.2 to 1.1.1

Release notes

Sourced from dev.zacsweers.metro's releases.

1.1.1

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.1.0...1.1.1

1.1.0

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

What's Changed

Full Changelog: ZacSweers/metro@1.0.1...1.1.0

1.0.1

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.

... (truncated)

Changelog

Sourced from dev.zacsweers.metro's changelog.

1.1.1

2026-05-14

Changes

  • Update runtime artifacts' language and API version to 2.3.0. This was supposed to be in 1.1.0 but accidentally omitted, sorry!

Consider sponsoring Metro's development

1.1.0

2026-05-13

This release is identical to 1.0.1 but removes support for Kotlin 2.2.20 and 2.2.21.

Consider sponsoring Metro's development

1.0.1

2026-05-13

New

  • [FIR] Add a diagnostic warning that @Module.subcomponents is ignored by Metro (when Dagger interop is enabled).
  • [FIR] Add a diagnostic error for annotating @AssistedInject types with @Contributes* annotations, as they are not compatible.

Enhancements

  • [FIR] Resolve copied typerefs (if necessary) in FIR code gen. This appears to help avoid some IDE FIR issues.
  • [FIR] Make renderAnnotationArgument() more lenient.
  • [FIR] Handle FirNamedArgumentExpression in renderAnnotationArgument().
  • [FIR/tracing] Tracing now also covers the FIR phase. Each FIR session and each IR module fragment writes its own .perfetto-trace file. All files from a single compilation share an id prefix and use the naming <id>-<phase>-<moduleName>.perfetto-trace (e.g. 260505-133503-fir-commonMain.perfetto-trace, 260505-133503-ir-main.perfetto-trace).
  • [FIR/IR] Pure binding contributions (@ContributesBinding/@ContributesIntoSet/@ContributesIntoMap without @ContributesTo) are now routed through as binding containers instead of being merged into graphs as supertypes. This avoids one synthetic supertype per contributing class on the merged graph. This is the default behavior now. If you have any issues, you can temporarily disable via metro.compilerOptions.disable("binding-contributions-as-containers") to restore the supertype-merge behavior.
  • [IR] Make SwitchingProvider.invoke() faster by hoisting the id field into a local before the when, allowing the JVM backend to lower it to tableswitch (O(1)) instead of a chain of integer compares.
  • [IR] Empty Set multibindings accessed through a provider now emit SetFactory.empty() (a singleton) rather than allocating a builder and an empty backing set on every graph init.
  • [IR] Improve validation trace locations for providers generated by generateContributionProviders.
  • [IR] Annotate generated provider factory classes' mirror functions with @ComptimeOnly.
  • [IR] Mark generated @Binds getters as OPEN rather than leaving them ABSTRACT.
  • [IR] Make a number of compiler internals lazier, cached, or faster. Improves top-line compiler IR performance traces ~5–15%.
    • [IR] Do not process platform type supertypes.
    • [IR] Compare IrTypeKey instances structurally instead of by rendered strings.
    • [IR/graph] Pre-size internal hash collections to avoid resizing during validation.
    • [IR/graph] Faster compilation for modules with many @Binds/@ContributesBinding declarations by batching incremental-compilation lookup tracking per graph rather than per-callable.
    • [IR/graph] Small additional compile-time win from using cheaper short-lived working sets during binding-graph population.
    • [IR/graph] Significantly faster binding-graph validation on projects with deep or wide dependency graphs (the graph seal drops ~60% in benchmarks).
    • [IR/graph] When populating bindings from roots, track a processedKeys set so duplicate queue entries don't re-walk dependency lists. This avoids unnecessary extra iterations when doing an initial reachability walk.

... (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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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 `metro` from 0.13.2 to 1.1.1.

Updates `dev.zacsweers.metro:gradle-plugin` from 0.13.2 to 1.1.1
- [Release notes](https://github.com/ZacSweers/metro/releases)
- [Changelog](https://github.com/ZacSweers/metro/blob/main/CHANGELOG.md)
- [Commits](ZacSweers/metro@0.13.2...1.1.1)

Updates `dev.zacsweers.metro:runtime` from 0.13.2 to 1.1.1
- [Release notes](https://github.com/ZacSweers/metro/releases)
- [Changelog](https://github.com/ZacSweers/metro/blob/main/CHANGELOG.md)
- [Commits](ZacSweers/metro@0.13.2...1.1.1)

Updates `dev.zacsweers.metro:metrox-viewmodel-compose` from 0.13.2 to 1.1.1
- [Release notes](https://github.com/ZacSweers/metro/releases)
- [Changelog](https://github.com/ZacSweers/metro/blob/main/CHANGELOG.md)
- [Commits](ZacSweers/metro@0.13.2...1.1.1)

Updates `dev.zacsweers.metro` from 0.13.2 to 1.1.1
- [Release notes](https://github.com/ZacSweers/metro/releases)
- [Changelog](https://github.com/ZacSweers/metro/blob/main/CHANGELOG.md)
- [Commits](ZacSweers/metro@0.13.2...1.1.1)

---
updated-dependencies:
- dependency-name: dev.zacsweers.metro:gradle-plugin
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: dev.zacsweers.metro:runtime
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: dev.zacsweers.metro:metrox-viewmodel-compose
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: dev.zacsweers.metro
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels May 20, 2026
@dependabot dependabot Bot requested review from a team as code owners May 20, 2026 02:27
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels May 20, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants