Skip to content

Bump CommunityToolkit.Maui.Markup and Microsoft.Maui.Controls#151

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-bd0aeda05d
Closed

Bump CommunityToolkit.Maui.Markup and Microsoft.Maui.Controls#151
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-bd0aeda05d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 28, 2026

Updated CommunityToolkit.Maui.Markup from 5.1.0 to 6.0.1.

Release notes

Sourced from CommunityToolkit.Maui.Markup's releases.

6.0.1

What's Changed

Full Changelog: CommunityToolkit/Maui.Markup@6.0.0...6.0.1

6.0.0

This release contains a small breaking change where the setter now returns a nullable result. This means that devs may get a compiler error if they are binding a non-nullable property to a nullable bindable property.

Here's an example using a non-nullable string in a View Model to bind to Label.Text which can be null:

public class LabelViewModel : ObservableObject
{
    [ObservableProperty] 
    public partial string Text { get; set; }
}
new Label()
   .Bind(Label.TextProperty,
         getter: static (LabelViewModel vm) => vm.Text,
         setter: static (vm, text) => vm.Text = text, // <--- This is where the breaking change happens
         mode: BindingMode.TwoWay)

becomes

new Label()
   .Bind(Label.TextProperty,
         getter: static (LabelViewModel vm) => vm.Text,
         setter: static (vm, text) => vm.Text = text ?? string.Empty, // <--- This is where the breaking change happens
         mode: BindingMode.TwoWay)

What's Changed

Dependencies and other housekeeping

Commits viewable in compare view.

Updated Microsoft.Maui.Controls from 9.0.22 to 9.0.60.

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 CommunityToolkit.Maui.Markup from 5.1.0 to 6.0.1
Bumps Microsoft.Maui.Controls from 9.0.22 to 9.0.60

---
updated-dependencies:
- dependency-name: CommunityToolkit.Maui.Markup
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 9.0.60
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Apr 28, 2026
@TheCodeTraveler TheCodeTraveler enabled auto-merge (squash) April 28, 2026 05:19
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 28, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 28, 2026
auto-merge was automatically disabled April 28, 2026 05:21

Pull request was closed

@dependabot dependabot Bot deleted the dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-bd0aeda05d branch April 28, 2026 05:21
@TheCodeTraveler TheCodeTraveler restored the dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-bd0aeda05d branch April 28, 2026 05:21
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 28, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-bd0aeda05d branch April 28, 2026 16:27
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 .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant