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: webpack/webpack
base: v4.26.0
Choose a base ref
...
head repository: webpack/webpack
compare: v4.26.1
Choose a head ref
  • 9 commits
  • 6 files changed
  • 2 contributors

Commits on Nov 16, 2018

  1. Drop unuseful eval call

    If use CSP (without `unsafe-eval`), both `new Function` and `eval` will be forbidden, so `eval` part is just dead code.
    
    The only possibility `eval` part would run was `new Function('return this')()` return a falsy value, but it never possible as the spec (Is there any old engine violate this? Never heard about that.)
    
    This pr also add `new` keyword to make the code a little bit explicit.
    hax committed Nov 16, 2018
    1 Configuration menu
    Copy the full SHA
    48f0604 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2018

  1. Merge pull request #8385 from hax/patch-1

    Drop unuseful `eval` call
    sokra committed Nov 19, 2018
    Configuration menu
    Copy the full SHA
    614a6fc View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2018

  1. handle case when minSize > maxSize

    fixes #8407
    sokra committed Nov 23, 2018
    Configuration menu
    Copy the full SHA
    fd2133b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #8410 from webpack/bugfix/max-size-lt-min-size

    handle case when minSize > maxSize
    sokra committed Nov 23, 2018
    Configuration menu
    Copy the full SHA
    fa56ec8 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2018

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

Commits on Nov 25, 2018

  1. Merge pull request #8416 from webpack/bugfix/split-chunks-zero-min

    while grouping nodes include at least one node on each side
    sokra committed Nov 25, 2018
    Configuration menu
    Copy the full SHA
    a1d4802 View commit details
    Browse the repository at this point in the history
  2. prevent groups with size < minSize

    fixes #8407
    sokra committed Nov 25, 2018
    Configuration menu
    Copy the full SHA
    cbeaf70 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #8417 from webpack/bugfix/split-chunks-min-size

    prevent groups with size < minSize
    sokra committed Nov 25, 2018
    Configuration menu
    Copy the full SHA
    11afdbd View commit details
    Browse the repository at this point in the history
  4. 4.26.1

    sokra committed Nov 25, 2018
    Configuration menu
    Copy the full SHA
    8e841fe View commit details
    Browse the repository at this point in the history