Skip to content

Commit 767f01a

Browse files
committed
bump to v2.15.0
1 parent 038d668 commit 767f01a

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

66
## [Unreleased]
7+
8+
9+
## [2.15.0] - 2019-01-22
10+
### Added
11+
- new rule: [`no-named-export`] ([#1157], thanks [@fsmaia])
12+
713
### Fixed
814
- [`no-extraneous-dependencies`]: `packageDir` option with array value was clobbering package deps instead of merging them ([#1175]/[#1176], thanks [@aravindet] & [@pzhine])
15+
- [`dynamic-import-chunkname`]: Add proper webpack comment parsing ([#1163], thanks [@st-sloth])
16+
- [`named`]: fix destructuring assignment ([#1232], thanks [@ljqx])
917

1018

1119
## [2.14.0] - 2018-08-13
1220
* 69e0187 (HEAD -> master, source/master, origin/master, origin/HEAD) Merge pull request #1151 from jf248/jsx
13-
|\
21+
|\
1422
| * e30a757 (source/pr/1151, fork/jsx) Add JSX check to namespace rule
15-
|/
23+
|/
1624
* 8252344 (source/pr/1148) Add error to output when module loaded as resolver has invalid API
1725
### Added
1826
- [`no-useless-path-segments`]: add commonJS (CJS) support ([#1128], thanks [@1pete])
@@ -493,10 +501,15 @@ for info on changes for earlier releases.
493501
[`no-default-export`]: ./docs/rules/no-default-export.md
494502
[`no-useless-path-segments`]: ./docs/rules/no-useless-path-segments.md
495503
[`no-cycle`]: ./docs/rules/no-cycle.md
504+
[`dynamic-import-chunkname`]: ./docs/rules/dynamic-import-chunkname.md
505+
[`no-named-export`]: ./docs/rules/no-named-export.md
496506

497507
[`memo-parser`]: ./memo-parser/README.md
498508

509+
[#1232]: https://github.com/benmosher/eslint-plugin-import/pull/1232
499510
[#1176]: https://github.com/benmosher/eslint-plugin-import/pull/1176
511+
[#1163]: https://github.com/benmosher/eslint-plugin-import/pull/1163
512+
[#1157]: https://github.com/benmosher/eslint-plugin-import/pull/1157
500513
[#1151]: https://github.com/benmosher/eslint-plugin-import/pull/1151
501514
[#1137]: https://github.com/benmosher/eslint-plugin-import/pull/1137
502515
[#1135]: https://github.com/benmosher/eslint-plugin-import/pull/1135
@@ -652,7 +665,9 @@ for info on changes for earlier releases.
652665
[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
653666
[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89
654667

655-
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.13.0...HEAD
668+
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.15.0...HEAD
669+
[2.15.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.14.0...v2.15.0
670+
[2.14.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.13.0...v2.14.0
656671
[2.13.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.12.0...v2.13.0
657672
[2.12.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.11.0...v2.12.0
658673
[2.11.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.10.0...v2.11.0
@@ -774,3 +789,5 @@ for info on changes for earlier releases.
774789
[@jf248]: https://github.com/jf248
775790
[@aravindet]: https://github.com/aravindet
776791
[@pzhine]: https://github.com/pzhine
792+
[@st-sloth]: https://github.com/st-sloth
793+
[@ljqx]: https://github.com/ljqx

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-import",
3-
"version": "2.14.0",
3+
"version": "2.15.0",
44
"description": "Import with sanity.",
55
"engines": {
66
"node": ">=4"

0 commit comments

Comments
 (0)