Weekly GitHub Report for Maui: February 15, 2026 - February 22, 2026 (14:50:06)
Weekly GitHub Report for Maui
Thank you for subscribing to our weekly newsletter! Each week, we deliver a comprehensive summary of your GitHub project's latest activity right to your inbox, including an overview of your project's issues, pull requests, contributors, and commit activity.
Table of Contents
I. News
1.1 Recent Version Releases:
The current version of this repository is 9.0.90
1.2 Version Information:
The .NET MAUI 9.0.90 SR9 release, published on July 11, 2025, includes over 141 commits primarily focused on critical product fixes across iOS, Android, and Windows platforms, testing enhancements, infrastructure updates, and dependency version bumps. Key highlights include numerous bug fixes addressing UI behavior, threading issues, and control improvements, alongside expanded automated testing coverage and housekeeping updates to improve stability and maintainability.
II. Issues
2.1 Top 5 Active Issues:
We consider active issues to be issues that that have been commented on most frequently within the last week. Bot comments are omitted.
-
[T/BUG] [PLATFORM/MACOS] [AREA-XAML] [PLATFORM/WINDOWS] [PLATFORM/ANDROID] [PLATFORM/IOS] [S/VERIFIED] [S/TRIAGED] XAML C# expression tries to assign a value to the read-only properties, but it should be based on the binding mode: This issue concerns a build error that occurs when using XAML C# expressions to bind to read-only properties, such as a ViewModel's Command or getter-only properties, where the binding incorrectly attempts to assign a value despite the properties being read-only. The problem arises because the binding mechanism does not respect the binding mode and tries to use the setter method for all bindings, leading to errors when the property only has a getter, and this behavior is reproducible in version 10.0.40 across multiple platforms.
- The comments clarify that only certain binding modes require setters, and the issue has been validated across various environments and MAUI versions, with users providing repro samples and confirming that classic binding works while the new XAML C# expression binding fails, indicating a need for the binding logic to respect the binding mode properly.
- Number of comments this week: 5
-
[PERF/GENERAL] [Perf] Skip redundant property mapper calls during handler connection: This issue addresses the performance overhead caused by redundant calls to property mappers during the initial connection of handlers in .NET MAUI controls, where many properties are mapped even if they remain at their default values. It proposes a centralized optimization to skip mapper calls for properties that have not been explicitly set by the developer, aiming to reduce startup time and interop overhead across all platforms without modifying individual mappers.
- The comments discuss potential breaking changes due to skipping user-customized mappers and properties that require mapping even at default values, suggesting that skipping should exclude keys with custom modifications and that individual mappers might better handle skipping logic; the prototype is seen as a useful experiment but not ready for merge, with further investigation needed to balance correctness and performance.
- Number of comments this week: 4
-
[T/BUG] [S/NEEDS-ATTENTION] [iOS] ObjectDisposedException: This issue reports a System.ObjectDisposedException occurring on iOS in a .NET MAUI application after upgrading to version 10.0.40, which used to work fine in version 9.0.100 SR10. The user is unsure of the root cause but provides a stack trace showing the exception happening during navigation operations involving the ShellSectionRenderer and UINavigationController.
- The comments highlight the difficulty of diagnosing the problem without a reproduction or code, suggest adding guards to prevent navigation-related race conditions, and note that recent .NET 10 versions may be more aggressive in resource cleanup, potentially causing premature disposal during async operations.
- Number of comments this week: 3
-
[T/BUG] [PLATFORM/ANDROID] [AREA-NAVIGATION] [PLATFORM/IOS] [S/VERIFIED] [S/TRIAGED] OnNavigatingFrom is reporting wrong DestinationPage: This issue reports that in .NET MAUI 10, the
OnNavigatingFromevent incorrectly sets theDestinationPageproperty to the current page instead of the actual destination page during navigation, while theOnNavigatedFromevent behaves correctly. The problem affects navigation lifecycle handling on iOS and Android platforms, making it difficult to rely onOnNavigatingFromfor early navigation logic that depends on the correct destination page.- The comments confirm the issue is reproducible on Android and iOS with MAUI versions 10.0.0 and 10.0.40, and provide a sample project for validation. Additional testing shared includes screenshots and a GIF demonstrating the incorrect
DestinationPagevalue inNavigatingFromEventArgscompared to the correct value inNavigatedFromEventArgs. - Number of comments this week: 2
- The comments confirm the issue is reproducible on Android and iOS with MAUI versions 10.0.0 and 10.0.40, and provide a sample project for validation. Additional testing shared includes screenshots and a GIF demonstrating the incorrect
-
[T/BUG] [PLATFORM/MACOS] [PLATFORM/WINDOWS] [PLATFORM/ANDROID] [PLATFORM/IOS] [S/VERIFIED] [S/TRIAGED] [I/REGRESSION] [XSG] [REGRESSED-IN-10.0.40] MAUIG2045 false warning when binding to CommunityToolkit.Mvvm [RelayCommand] generated commands: This issue describes a false MAUIG2045 warning generated by MAUI’s XAML compiler when binding to commands created by the CommunityToolkit.Mvvm [RelayCommand] source generator, where the compiler cannot detect the generated command property at compile time despite it existing and working at runtime. The problem is caused by the MAUI XAML compiler running before the CommunityToolkit.Mvvm source generator, leading to a visibility and ordering issue that triggers the warning incorrectly.
- The comments confirm the issue is reproducible in specific MAUI versions starting from 10.0.40 across multiple platforms and development environments, and one comment marks this issue as a duplicate of another related issue.
- Number of comments this week: 2
2.2 Top 5 Stale Issues:
We consider stale issues to be issues that has had no activity within the last 30 days. The team should work together to get these issues resolved and closed as soon as possible.
As of our latest update, there are no stale issues for the project this week.
2.3 Open Issues
This section lists, groups, and then summarizes issues that were created within the last week in the repository.
Issues Opened This Week: 53
Summarized Issues:
- JavaScript-to-.NET Invocation Failure in .NET 10 HybridWebView: The InvokeDotNet method used for JavaScript-to-.NET messaging in HybridWebView does not trigger in .NET 10 projects, although it works correctly in .NET 9. This causes failures in communication from embedded web content to the .NET layer in MAUI apps.
- Navigation and Layout Issues on iPadOS and Windows: NavigationPage.TitleView on iPadOS 26+ fails to resize properly during orientation changes, causing layout inconsistencies and empty spaces. Additionally, the "Back" button on Windows NavigationPage is nearly invisible since MAUI 9.0.110, and the app name does not display on Windows.
- Shell ForegroundColor Not Applied to ToolbarItems on iOS and Windows: Setting Shell.ForegroundColor does not affect ToolbarItems on Windows and iOS 26, leaving toolbar icons in default colors instead of the configured foreground color. This results in inconsistent UI appearance across platforms.
- XAML and Binding Compilation Issues in .NET MAUI 10: Enabling MauiEnableXamlCBindingWithSourceCompilation breaks dynamic UI elements like tile colors and tooltips across platforms. Also, XAML C# expressions cause build errors when assigning to read-only properties, and the XAML compiler emits false warnings for CommunityToolkit.Mvvm RelayCommand properties.
- Navigation Event Inconsistencies in .NET MAUI 10: The OnNavigatingFrom event incorrectly reports the current page as the destination page during navigation, causing inconsistent event data compared to OnNavigatedFrom. This leads to unreliable navigation state handling in apps.
- Runtime Crashes and Exceptions on Multiple Platforms: NullReferenceException occurs with OnPlatform XAML logic and SourceGen enabled, causing crashes on non-target platforms. Additionally, a System.ObjectDisposedException crash happens on iOS when accessing UINavigationController's NavigationBar, indicating regressions in stability.
- Performance Optimization Proposals for .NET MAUI Internals: Multiple issues propose reducing allocations and improving startup time by refactoring BindableObject.SetValue boxing, caching PropertyChangedEventArgs, reusing ElementEventArgs and InvalidationEventArgs, optimizing logging patterns, and eliminating heap allocations in layout and binding propagation. These aim to enhance memory efficiency and execution speed without changing public APIs.
- Handler Connection and Property Mapper Optimization: A centralized optimization is proposed to skip redundant property mapper calls during initial handler connection by checking if properties are explicitly set, reducing unnecessary processing and improving startup performance across platforms.
- Publishing and Build Issues on Windows and Android: Publishing a self-contained Windows app referencing a MAUI library results in duplicate output file errors, preventing successful publishing. Also, building a .NET MAUI Android project with NativeAot fails due to missing workload manifests, and running projects on Windows ARM devices is not supported.
- Gesture and Touch Event Problems on Windows and Custom Backends: PanGestureRecognizer's PanUpdated event does not fire near the edge of draggable views on Windows due to premature touch point clearing. Additionally, lack of public controller interfaces for TapGestureRecognizer and PointerGestureRecognizer in custom backends forces fragile reflection hacks to fire gesture events.
- Third-Party Platform Backend Extensibility Limitations: Internal APIs prevent third-party platform backends from properly registering custom implementations or integrating handlers without fragile reflection hacks. Proposals include making internal SetDefault() public, enabling dependency injection, allowing Resizetizer use without full MAUI SDK, extensible BlazorWebView handler registration, and public alert/dialog system interfaces.
- Android Deployment and Runtime Crashes: Deploying and debugging Android apps from VSCode on Linux frequently fails due to device recognition and connection issues. Crashes occur on Android when using FontImageSource in Button.ImageSource with background services, and critical crashes happen on low-memory devices using the Revenucat plugin.
- UI Rendering and Interaction Bugs Across Platforms: The Clip property on Label controls does not constrain backgrounds properly on iOS, macOS, and Windows. Tap gestures fail to register in spanned regions of custom grid views on multiple platforms. Shadow style class updates via Hot Reload on Mac Catalyst do not render visually despite metadata updates.
- ScrollView and CollectionView Behavior Issues: CollectionView inside RefreshView scrolls horizontally when empty, a regression from Xamarin.Forms. Material 3 CheckBox on Android lacks comprehensive UI tests beyond limited screenshot coverage. A proposal exists to add cross-platform APIs for customizing ScrollView scrollbar appearance to improve theming and accessibility.
- Memory Leak and Layout Regression Issues: Changing the Detail page of a FlyoutPage on Android causes memory leaks due to improper cleanup of previous pages. A regression in MAUI 10.0.40 causes EXC_BAD_ACCESS crashes on iOS devices when dynamically removing Border views. The iOS 26 tab bar shows ghosting and empty selected tabs when UI compatibility mode is disabled.
- XAML Source Generator Nullability and BindingContext Propagation: The XAML source generator produces code that is not fully nullable aware, causing nullability warnings that block usage in strict no-warning-as-error projects. Excessive heap allocations occur during recursive BindingContext propagation, which can be optimized by reusing WeakReference instances and avoiding array snapshots.
- UI Test Classification and PR Review Management: There is a need to improve test analysis to correctly classify tests currently marked as UI tests that should be unit tests. Additionally, a detailed report of the .NET MAUI pull request review queue as of February 20, 2026, is provided to track status and priorities.
- Navigation Design Guidance via Roslyn Analyzer: A proposal exists to add a Roslyn analyzer that warns developers when a TabbedPage is directly wrapped inside a NavigationPage, a discouraged pattern in official .NET MAUI documentation, to help avoid navigation design pitfalls.
- Android UI Text Truncation and CollectionView Item Display Bugs: In .NET MAUI 10.0.40 on Android, certain monkey names are truncated in horizontal scrolling tests, a regression from earlier versions. Also, toggling "Toggle EmptyViews" in CollectionView causes incorrect item display despite no matching search results.
2.4 Closed Issues
This section lists, groups, and then summarizes issues that were closed within the last week in the repository. This section also links the associated pull requests if applicable.
Issues Closed This Week: 9
Summarized Issues:
- UI Display Issues on iOS and Android: Several issues describe UI rendering problems across iOS and Android devices, including the TitleView component appearing vertically squeezed on an iPad Pro 13-inch and the Shell navigation bar overlapping Android status bar icons. Additionally, setting
SafeAreaEdgesto None on Android does not remove safe area padding as expected, causing content misalignment. - issues/33936, issues/34060, issues/34076
- Theme and Window Button Appearance on Windows: There is a problem on Windows where the minimize and close buttons in the TitleBar become invisible when the app's theme changes, due to missing properties to control the built-in window buttons' appearance during theming. This results in poor user experience when switching themes.
- issues/33975
- Dependency and Build Errors in Android Projects: Dependency build errors occur when referencing Xamarin.AndroidX.Work.Runtime in new .NET MAUI Android apps, caused by version conflicts between required and resolved Xamarin.AndroidX lifecycle package versions. This prevents successful builds and integration of necessary libraries.
- issues/33974
- Runtime Exceptions and Crashes After Upgrading: Upgrading Microsoft.Maui.Controls from 10.0.31 to 10.0.40 causes an Android.Runtime.JavaProxyThrowable exception during page navigation, indicating a regression from previous versions. Similarly, a MethodAccessException crash occurs in CommunityToolkit.Maui AppThemeResource on iOS when using AppThemeColor resources after upgrading, with no known workaround.
- issues/34034, issues/34035
- Breaking Changes Due to InternalsVisibleTo Revocation: Revoking the
InternalsVisibleToattribute in Microsoft.Maui.Controls v10.0.40 has broken multiple features in CommunityToolkit.Maui libraries by restricting access to internal APIs that require promotion to public for proper functionality. This change disrupts expected behavior in dependent toolkits. - issues/34048
- CI Build Failures Due to Xcode Version Mismatch: The RunOnAndroid CI job fails at the "Select Xcode Version" step because of a mismatch between the requested Xcode version 26.0.1 and the available version 26.1.1 on the build machines. Previously ignored, this mismatch now causes a hard failure after a recent pull request merge.
- issues/34049
2.5 Issue Discussion Insights
This section will analyze the tone and sentiment of discussions within this project's open and closed issues that occurred within the past week. It aims to identify potentially heated exchanges and to maintain a constructive project environment.
Based on our analysis, there are no instances of toxic discussions in the project's open or closed issues from the past week.
III. Pull Requests
3.1 Open Pull Requests
This section provides a summary of pull requests that were opened in the repository over the past week. The top three pull requests with the highest number of commits are highlighted as 'key' pull requests. Other pull requests are grouped based on similar characteristics for easier analysis. Up to 25 pull requests are displayed in this section, while any remaining pull requests beyond this limit are omitted for brevity.
Pull Requests Opened This Week: 31
Key Open Pull Requests
1. [Testing] Feature Matrix UITest Cases for VisualStateManager: This pull request adds comprehensive VisualStateManager feature matrix pages and interactive UI test cases for multiple controls including Button, CheckBox, CollectionView, Entry, Label, Slider, and Switch, enhancing the test suite with detailed demonstrations and state-driven styling logic to verify visual state behaviors across different platforms.
- URL: pull/34146
- Associated Commits: c3be8, f5675, 5f401, ebf86, 0ab81, 48aaf, e9093, 2d3ed, 90b32, efa56, 957ef, c38ec, fc6af, a3ce4, 1d33b, fd27d, 55780, f16f0, 6ca93, abd16, 9d066, 667fe
2. February 21st, 2025 Candidate Branch: This pull request addresses multiple fixes and improvements across the .NET MAUI project, including resolving a Glide IllegalArgumentException on Android caused by loading images with destroyed activity contexts by adding context destruction checks in PlatformInterop methods, fixing crashes related to MauiCALayer and StaticCAShapeLayer disposal on iOS, correcting duplicate title icons on Android when setting TitleIconImageSource multiple times, improving culture-specific decimal separator handling in numeric entry, dismissing keyboards when Entry/Editor controls become invisible on Android and iOS, ensuring Shell navigation bar back button properly fires OnBackButtonPressed on Android, enabling PointerMoved events for PointerGestureRecognizer on Android, fixing vertical text alignment issues in Editor after visibility toggling, correcting Shell Navigating event route values on iOS/macOS, improving ImageButton rendering on Android, fixing group header/footer template application in grouped ObservableCollections on Android, addressing CollectionView item reordering with DataTemplateSelector, correcting scroll position in CollectionView with headers on Android, preventing crashes when setting HeightRequest on WebView inside ScrollView on iOS, fixing Shell flyout icon tint on iOS 26, improving CollectionView ScrollTo behavior with headers, applying scaling correctly when a wrapper view is present on Android, preventing System.IndexOutOfRangeException in CollectionView with image CarouselView on Android, updating VerticalOffset on CollectionView item source changes on Android, and enhancing UI test reliability for iOS 26 by improving keyboard dismissal and back arrow query logic.
- URL: pull/34173
- Associated Commits: 9e12b, 92de3, c3d8e, ef9a3, edcd6, eeb35, 4aa6b, e16db, 8f669, bc70f, b05a3, 98910, 67351, 98bc9, a8faf, d7a99, be05e, fc100, 26665, d4a96
3. Fix multi-turn tool calling in AppleIntelligenceChatClient and add AI sample chat overlay: This pull request fixes issues with multi-turn tool calling in the AppleIntelligenceChatClient by enhancing message handling and stream chunking, and adds a new AI sample chat overlay featuring a floating action button and support for eight native Apple Intelligence tools, along with extensive tests and UI improvements.
- URL: pull/34124
- Associated Commits: 8d5b9, 7ebd9, 26bbc, 87394, 625f0, 3bbfb, 11afd, 426eb, cabef, afde7, 74ad8, 7dbb1, 39f1e, 76e1c, a7125, 0d4dd, c9f92, 3a3bf, 81dcf
Other Open Pull Requests
- Performance optimizations in layout and event handling: Multiple pull requests focus on reducing memory allocations and improving runtime performance in .NET MAUI. These include eliminating managed heap allocations in layout engines, caching event argument instances, lazy initialization of dictionaries, and reusing objects during tree propagation and binding context inheritance to reduce GC pressure and speed up common operations.
- [pull/34155, pull/34135, pull/34133, pull/34110, pull/34095, pull/34126, pull/34070]
- UI testing enhancements and new test suites: Several pull requests add comprehensive UI test suites and feature matrices to improve validation and demonstration of controls and features. These include tests for clip controls, triggers, Material 3 CheckBox on Android, and gesture recognizers on Windows, with new pages, navigation, and automated UI tests to ensure correctness and visual fidelity.
- [pull/34121, pull/34152, pull/34107, pull/34112]
- Bug fixes for platform-specific control behaviors: Multiple fixes address platform-specific issues such as slider thumb image scaling on iOS, Android, and macOS, Stepper control increment behavior on iOS 26, drag-and-drop reordering in grouped CollectionView on iOS and MacCatalyst, and Shell.ForegroundColor application on iOS 26 and Mac Catalyst 26+. These fixes ensure consistent and expected control behavior across platforms.
- [pull/34064, pull/34081, pull/34151, pull/34085]
- Memory leak and resource management fixes: One pull request fixes a memory leak on Android caused by NavigationPage when used modally by clearing references properly and re-enabling related memory leak tests. This improves resource management and stability on Android devices.
- [pull/34117]
- Refactoring for memory and performance improvements in property and binding systems: Refactorings include changing SetterSpecificityList from a heap-allocated class to an inline struct and caching PropertyChangedEventArgs to reduce allocations during property changes. These changes improve memory usage and speed during page load and property updates.
- [pull/34089, pull/34136]
- Windows Maps handler implementation: A fully functional Windows Maps handler is implemented using WinUI 3 MapControl backed by Azure Maps, adding features like region navigation, map styling, traffic display, and pin management without adding new public APIs, while documenting platform limitations.
- [pull/34138]
- SourceGen tool error reporting fix: The SourceGen tool is fixed to correctly emit build errors for invalid x:DataType or bindings by adjusting error reporting logic to trigger on type resolution failures, improving developer feedback during build.
- [pull/34078]
- MA003 error message clarification: The MA003 error message is clarified to improve readability and understanding, addressing a specific issue in the project.
- [pull/34153]
- Removal of InternalsVisibleTo attributes for Community Toolkit: All InternalsVisibleTo attributes granting the .NET MAUI Community Toolkit access to internal APIs are removed to enforce encapsulation, while allowing time for migration via public alternatives or API exposure.
- [pull/34067]
3.2 Closed Pull Requests
This section provides a summary of pull requests that were closed in the repository over the past week. The top three pull requests with the highest number of commits are highlighted as 'key' pull requests. Other pull requests are grouped based on similar characteristics for easier analysis. Up to 25 pull requests are displayed in this section, while any remaining pull requests beyond this limit are omitted for brevity.
Pull Requests Closed This Week: 21
Key Closed Pull Requests
1. Add daily template size tracking workflow: This pull request adds a comprehensive GitHub Actions workflow that daily tracks and measures the package sizes of .NET MAUI template projects across multiple platforms and AOT variants, compares these sizes against historical data using a cache-based system without external dependencies, and generates alerts and summary reports when significant size regressions occur.
- URL: pull/34140
- Associated Commits: 63545, 35bc2, ab3ea, 2ebd1, 6b38f, 51b30, c7caa, b5bea, 37753, 50c9c, d3273, 1cdf5, fb398, cd343, f4e70
- Associated Commits: 63545, 35bc2, ab3ea, 2ebd1, 6b38f, 51b30, c7caa, b5bea, 37753, 50c9c, d3273, 1cdf5, fb398, cd343, f4e70
2. [WIP][Perf] Reduce BindableObject allocations (event args caching, tree propagation, lazy init): This pull request aims to improve performance by reducing allocations in the BindableObject property system through caching PropertyChangedEventArgs and PropertyChangingEventArgs, reusing ElementEventArgs during tree propagation, minimizing inherited BindingContext allocations, and lazy-initializing the _triggerSpecificity dictionary to optimize memory usage on hot paths such as page load, BindingContext propagation, and layout.
- URL: pull/34132
3. Revamp find-reviewable-pr skill: priorities, defaults, and doc fixes: This pull request revamps the find-reviewable-pr skill by improving its prioritization logic, updating default filters to focus on the most actionable pull requests, adding new review categories including agent-reviewed status with AI summary highlights, enhancing output details such as assignees, and correcting documentation to accurately reflect these changes and defaults.
- URL: pull/34160
Other Closed Pull Requests
- Automation and Workflow Improvements: Multiple pull requests enhance automation in CI/CD and repository maintenance by introducing new GitHub Actions workflows for branch merges, improving issue triage automation, and locking action dependencies for consistent execution. These changes reduce manual intervention, improve notification noise, and maintain repository hygiene through periodic cleanup of expired discussions, issues, and pull requests.
- UI and Theme Fixes: Pull requests address UI issues including fixing background color updates for
SwipeItemandSwipeItemViewon theme changes and resolving iOS 26 UI test failures by updating Appium utilities to handle keyboard dismissal and accessibility ID queries. These fixes improve UI consistency and test reliability across different platforms and OS versions.
- Test Environment and Pipeline Enhancements: Several pull requests improve test pipeline stability and performance by re-enabling Windows unpackaged device tests, enabling Linux-based Android integration tests with KVM support, optimizing Xcode provisioning in RunOnAndroid tests, and enhancing Xcode version fallback logic in CI pipelines. These changes ensure broader platform support and reduce test run times.
- Magick.NET v14 Compatibility Fixes: Two pull requests address breaking changes introduced in Magick.NET version 14 by updating constructor parameter types, method names, namespace imports, and image comparison calls. These updates ensure the codebase remains compatible and builds successfully after upgrading from version 13.5.0 to 14.10.2.
- Documentation and Configuration Updates: Pull requests improve API documentation by fixing XML reference warnings, update pipeline run titles for better identification, correct documentation phase numbering, and update model references in pull request agent configuration files to newer versions. These changes enhance clarity, accuracy, and use of up-to-date tools without affecting functionality.
- XAML and Map Enhancements: One pull request adds XAML TypeConverters for map coordinates and a new bindable property for map regions, enabling more concise and declarative syntax for setting map locations and regions. This simplifies previous verbose markup and improves developer experience when working with maps in XAML.
- Reversion of Premature InternalsVisibleTo Removal: A pull request reverts a previous commit that removed InternalsVisibleTo attributes for the .NET MAUI Community Toolkit because the timing was inappropriate and would have caused breaking issues with .NET 10 preview templates and disrupted important bug fixes.
3.3 Pull Request Discussion Insights
This section will analyze the tone and sentiment of discussions within this project's open and closed pull requests that occurred within the past week. It aims to identify potentially heated exchanges and to maintain a constructive project environment.
Based on our analysis, there are no instances of toxic discussions in the project's open or closed pull requests from the past week.
IV. Contributors
4.1 Contributors
Active Contributors:
We consider an active contributor in this project to be any contributor who has made at least 1 commit, opened at least 1 issue, created at least 1 pull request, or made more than 2 comments in the last month.
If there are more than 10 active contributors, the list is truncated to the top 10 based on contribution metrics for better clarity.
| Contributor | Commits | Pull Requests | Issues | Comments |
|---|---|---|---|---|
| PureWeen | 230 | 7 | 2 | 0 |
| Copilot | 109 | 8 | 0 | 110 |
| rmarinho | 136 | 3 | 2 | 0 |
| kubaflo | 96 | 5 | 1 | 1 |
| simonrozsival | 50 | 10 | 11 | 4 |
| mattleibow | 73 | 2 | 0 | 0 |
| StephaneDelcroix | 44 | 4 | 0 | 1 |
| TamilarasanSF4853 | 28 | 1 | 1 | 7 |
| jfversluis | 32 | 4 | 0 | 1 |
| Shalini-Ashokan | 29 | 4 | 0 | 0 |
Access Last Week's Newsletter: