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

Add support for ignoring deprecations by path #14925

Merged
merged 8 commits into from
Aug 28, 2020
Merged

Commits on Aug 23, 2020

  1. Add support for ignoring deprecations by path

    Being able to have deprecations on globally but silence problematic
    parts of your application or a noisy plugin that can't be upgraded just
    yet allows developers more control when upgrading.
    
    Instead of having to hope they don't add new deprecations they can fix
    a part of their application and then remove it from the deprecation
    ignore patterns.
    
    I've used glob here instead of regex as I don't think the power of regex
    is needed for this.
    
    Refs #14915
    markstory committed Aug 23, 2020
    Configuration menu
    Copy the full SHA
    ab26a03 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2020

  1. Remove debug code.

    markstory committed Aug 25, 2020
    Configuration menu
    Copy the full SHA
    ba68e8d View commit details
    Browse the repository at this point in the history
  2. Update wording.

    markstory committed Aug 25, 2020
    Configuration menu
    Copy the full SHA
    b317abc View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2020

  1. Normalize paths better.

    markstory committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    5a728f4 View commit details
    Browse the repository at this point in the history
  2. Fix phpcs error.

    markstory committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    d1f5202 View commit details
    Browse the repository at this point in the history
  3. Normalize to / instead of DIRECTORY_SEPARATOR

    I think \ might be causing problems with fnmatch() on windows as builds
    have failed a few times.
    markstory committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    67dc641 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2020

  1. Configuration menu
    Copy the full SHA
    d7491d0 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. Configuration menu
    Copy the full SHA
    42e48bf View commit details
    Browse the repository at this point in the history