mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 12:08:12 -05:00
Replaces deprecated usage of the Ember's native array extension `.any()` function with `.some()` across several JavaScript files in the project. This is a purely refactoring change intended to modernize the codebase to follow current JavaScript standards. **Main Changes:** * Replaced .any() with .some() for array handling in 25 instances across various files. * Updated deprecation workflow to handle the any() and related deprecations explicitly.