Skip to content

Latest commit

 

History

History
462 lines (320 loc) · 22.7 KB

CHANGELOG.md

File metadata and controls

462 lines (320 loc) · 22.7 KB

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

UNRELEASED 9.0.0 (BETA) - 2017-03-01

New features

  • Update ESLint from 3.10.x to 3.15.x.
  • 3 additional rules are now fixable with standard --fix!

New rules

(Estimated % of affected standard users, based on test suite in parens)

Changed rules

  • Relax rule: allow TypeScript Triple-Slash Directives (spaced-comment) #660
  • Relax rule: allow Flow Comments (spaced-comment) #661

8.6.0 - 2016-11-22

  • Update ESLint from 3.8.x to 3.10.x.
  • 3 additional rules are now fixable with standard --fix!

8.5.0 - 2016-10-25

  • Update ESLint from 3.7.x to 3.8.x.
  • 2 additional rules are now fixable with standard --fix!

8.4.0 - 2016-10-10

  • Update ESLint from 3.6.x to 3.7.x.
  • 5 additional rules are now fixable with standard --fix!
  • Use more conservative semver ranges #654

8.3.0 - 2016-09-29

The last release (8.2.0) added ES7 support. This release (8.3.0) adds ES8 support ...just 3 days later!

This release should eliminate the need to specify babel-eslint as a custom parser, since standard can now parse ES8 (i.e. ES2017) syntax out of the box. That means async and await will just work.

  • Support ES8 (i.e. ES2017) syntax.

8.2.0 - 2016-09-26

For many users, this release should eliminate the need to specify babel-eslint as a custom parser, since standard can now parse ES7 (i.e. ES2016) syntax out of the box.

  • Support ES7 (i.e. ES2016) syntax.
  • Update ESLint from 3.5.x to 3.6.x.
  • 4 additional rules are now fixable with standard --fix!

8.1.0 - 2016-09-17

  • Update ESLint from 3.3.x to 3.5.x.
  • Around 10 additional rules are now fixable with standard --fix!

8.0.0 - 2016-08-23

This release contains a bunch of goodies, including new rules that catch potential programmer errors (i.e. bugs) and enforce additional code consistency.

However, the best feature is surely the new --fix command line flag to automatically fix problems. If you ever used standard-format and ran into issues with the lack of ES2015+ support, you'll be happy about --fix.

standard --fix is built into standard v8.0.0 for maximum convenience, it supports ES2015, and it's lightweight (no additional dependencies since it's part of ESLint which powers standard). Lots of problems are already fixable, and more are getting added with each ESLint release.

standard also outputs a message ("Run standard --fix to automatically fix some problems.") when it detects problems that can be fixed automatically so you can save time!

With standard v8.0.0, we are also dropping support for Node.js versions prior to v4. Node.js 0.10 and 0.12 are in maintenance mode and will be unsupported at the end of 2016. Node.js 4 is the current LTS version. If you are using an older version of Node.js, we recommend upgrading to at least Node.js 4 as soon as possible. If you are unable to upgrade to Node.js 4 or higher, then we recommend continuing to use standard v7.x until you are ready to upgrade Node.js.

Important: We will not be updating the standard v7.x versions going forward. All bug fixes and enhancements will land in standard v8.x.

Full changelog below. Cheers!

New features

New rules

(Estimated % of affected standard users, based on test suite in parens)

Changed rules

  • Relax rule: Allow template literal strings (backtick strings) to avoid escaping
 #421
  • Relax rule: Do not enforce spacing around * in generator functions (#564 (comment))
    • This is a temporary workaround for babel users who use async generator functions.

7.1.2 - 2016-06-03

  • Fix install errors for some users by updating eslint peer dependency

7.1.1 - 2016-05-26

  • Add back full node 0.10, 0.12 support

7.1.0 - 2016-05-16

  • Upgrade eslint to version ~2.10.2

7.0.1 - 2016-05-04

  • Relax "no-duplicate-imports" rule to not include export so the following is allowed:
import { foo } from 'bar'
export * from 'bar'

7.0.0 - 2016-05-02

Changes

  • Upgrade eslint to version ~2.9.0
  • Remove "rules" configuration option #367 from package.json (Reasoning is here)

New rules

Estimated % of affected standard users, based on test suite

Removed rules

6.0.8 - 2016-03-07

  • Pin eslint to version ~2.2.0
  • Update eslint-plugin-react to version 4.0.0

6.0.7 - 2016-02-18

  • Revert: Use install location of standard as eslint cwd (fixes #429)

6.0.6 - 2016-02-18

  • Use eslint 2.1.0
  • Fix: Use install location of standard as eslint cwd (fixes snazzy/#8)

6.0.5 - 2016-02-12

  • Use eslint 2.0.0 stable

6.0.4 - 2016-02-07

6.0.3 - 2016-02-06

  • Fix "Error: Cannot find module 'eslint-config-standard-jsx'" with npm 2 (node 0.10, 0.12, 4)

6.0.2 - 2016-02-06

  • Internal change: Remove .eslintrc file, and use inline config

6.0.1 - 2016-02-05

  • Internal change: Move .eslintrc file to root folder

6.0.0 - 2016-02-05

The goal of this release is to make standard faster to install, and simpler to use.

Remove standard-format (#340) (#397)

  • Eliminates 250 packages, and cuts install time in half!
  • For npm 2, install time goes from 20 secs —> 10 secs.
  • For npm 3, install time goes from 24 secs —> 12 secs.
  • To continue using standard-format, just install it separately: npm install -g standard-format

React-specific linting rules are removed (#351) (#367) (eslint-config-standard-react/#13)

  • JSX is still supported, and it continues to be checked for style.
  • There were only a few React-specific rules, but they made it extremely difficult for users of alternatives like virtual-dom or deku, and unecessarily tied standard to a single library.
  • JSX rules come from eslint-config-standard-jsx. The eslint-config-standard-react dependency was removed.

New Rules

The percentage (%) of users that rule changes will effect, based on real-world testing of the top ~400 npm packages is denoted in brackets.

Removed Rules

  • parseInt() radix rule because ES5 fixes this issue (#384)
 (radix) [0%]

Expose eslint configuration via command line options and package.json

For power users, it might be easier to use one of these new hooks instead of forking standard, though that's still encouraged, too!

  • Set eslint "plugins" (#386)
  • Set eslint "rules" (#367)
  • Set eslint "env" (#371)

To set custom ESLint plugins, rules, or envs, use the command line --plugin, --rules, and --env flags.

In package.json, use the "standard" property:

{
  "standard": {
    "plugins": [ "my-plugin" ]
  }
}

Upgrade to ESLint v2

  • There may be slight behavior changes to existing rules. When possible, we've noted these in the "New Rules" and "Removed Rules" section.

Improve test suite

  • Rule changes can be tested against every package on npm. For sanity, this is limited to packages with at least 4 dependents. Around ~400 packages.

Known Issues

  • Using prerelease eslint version (2.0.0-rc.0). There may be breaking changes before the stable release.
  • no-return-assign behavior changed with arrow functions (eslint/eslint#5150)

Relevant diffs

5.4.1 - 2015-11-16

view diff

Fixed

  • Fix for standard-engine change. Fix error tagline.

5.4.0 - 2015-11-16

view diff

Added

  • eslint-config-standard-react@1.2.0 (history)
    • Disallow duplicate JSX properties

5.3.1 - 2015-09-18

view diff

Changed

  • eslint-plugin-react@3.4.2 (history)

5.3.0 - 2015-09-16

view diff

Changed

  • eslint-config-standard@4.4.0 (history)
    • New rule: must have space after semicolon in for-loop (commit)
    • New rule: No default assignment with ternary operator (commit)
    • New rule: Require spaces before keywords (commit)
  • eslint-config-standard-react@1.1.0 (history)
  • eslint-plugin-react@3.4.0 (history)
  • eslint-plugin-standard@1.3.1 (history)

5.2.2

view diff

Fixed

  • We have a changelog now, and you're reading it!
  • Minor README update
  • Removed direct dependency on eslint (its now moved to standard-engine)

5.2.1 - 2015-09-03

view diff

Changed

  • eslint-config-standard@4.3.1 (history)
    • Revert rule: Disallow unncessary concatenation of strings

Fixed

  • eslint-config-standard@4.3.1 (history)
    • fix regression with ternary operator handling

5.2.0 - 2015-09-03

view diff

Added

  • eslint-config-standard@4.3.0 (history)
    • New rule: Disallow unncessary concatenation of strings
    • New rule: Disallow duplicate name in class members
    • New rule: enforce spaces inside of single line blocks
    • Re-add rule: padded-blocks (Closes #170)

Changed

  • Bump eslint from 1.1.0 to 1.3.1 (CHANGELOG)
  • eslint-plugin-standard@1.3.0 (history)
    • A small change to make the plugin compatible with browserify which does not affect behavior.

Fixed

  • eslint-plugin-react@3.3.1 (CHANGELOG)
    • Fix object rest/spread handling.
  • Added white background to badge.svg to make it work with dark backgrounds (Closes #234)
  • Minor updates to README.md

5.1.1 - 2015-08-28

view diff

Fixed

  • Update to RULES.md to remove a missing hyperlink
  • Add atom linter information to README.md
  • Fixed duplicated word in the tagline message on the CLI
  • Removed failing repository from tests (yoshuawuyts/initialize)

5.1.0 - 2015-08-14

view diff

Fixed

  • eslint-config-standard@4.1.0 (history)
  • eslint-plugin-react@3.2.2 (CHANGELOG)
    • Fix crash when propTypes don't have any parent
    • Fix jsx-no-literals reporting errors outside JSX

Changed

  • Bump eslint from 1.0.0 to 1.2.0 (CHANGELOG)
  • Added more test repositories and disabled some that were failing
  • Update bikeshedding link on README.md

5.0.2 - 2015-08-06

view diff

Changed

  • eslint-config-standard-react@1.0.4 (history)
    • Disable Rule: react/wrap-multilines
  • Minor README updates

5.0.1 - 2015-08-05

view diff

5.0.0 - 2015-08-03

view diff

4.5.4 - 2015-07-13

view diff

4.5.3 - 2015-07-10

view diff

4.5.2 - 2015-07-02

view diff

4.5.1 - 2015-06-30

view diff

4.5.0 - 2015-06-30

view diff

4.4.1 - 2015-06-29

view diff

4.4.0 - 2015-06-27

view diff

4.3.3 - 2015-06-26

view diff

4.3.2 - 2015-06-23

view diff

4.3.1 - 2015-06-18

view diff

4.3.0 - 2015-06-16

view diff

4.2.1 - 2015-06-12

view diff

4.2.0 - 2015-06-11

view diff

4.1.1 - 2015-06-11

view diff

4.1.0 - 2015-06-10

view diff

4.0.1 - 2015-06-01

view diff

4.0.0 - 2015-05-30

view diff