Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/multi-bd0aeda05d
Closed

Bump CommunityToolkit.Maui.Markup and Microsoft.Maui.Controls#23
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/multi-bd0aeda05d

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 23, 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.50 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 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 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.50 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 Jan 23, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 23, 2026

Looks like these dependencies are no longer a dependency, so this is no longer needed.

@dependabot dependabot bot closed this Jan 23, 2026
@dependabot dependabot bot deleted the dependabot/nuget/multi-bd0aeda05d branch January 23, 2026 17: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 .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants