Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Core: Prepare for Migrate 4.0.0 #555

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    d36fb6a View commit details
    Browse the repository at this point in the history
  2. Core: Remove patches for breaking changes in jQuery 3.0.0 or older

    The `self-closed-tags` patch remains, despite being a breaking change in jQuery
    3.5.0, not 4.0.0. There are a few reasons for that:
    1. It's an exception that a breaking change arrived in a non-major version bump.
       Some people may be upgrading from jQuery 3.4.0 or older and it's good to
       make it work for them.
    2. The patch is disabled by default, so the concern of people on newer jQuery
       3.x upgrading to jQuery 4.x with Migrate 4.x getting patches restoring
       behavior from an version older than the pre-upgrade one does not exist.
    3. This was a pretty big break, it may help people update if we still support
       it.
    mgol committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    4f86dcc View commit details
    Browse the repository at this point in the history
  3. Core: Don't reimplement deprecated but not removed APIs

    This will save space and avoid potential divergence from Core.
    
    Also, simplify the `deferred.pipe` patch.
    mgol committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    1ac6408 View commit details
    Browse the repository at this point in the history
  4. Core: Use console.info for deprecations without removals.

    Also:
    1. Group `warnings.md` by this type.
    2. Rename `jQuery.migrateWarnings` to `jQuery.migrateMessages`.
    3. Rename `jQuery.migrateDeduplicateWarnings` to
       `jQuery.migrateDeduplicateMessages`.
    4. Adding "info" versions of some internal APIs.
    
    Fixes jquerygh-472
    mgol committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    7d2ddb0 View commit details
    Browse the repository at this point in the history