Bump eslint-import-resolver-webpack from 0.8.4 to 0.9.0 #1241

Merged
dependabot-preview[bot] merged 1 commit from dependabot/npm_and_yarn/eslint-import-resolver-webpack-0.9.0 into master 2018-04-03 21:16:39 +02:00
dependabot-preview[bot] commented 2018-04-02 12:22:04 +02:00 (Migrated from github.com)

Bumps eslint-import-resolver-webpack from 0.8.4 to 0.9.0.

Changelog

Sourced from eslint-import-resolver-webpack's changelog.

Change Log

All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning.
This change log adheres to standards from Keep a CHANGELOG.

[Unreleased]

[2.10.0] - 2018-03-29

Added

  • Autofixer for [order] rule ([#711], thanks [tihonove])
  • Add [no-cycle] rule: reports import cycles.

[2.9.0] - 2018-02-21

Added

  • Add [group-exports] rule: style-guide rule to report use of multiple named exports ([#721], thanks [robertrossmann])
  • Add [no-self-import] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [giodamelio]).
  • Add [no-default-export] rule ([#889], thanks [isiahmeadows])
  • Add [no-useless-path-segments] rule ([#912], thanks [graingert] and [danny-andrews])
  • ... and more! check the commits for v[2.9.0]

[2.8.0] - 2017-10-18

Added

Changed

  • Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [laysent])

Fixed

  • support scoped modules containing hyphens ([#744], thanks [rosswarren])
  • core-modules now resolves files inside declared modules ([#886] / [#891], thanks [mplewis])
  • TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [alexgorbatchev])

[2.7.0] - 2017-07-06

Changed

  • [no-absolute-path] picks up speed boost, optional AMD support ([#843], thanks [jseminck])

[2.6.1] - 2017-06-29

Fixed

  • update bundled node resolver dependency to latest version

[2.6.0] - 2017-06-23

Changed

  • update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [mastilver])
  • [memo-parser] updated to require filePath on parser options as it melts
    down if it's not there, now that this plugin always provides it. (see [#863])

[2.5.0] - 2017-06-22

Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [memo-parser],
... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot ignore this [minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use [this|these] label[s] will set the current labels as the default for future PRs for this repo and language

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [eslint-import-resolver-webpack](https://github.com/benmosher/eslint-plugin-import) from 0.8.4 to 0.9.0. <details> <summary>Changelog</summary> *Sourced from eslint-import-resolver-webpack's [changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md).* > # Change Log > All notable changes to this project will be documented in this file. > This project adheres to [Semantic Versioning](http://semver.org/). > This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com). > > ## [Unreleased] > - Fixer for [`first`] ([#1046], thanks [[**fengkfengk**](https://github.com/fengkfengk)]) > > ## [2.10.0] - 2018-03-29 > ### Added > - Autofixer for [`order`] rule ([#711], thanks [[**tihonove**](https://github.com/tihonove)]) > - Add [`no-cycle`] rule: reports import cycles. > > ## [2.9.0] - 2018-02-21 > ### Added > - Add [`group-exports`] rule: style-guide rule to report use of multiple named exports ([#721], thanks [[**robertrossmann**](https://github.com/robertrossmann)]) > - Add [`no-self-import`] rule: forbids a module from importing itself. ([#727], [#449], [#447], thanks [[**giodamelio**](https://github.com/giodamelio)]). > - Add [`no-default-export`] rule ([#889], thanks [[**isiahmeadows**](https://github.com/isiahmeadows)]) > - Add [`no-useless-path-segments`] rule ([#912], thanks [[**graingert**](https://github.com/graingert)] and [[**danny**](https://github.com/danny)-andrews]) > - ... and more! check the commits for v[2.9.0] > > ## [2.8.0] - 2017-10-18 > ### Added > - [`exports-last`] rule ([#620] + [#632], thanks [[**k15a**](https://github.com/k15a)]) > > ### Changed > - Case-sensitivity checking ignores working directory and ancestors. ([#720] + [#858], thanks [[**laysent**](https://github.com/laysent)]) > > ### Fixed > - support scoped modules containing hyphens ([#744], thanks [[**rosswarren**](https://github.com/rosswarren)]) > - core-modules now resolves files inside declared modules ([#886] / [#891], thanks [[**mplewis**](https://github.com/mplewis)]) > - TypeError for missing AST fields from TypeScript ([#842] / [#944], thanks [[**alexgorbatchev**](https://github.com/alexgorbatchev)]) > > ## [2.7.0] - 2017-07-06 > ### Changed > - [`no-absolute-path`] picks up speed boost, optional AMD support ([#843], thanks [[**jseminck**](https://github.com/jseminck)]) > > ## [2.6.1] - 2017-06-29 > ### Fixed > - update bundled node resolver dependency to latest version > > ## [2.6.0] - 2017-06-23 > ### Changed > - update tests / peerDeps for ESLint 4.0 compatibility ([#871], thanks [[**mastilver**](https://github.com/mastilver)]) > - [`memo-parser`] updated to require `filePath` on parser options as it melts > down if it's not there, now that this plugin always provides it. (see [#863]) > > ## [2.5.0] - 2017-06-22 > > Re-releasing v[2.4.0] after discovering that the memory leak is isolated to the [`memo-parser`], > ... (truncated) </details> <details> <summary>Commits</summary> - [`47ac30f`](https://github.com/benmosher/eslint-plugin-import/commit/47ac30fcee9556a1b8d6f0a4626463b7d3eb472c) bump webpack resolver to v0.9.0 - [`6356a78`](https://github.com/benmosher/eslint-plugin-import/commit/6356a78aa6fc2a2b294832fdf6e5b31630952def) bump to v2.10.0 - [`82f67e6`](https://github.com/benmosher/eslint-plugin-import/commit/82f67e69adb9b6850312cafb50c61cd23e49e87c) bump utils to v2.2.0 - [`ed719a3`](https://github.com/benmosher/eslint-plugin-import/commit/ed719a3305ef1bb723d92d7b8227ccb0cdf1f8be) Merge branch 'no-cycles' - [`ab44320`](https://github.com/benmosher/eslint-plugin-import/commit/ab44320f8f99972f7e07f31804616652d0d79c98) changelog notes - [`b34d9ff`](https://github.com/benmosher/eslint-plugin-import/commit/b34d9ff9f2c1ab45ff4a5e840f802b16be111da2) Add autofixer for order rule ([#908](https://github-redirect.dependabot.com/benmosher/eslint-plugin-import/issues/908)) - [`e215b61`](https://github.com/benmosher/eslint-plugin-import/commit/e215b61193bae8c610157a72bd26596288cec2de) try solution from appveyor/ci#650 - [`231874c`](https://github.com/benmosher/eslint-plugin-import/commit/231874c6162f1eb5ca877f46bab55170f58f9599) update eslint-import-resolver-webpack homepage to the source of the package (... - [`ad66aea`](https://github.com/benmosher/eslint-plugin-import/commit/ad66aea712554a50a000ade565b81b0956ca1cfa) smh. - [`d81f48a`](https://github.com/benmosher/eslint-plugin-import/commit/d81f48a2506182738409805f5272eff4d77c9348) no-cycle: maxDepth tests + docs - Additional commits viewable in [compare view](https://github.com/benmosher/eslint-plugin-import/compare/resolvers/webpack/v0.8.4...resolvers/webpack/v0.9.0) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/ci_status?dependency-name=eslint-import-resolver-webpack&package-manager=npm_and_yarn&previous-version=0.8.4&new-version=0.9.0)](https://dependabot.com/compatibility-score.html?dependency-name=eslint-import-resolver-webpack&package-manager=npm_and_yarn&previous-version=0.8.4&new-version=0.9.0) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot ignore this [minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use [this|these] label[s]` will set the current labels as the default for future PRs for this repo and language Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) Finally, you can contact us by mentioning @dependabot. </details>
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: LBRYCommunity/lbry-desktop#1241
No description provided.