Skip to content

[deps]: Update CommunityToolkit.Maui to v9#3221

Closed
renovate[bot] wants to merge 3956 commits intomainfrom
renovate/communitytoolkit.maui-9.x
Closed

[deps]: Update CommunityToolkit.Maui to v9#3221
renovate[bot] wants to merge 3956 commits intomainfrom
renovate/communitytoolkit.maui-9.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 4, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
CommunityToolkit.Maui 5.2.0 -> 9.0.1 age adoption passing confidence

Release Notes

CommunityToolkit/Maui (CommunityToolkit.Maui)

v9.0.1: : Bugfixes! That's it, that's the release.

Compare Source

Just a couple of bugfixes for you to enjoy!

No fancy funny text here this time, sorry. It's Friday for me too you know?!

What's Changed
New Contributors

Full Changelog: CommunityToolkit/Maui@9.0.0...9.0.1

v9.0.0: : Breaking Bugfixes

Compare Source

Version 9! That must mean amazing new goodies! 😱

Unfortunately, no. Although every release of the Toolkit is a party of its own, for this release there are a couple of bugfixes that required breaking changes and therefore we bumped the version up to 9.

However, is XAML and converters are your jam, then be sure to check out the improvements in usage with CompareConverter. @​bijington has done some great work with that and you can find the documentation for that right here.

Find all the details below, if you have any questions or concerns, please let us know!

You might also like the .NET MAUI Community Toolkit standup live stream recording for May. Join us live and come hang out every first Thursday of every month on the .NET Foundation YouTube channel!

As always, many thanks to our contributors for this version, especially the community ones 👏 you are our heroes!

Breaking Changes
Replace FrozenSet with IReadOnlyList

By @​brminnick in https://github.com/CommunityToolkit/Maui/pull/1839

This was breaking because it changed the signature of some public APIs:

AlertView.macios.cs changed the Children property from:

public FrozenSet<UIView> Children

to

public IReadOnlyList<UIView> Children
Improve the usage experience with CompareConverter in XAML

By @​bijington in https://github.com/CommunityToolkit/Maui/pull/1841

This change is breaking because CompareConverter now takes 2 type arguments.

It went from

public abstract class CompareConverter<TReturnObject> : BaseConverterOneWay<IComparable, object>

to

public abstract class CompareConverter<TValue, TReturnObject> : BaseConverterOneWay<TValue, object> where TValue : IComparable

NOTE this is only breaking if you inherited from CompareConverter.

What's Changed
🥱
New Contributors

Full Changelog: CommunityToolkit/Maui@8.0.1...9.0.0

v8.0.1: : TouchBehavior (and all Behaviors) Hotfix

Compare Source

By implementing TouchBehavior we found out that the databinding for it was a bit odd and went to investigate why.

The good news is: we found it! 🎉

The bad news is: it applied to all of our behaviors 🙈

We quickly fixed it and rolling it out as a minor release. Technically it's a breaking change, but we expect not many people to be impacted by that. If we thought wrong: our sincere apologies.

Check the PR below for all the details, TL;DR is data binding for behaviors is now a lot easier!

What's Changed

Full Changelog: CommunityToolkit/Maui@8.0.0...8.0.1

v8.0.0: : Can Touch This! TouchBehavior is Here!

Compare Source

TouchBehavior is here!

The release a lot of people have been waiting for is here. Version 8.0 of the .NET MAUI Community Toolkit introduces the ever popular TouchBehavior! You might know TouchBehavior as TouchEffect in the Xamarin world, but since Effects no longer exist, it has now been turned into a Behavior.

Due to the amazing work of @​Axemasta this functionality is now ported from the Xamarin Community Toolkit to .NET MAUI. Of course, @​bijington was on the case with the documentation, so we have that in place for you as well.

Breaking Snackbar on Windows

Otherwise, there is A LOT going on in this release, just look at the list below. There is however one thing we do want to highlight: the breaking changes for Snackbar.

Based on your feedback @​VladislavAntonyuk did a complete rewrite of the Snackbar on Windows, ultimately of course to make things better, but it requires some changes on your side if you are working with Snackbar on Windows today. On other platforms it should work unchanged.

Find all the details in our updated documentation for this.

NavigationBar coloring for Android

Another functionality that was ported over from the Xamarin Community Toolkit is the NavigationBar coloring. This is very specific to Android and allows you to change the color of the systems navigation bar (the bottom one with the back button, home button, etc.)

@​pictos did a great job on this one figuring out how to fit this into our toolkit 👏

Find all the docs on how to start using it, right here.

Thank you contributors!

Of course we couldn't have done this without our amazing community and team, a major feature like TouchBehavior being implemented by someone from the community is what this project is all about. Truly amazing.

Special shoutout to our first-time contributors: @​Marioo1357, @​eduardoagr, @​StevilKnevil, @​Cybrosys, @​marco-skizza and @​Axemasta but of course a BIG THANK YOU to all of you!

Big Ol' List of Changes
Swept Under the Rug 🧹
New Contributors

Full Changelog: CommunityToolkit/Maui@7.0.1...8.0.0

v7.0.1: : Last Update of 2023!

Compare Source

Happy holidays for those of you who celebrate! In the meanwhile, we're not clowning around and present to you the last release of 2023.

This version has a good number of bugfixes and improvements, but nothing too crazy so that it might blow up your project before you go on a holiday break. As always a big thank you to anyone and everyone not only using our product but also caring, engaging and even contributing. We appreciate it!

Let's make 2024 even better 🚀

What's Changed
We couldn't make this project work without these dependencies 🫶
New Contributors

So many new contributors this release, thank you so much @​IIARROWS, @​TRybina132, @​ne0rrmatrix and our very own Tizen superhero @​JoonghyunCho. We appreciate all the time that you are spending on this project and making it better.

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

v7.0.0: : .NET 8 is here!

Compare Source

What's Changed

Full Changelog: CommunityToolkit/Maui@6.1.0...7.0.0

v6.1.0: : A New Release Popped Up!

Compare Source

My goodness do we love our community. And in this case especially @​cat0363 who goes by the name of Kenji in real-life.

If you look through the release notes below, you'll notice that Kenji has been doing a lot of work for us and all that work went into the Popup. From this place: thank you so much for spending your valuable time on our project and making it better for everyone 🙏

So in this release: a lot of love for the Popup: better sizing, adding the ability to use resources and styles, flow direction is now working... And much more!

PopupService

Still on Popups, we have made it easier for you to work with popups from your view models. In v6.1.0 we have added the PopupService. No weird messaging or dependencies in your code that shouldn't be there, just a clean service that will allow you to show popups respecting MVVM.

All the details can be found in the documentation.

DrawingView

But we didn't stop there! As always @​VladislavAntonyuk has been doing wonderful work. With this release we introduce a bunch of Commands that allow you to capture the start, cancel and drawing in progress events in a pure MVVM way.

The documentation for DrawingView has been updated accordingly, so go check it out.

All the details
Housekeeping, important but not super interesting

Full Changelog: CommunityToolkit/Maui@6.0.0...6.1.0

v6.0.0: : Next Level Speech Recognition & Bugfixes

Compare Source

Watch out! This version contains some breaking changes! That is why we are going from version 5.3.0 to version 6.0.0. They grow up so fast... 🥲 Anyway, no time to be emotional, let's talk about the amazing things in this release. First of all: look at all the first-time contributors, amazing, thank you all so much: @​wolfgang-ironsoftware, @​inforithmics, @​olekssokol, @​vhugogarcia, @​redek91, @​babenkovitaliy and @​AllenD-MSFT 👏

Speech Recognition

The speech recognition APIs just got better. You can now listen to the user in the background and still process the results asynchronously. This enables so many cool new scenarios in your app, including building your own personal assistant! Connect that with some AI and... 🤯

You can read all about how to use this new functionality in the docs right here.

Bugfixes, bugfixes, bugfixes

Furthermore this release is PACKED with bugfixes. The popups got better, we fixed memory leaks all over and even the snackbar and toast now know how to handle a device that is rotating. Good stuff, check out all the details just below here.

All the details
Housekeeping, important but not super interesting
New Contributors

Full Changelog: CommunityToolkit/Maui@5.3.0...6.0.0

v5.3.0: : BadgeCounter, Popups and AppTheme helpers!

Compare Source

This release is so full of great new stuff I almost don't know where to begin... Let's start with something else then, did you know that we have a Discord server now specifically for the .NET MAUI Community Toolkit? A great place to discuss how to get started with contributing, ask questions or just hang out! Join it today by clicking here (only valid for 30 days after this is posted).

Now, for this release... VERSION FIVE-THREE-OH 💥

Popups Now Better Than Ever!

Thanks to a great number of community contributions our Popups are now better than ever. Thank you so much @​cat0363, @​cucumber-sp and our very own @​brminnick! We've fixed a number of bugs that have to do with sizing, positioning and propagating the BindingContext to Popups, and also added a CloseAsync() method to make closing the popup more reliable.

If you want to know all ins and outs of the Popup, check our documentation.

BadgeCounter

With our brand new BadgeCounter API it's now easier than ever to show a notification count on your app icon. You know the little red bubble over app icons on the device home screen? You can now set that value yourself, from your app with one line of code. 🤯

@​VladislavAntonyuk did an amazing job once again. Read all about the implementation of this functionality on his blog or check out our official documentation on how to use it with .NET MAUI Community Toolkit.

AppThemeColor, AppThemeObject and AppThemeResource

These new APIs are great little helpers for when you support dark theme in your .NET MAUI apps. In .NET MAUI you have the AppThemeBinding which is already great, but with this you can now make your XAML less verbose and reuse your app theme aware resources through styles and resource dictionaries.

As always, find the details in our documentation and let us know how you like it!

Thank you @​dansiegel for the initial work on the .NET MAUI repo!

All the details
Humpty-Bumpty 🐫 & Other Housekeeping

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

ifernandezdiaz and others added 30 commits September 7, 2023 11:24
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
* Update AppResources.af.resx

* Update AnonAddy references

* Reverted AnonAddy to AddyIo refactor, keeping text and url changes

---------

Co-authored-by: Andre Rosado <arosado@bitwarden.com>
* [PM-3606] Fix 2FA for autofill

* [PM-3606] Fix autofill when user doesn't have a login method available.

* [PM-3606] PR fixes

* [PM-3606] Add logout logic to other extension projects

* [PM-3606] Move code to base class.

* Transform into property instead of field

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

* Remove double ";"

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>

* [PM-3606] Fix iOS extension by changing base class of LockPasswordViewController

---------

Co-authored-by: Federico Maccaroni <fedemkr@gmail.com>
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
…cally log out TDE users (#2747)

* [PM-3393] Log user out on biometric exceed attempts

* [PM-3393] Move duplicated code to AppHelpers

* [PM-3393] Update copy on new pop up

* [PM-3393] Moved VaultTimeoutService to LazyResolve.

* [PM-3382] Change IVaultTimeoutService for messaging

* [PM-3393] Use default values.
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
* [PM-3726] prevent legacy user login

* [PM-3726] prevent unlock or auto key migration if legacy user

* [PM-3726] add legacy checks to lock page and refactor

* [PM-3726] rethrow exception from pin

* formatting

* [PM-3726] add changes to LockViewController, consolidate logout calls

* formatting

* [PM-3726] pr feedback

* generate resx

* formatting
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
* PM-3811 Unified passkeys view and moved both inside Login as an array of FIdo2Key

* PM-3811 Passkeys unification => updated cipher details view an helpers

* PM-3811 Updated passkeys creation date time format
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
…oard for autofill (#2764)

* [PM-3446] Check if user has mp and allow autofill to use items with mp re-prompt
* [PM-2658] Settings Reorganization Init (#2697)

* PM-2658 Started settings reorganization (settings main + vault + about)

* PM-2658 Added settings controls based on templates and implemented OtherSettingsPage

* PM-2658 Fix format

* [PM-3512] Settings Appearance (#2703)

* PM-3512 Implemented new Appearance Settings

* PM-3512 Fix format

* [PM-3510] Implement Account Security Settings view (#2714)

* PM-3510 Implemented Security settings view

* PM-3510 Fix format

* PM-3510 Added empty placeholder to pending login requests and also improved a11y on security settings view.

* PM-3511 Implemented autofill settings view (#2735)

* [PM-3695] Add Connect to Watch to Other settings (#2736)

* PM-3511 Implemented autofill settings view

* PM-3695 Add Connect to watch setting to other settings view

* [PM-3693] Clear old Settings approach (#2737)

* PM-3511 Implemented autofill settings view

* PM-3693 Remove old Settings approach

* PM-3845 Fix default dark theme description verbiage (#2759)

* PM-3839 Fix allow screen capture and submit crash logs to init their state when the page appears (#2760)

* PM-3834 Fix dialogs strings on settings (#2758)

* [PM-3834] Fix import items link (#2782)

* PM-3834 Fix import items link

* PM-3834 Fix import items link, removed old link.

* [PM-4092] Fix vault timeout policies on new Settings (#2796)

* PM-4092 Fix vault timeout policy on settings for disabling controls and reset timeout when surpassing maximum

* PM-4092 Removed testing hardcoding of policy data
* PM-115 Added new cipher key and encryption/decryption mechanisms on cipher

* PM-115 fix format

* PM-115 removed ForceKeyRotation from new cipher encryption model given that another approach will be taken

* [PM-1690] Added minimum server version restriction to cipher key encryption (#2463)

* PM-1690 added minimum server version restriction to cipher key encryption and also change the force key rotation flag

* PM-1690 Updated min server version for new cipher encryption key and fixed configService registration

* PM-1690 removed forcekeyrotation

* PM-115 Temporarily Changed cipher key new encryption config to help testing (this change should be reseted eventually)

* PM-2456 Fix attachment encryption on new cipher item encryption model (#2556)

* PM-2531 Fix new cipher encryption on adding attachments on ciphers with no item level key (#2559)

* PM-115 Changed temporarily cipher key encryption min server version to 2023.6.0 to test

* PM-115 Reseted cipher key encryption minimum server version to 2023.5.0 and disable new cipher key on local cipher creation

* Added Key value to the cipher export model (#2628)

* Update Constants.cs

Updated minimum encryption server version to 2023.9.0 so QA can test its behavior

* PM-115 Fix file format

* PM-115 Changed new encryption off and minimum new encryption server version to 2023.8.0 for testing purposes

* PM-115 Changed CIpher key encryption minimum server version to 2023.9.0

* PM-3737 Remove suffix on client version sent to server (#2779)

* PM-115 QA testing server min version and enable new cipher key encryption

* PM-115 Disable new cipher encryption creation and change minimum server encryption version to 2023.9.1

---------

Co-authored-by: aj-rosado <109146700+aj-rosado@users.noreply.github.com>
* [PM-868] Check for previous page before loading vault. Remove exception throw.

* [PM-868] Continue to throw exceptions
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from a90aa5a to 0679183 Compare May 31, 2024 06:16
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 0679183 to 93c83e3 Compare June 3, 2024 18:35
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 93c83e3 to 0cf56b6 Compare June 3, 2024 20:51
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 0cf56b6 to a990894 Compare June 4, 2024 14:27
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from a990894 to 38ddbeb Compare June 6, 2024 19:31
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch 2 times, most recently from cd736b7 to 1653f2d Compare June 7, 2024 12:36
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 1653f2d to 486e362 Compare June 12, 2024 13:32
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 486e362 to ac29882 Compare June 13, 2024 15:41
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from ac29882 to c560145 Compare June 13, 2024 15:52
Co-authored-by: bitwarden-devops-bot <106330231+bitwarden-devops-bot@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from c560145 to 4b53cbc Compare June 14, 2024 08:24
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 4b53cbc to 1d908fc Compare June 18, 2024 12:43
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 1d908fc to 25d9acf Compare June 19, 2024 12:40
@renovate renovate Bot force-pushed the renovate/communitytoolkit.maui-9.x branch from 25d9acf to cd843fe Compare June 20, 2024 01:31
@vvolkgang vvolkgang closed this Jun 20, 2024
@renovate renovate Bot deleted the renovate/communitytoolkit.maui-9.x branch June 20, 2024 15:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.