@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
3
3
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
4
4
This change log adheres to standards from [ Keep a CHANGELOG] ( http://keepachangelog.com ) .
5
5
6
+ ## [ Unreleased]
7
+ ### Fixed
8
+ - ` export * from 'foo' ` now properly ignores a ` default ` export from ` foo ` , if any. ([ #328 ] /[ #332 ] , thanks [ @jkimbo ] )
9
+ This impacts all static analysis of imported names. ([ ` default ` ] , [ ` named ` ] , [ ` namespace ` ] , [ ` export ` ] )
10
+
6
11
## [ 1.8.0] - 2016-05-11
7
12
### Added
8
13
- [ ` prefer-default-export ` ] , new rule. ([ #308 ] , thanks [ @gavriguy ] )
@@ -206,10 +211,13 @@ for info on changes for earlier releases.
206
211
[ `no-nodejs-modules` ] : ./docs/rules/no-nodejs-modules.md
207
212
[ `order` ] : ./docs/rules/order.md
208
213
[ `named` ] : ./docs/rules/named.md
214
+ [ `default` ] : ./docs/rules/default.md
215
+ [ `export` ] : ./docs/rules/export.md
209
216
[ `newline-after-import` ] : ./docs/rules/newline-after-import.md
210
217
[ `no-mutable-exports` ] : ./docs/rules/no-mutable-exports.md
211
218
[ `prefer-default-export` ] : ./docs/rules/prefer-default-export.md
212
219
220
+ [ #332 ] : https://github.com/benmosher/eslint-plugin-import/pull/332
213
221
[ #322 ] : https://github.com/benmosher/eslint-plugin-import/pull/322
214
222
[ #316 ] : https://github.com/benmosher/eslint-plugin-import/pull/316
215
223
[ #308 ] : https://github.com/benmosher/eslint-plugin-import/pull/308
@@ -235,6 +243,7 @@ for info on changes for earlier releases.
235
243
[ #164 ] : https://github.com/benmosher/eslint-plugin-import/pull/164
236
244
[ #157 ] : https://github.com/benmosher/eslint-plugin-import/pull/157
237
245
246
+ [ #328 ] : https://github.com/benmosher/eslint-plugin-import/issues/328
238
247
[ #317 ] : https://github.com/benmosher/eslint-plugin-import/issues/317
239
248
[ #286 ] : https://github.com/benmosher/eslint-plugin-import/issues/286
240
249
[ #281 ] : https://github.com/benmosher/eslint-plugin-import/issues/281
@@ -290,3 +299,4 @@ for info on changes for earlier releases.
290
299
[ @josh ] : https://github.com/josh
291
300
[ @borisyankov ] : https://github.com/borisyankov
292
301
[ @gavriguy ] : https://github.com/gavriguy
302
+ [ @jkimbo ] : https://github.com/jkimbo
0 commit comments