Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint/eslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.15.0
Choose a base ref
...
head repository: eslint/eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.15.1
Choose a head ref
  • 4 commits
  • 5 files changed
  • 3 contributors

Commits on Mar 5, 2019

  1. Fix: avoid creating invalid regex in no-warning-comments (fixes #11471)…

    … (#11472)
    
    5018378 changed the codebase to use unicode regexes almost everywhere, with the exception of places where regexes are constructed from user input. However, two issues occurred to cause a bug:
    
    * Due to an oversight, the regular expressions constructed in the `no-warning-comments` rule were changed to be unicode regexes even though those regexes were constructed from user input.
    * The `no-warning-comments` rule dynamically creates regexes with unnecessary escape characters, and unnecessary escape characters are invalid in unicode regexes.
    
    This commit fixes the first issue. The second issue isn't a problem on its own, but it will need to be fixed in order to implement #11423.
    not-an-aardvark authored Mar 5, 2019
    Configuration menu
    Copy the full SHA
    458053b View commit details
    Browse the repository at this point in the history
  2. Build: bundle espree (fixes eslint/archive-website#546) (#11467)

    * Build: bundle espree (fixes eslint/archive-website#546)
    
    * Update webpack.config.js
    
    Co-Authored-By: aladdin-add <[email protected]>
    
    * Chore: add babel-polyfill
    aladdin-add authored and not-an-aardvark committed Mar 5, 2019
    1 Configuration menu
    Copy the full SHA
    fe1a892 View commit details
    Browse the repository at this point in the history
  3. Build: changelog update for 5.15.1

    ESLint Jenkins committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    df5f0f5 View commit details
    Browse the repository at this point in the history
  4. 5.15.1

    ESLint Jenkins committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    442da45 View commit details
    Browse the repository at this point in the history
Loading