Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 8eb05e2

Browse files
committed
Misc: update 2.4.0 changelog with bug fix
1 parent 65f6df1 commit 8eb05e2

1 file changed

Lines changed: 20 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,19 @@ var whatDoesAnimalsSay = {
4747
};
4848
```
4949

50+
### Fixes
51+
52+
* Account for bare blocks in both [`disallowNewlineBeforeBlockStatements`](http://jscs.info/rule/disallowNewlineBeforeBlockStatements) and [`disallowSpaceBeforeBlockStatements`](http://jscs.info/rule/disallowSpaceBeforeBlockStatements)
53+
54+
```js
55+
// allows
56+
var a = 1;
57+
58+
{
59+
let b = 1;
60+
}
61+
```
62+
5063
## Version [2.3.5](https://github.com/jscs-dev/node-jscs/compare/v2.3.4...v2.3.5) (10-19-2015):
5164

5265
Why not fix some more bugs!
@@ -95,7 +108,7 @@ const { foo, bar, } = baz;
95108
const [ foo, bar, ] = baz;
96109
```
97110
98-
@hzoo
111+
hzoo
99112
100113
## Version [2.3.4](https://github.com/jscs-dev/node-jscs/compare/v2.3.3...v2.3.4) (10-17-2015):
101114
@@ -104,7 +117,7 @@ const [ foo, bar, ] = baz;
104117
105118
- Fixed an issue with all function spacing rules not accounting for the generators [`a2c009f`](https://github.com/jscs-dev/node-jscs/commit/a2c009f19aaf410a46abb3edfbc56d4aa9931f41) [`#1175`](https://github.com/jscs-dev/node-jscs/issues/1175)
106119
107-
@hzoo
120+
hzoo
108121
109122
## Version [2.3.3](https://github.com/jscs-dev/node-jscs/compare/v2.3.2...v2.3.3) (10-16-2015):
110123
@@ -113,7 +126,7 @@ const [ foo, bar, ] = baz;
113126
114127
- Fixed an autofix issue with all function spacing rules and not accounting for the async keyword [`cf134a1`](https://github.com/jscs-dev/node-jscs/commit/cf134a12c1ab0bb7a23c7197780593bfdb8682e2) [`#1873`](https://github.com/jscs-dev/node-jscs/issues/1873)
115128
116-
@hzoo
129+
hzoo
117130
118131
## Version [2.3.2](https://github.com/jscs-dev/node-jscs/compare/v2.3.1...v2.3.2) (10-14-2015):
119132
@@ -198,7 +211,7 @@ Again, a big thanks to everything using [JSCS](jscs.info)! Definitely continue t
198211
199212
We'll probably be moving more of the new rule/option issues to [`orphaned`](https://github.com/jscs-dev/node-jscs/issues?q=label%3Aorphaned+is%3Aclosed) which just means that they are on hold but anyone can still PR it or reopen it later. Remember to tweet at us at [@jscs_dev](https://twitter.com/jscs_dev) and chat with us on our [gitter room](https://gitter.im/jscs-dev/node-jscs)!
200213
201-
@hzoo
214+
hzoo
202215
203216
## Version [2.3.0](https://github.com/jscs-dev/node-jscs/compare/v2.2.1...v2.3.0) (10-07-2015):
204217
@@ -273,7 +286,7 @@ var a,b;
273286
274287
Again, a big thanks to everything using JSCS! Definitely continue to report any bugs and new ideas! We always appreciate any help/PRs as we don't have that many resources!
275288
276-
@hzoo
289+
hzoo
277290
278291
### Other
279292
@@ -454,15 +467,15 @@ We have a [`beginner-friendly`](https://github.com/jscs-dev/node-jscs/labels/beg
454467
455468
Thanks to everyone who has been submitting issues/PRs!
456469
457-
It's been almost a year since I (@hzoo) really started contributing to open source. It's still crazy to me that my first pull request was just adding the [table of contents](https://github.com/jscs-dev/node-jscs/pull/677). I was so excited to contribute that day!
470+
It's been almost a year since I (hzoo) really started contributing to open source. It's still crazy to me that my first pull request was just adding the [table of contents](https://github.com/jscs-dev/node-jscs/pull/677). I was so excited to contribute that day!
458471
459472
Little did I know I would slowly do more and more - typo fixes, docs changes, bugfixes, rules, and then eventually become part of the team! I've become a better communicator and become more confident to give and take constructive feedback. I'm currently still figuring out how to review PRs, label issues, do changelogs (like right now), release, etc.
460473
461474
So much has happened after starting that one simple contribution! Even though I know a lot more about ASTs, javascript/node, and programming style, it all adds up to much more than that technical knowledge.
462475
463476
Contributing here helped me make PRs to a lot of other projects (in my case babel, eslint, and others). I understand more that it doesn't take a special person to start helping out. I really hope to encourage others to join our awesome open source community at large!
464477
465-
[@hzoo](https://github.com/hzoo)
478+
[hzoo](https://github.com/hzoo)
466479
467480
### Other Awesome Changes!
468481

0 commit comments

Comments
 (0)