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/loader-utils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: webpack/loader-utils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0
Choose a head ref
  • 19 commits
  • 31 files changed
  • 1 contributor

Commits on Oct 20, 2021

  1. chore(deps): update

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    cc1e035 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    47d0be7 View commit details
    Browse the repository at this point in the history
  3. ci: update

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    9396e0e View commit details
    Browse the repository at this point in the history
  4. refactor!: remove getCurrentRequest in favor `loaderContext.current…

    …Request` (`loaderContext` is `this` inside loader function)
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    85d3dc3 View commit details
    Browse the repository at this point in the history
  5. refactor!: remove getRemainingRequest in favor `loaderContext.remai…

    …ningRequest` (`loaderContext` is `this` inside loader function)
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    09128d7 View commit details
    Browse the repository at this point in the history
  6. refactor!: remove getOptions in favor loaderContext.getOptions (`…

    …loaderContext` is `this` inside loader function), note - special query parameters like `?something=true` is not supported, if you need this please do it on `loader` side, but we strongly recommend avoid it, as alternative you can use `?something=1` and handle `1` as `true` in `loader`
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    3bfb169 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    93a87ce View commit details
    Browse the repository at this point in the history
  8. refactor!: [emoji] was removed without replacements, please use cus…

    …tom function if you need this
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    d19e92f View commit details
    Browse the repository at this point in the history
  9. refactor!: isUrlRequest was removed, webpack since version v5 suppo…

    …rts absolute data URI/URLs/paths, anyway if you don't want to handle absolute URLs you can handle it on `loader` side using `/^[a-z][a-z0-9+.-]*:/i.test(url)` regexp
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    973c82a View commit details
    Browse the repository at this point in the history
  10. refactor!: stringifyRequest was removed in favor `JSON.stringify(lo…

    …aderContext.utils.contextify(this.context, request))` where `loaderContext` is `this` inside loader function, also it will be cachable and faster
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    0d89522 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f8ff090 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    246e345 View commit details
    Browse the repository at this point in the history
  13. refactor!: parseString was removed in favor `new URLSearchParams(lo…

    …aderContext.resourceQuery.slice(1))` where `loaderContext` is `this` in loader function
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    e31e8b5 View commit details
    Browse the repository at this point in the history
  14. chore: deps update

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    46b032d View commit details
    Browse the repository at this point in the history
  15. refactor!: added isUrlRequest again, but now it ignores only absolu…

    …te URLs and `#hash` requests, `data URI` and root relative request are handled as requestable due webpack v5 support them
    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    10503d6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f2ce2ca View commit details
    Browse the repository at this point in the history
  17. test: fix

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    f37156e View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    862ea7d View commit details
    Browse the repository at this point in the history
  19. chore(release): 3.0.0

    alexander-akait committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    e1e9f89 View commit details
    Browse the repository at this point in the history
Loading