You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
6
6
## 10.0.0 - 2017-04-04
7
7
8
-
**Standard is turning 10.0.0!** 🎉
8
+
**`standard` just turned 10.0.0!** 🎉
9
9
10
10
As with every new major release, there are lots of new rules in 10.0.0 designed to
11
11
help catch bugs and make programmer intent more explicit.
@@ -20,7 +20,7 @@ considered an error**. It's finally time to update those dusty old APIs!
20
20
21
21
Deprecated APIs are problematic because they may print warning messages in the
22
22
console in recent versions of Node.js. This often confuses users and leads to
23
-
unecessary support tickets for project maintainers.
23
+
unnecessary support tickets for project maintainers.
24
24
25
25
Some deprecated APIs are even insecure (or at least prone to incorrect usage) which
26
26
can have serious security implications. For that reason, `standard` now prevents
@@ -31,8 +31,8 @@ functions which make programmer intent clearer and work in all currently support
31
31
versions of Node.js, including Node.js 4.x. For more background,
32
32
[see this Node.js issue](https://github.com/nodejs/node/issues/4660).
33
33
34
-
We also improved some rules to support common patterns in codebases that use React,
35
-
JSX, and Flow.
34
+
We also improved some rules to support common patterns in code bases that use
35
+
React, JSX, and Flow.
36
36
37
37
When you upgrade, consider running `standard --fix` to automatically fix some of
38
38
the issues caught by this new version.
@@ -47,7 +47,7 @@ the issues caught by this new version.
47
47
*(Estimated % of affected standard users, based on test suite in parens)*
48
48
49
49
- Disallow using deprecated Node.js APIs ([node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md)) [#693](https://github.com/feross/standard/issues/693) (13%)
50
-
- Ensures that code always runs without warnings on the lastest versions of Node
50
+
- Ensures that code always runs without warnings on the latest versions of Node.js
51
51
- Ensures that safe Buffer methods (`Buffer.from()`, `Buffer.alloc()`) are used instead of `Buffer()`
52
52
- Enforce callbacks always called with Node.js-style error first ([standard/no-callback-literal](https://github.com/xjamundx/eslint-plugin-standard#rules-explanations)) [#623](https://github.com/feross/standard/issues/623) (3%)
53
53
- Functions named `callback` or `cb` must be invoked with `null`, `undefined`, or an `Error` as the first argument
0 commit comments