Skip to content

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

Merged
TheCodeTraveler merged 2 commits intomainfrom
dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-b0db1740a7
Apr 28, 2026
Merged

Bump CommunityToolkit.Maui.Markup and Microsoft.Maui.Controls#158
TheCodeTraveler merged 2 commits intomainfrom
dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-b0db1740a7

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 7.0.1.

Release notes

Sourced from CommunityToolkit.Maui.Markup's releases.

7.0.1

CommunityToolkit.Maui.Markup v7.0.1

This Release increases the Microsoft.Maui.Controls Dependency to v10.0.41 due to a known regression in v10.0.40

What's Changed

Full Changelog: CommunityToolkit/Maui.Markup@7.0.0...7.0.1

7.0.0

Breaking Changes

  • .NET 10 Required

What's Changed

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

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.120 to 10.0.41.

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 7.0.1
Bumps Microsoft.Maui.Controls from 9.0.120 to 10.0.41

---
updated-dependencies:
- dependency-name: CommunityToolkit.Maui.Markup
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.41
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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
Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 28, 2026

Looks like this PR is already up-to-date with main! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@TheCodeTraveler TheCodeTraveler enabled auto-merge (squash) April 28, 2026 16:18
@TheCodeTraveler TheCodeTraveler merged commit 23e91bd into main Apr 28, 2026
4 of 5 checks passed
@TheCodeTraveler TheCodeTraveler deleted the dependabot/nuget/src/HotChocolateGraphQL.Mobile/multi-b0db1740a7 branch April 28, 2026 16:19
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