UNPKG

4.75 kBMarkdownView Raw
1# Changelog
2
3## v7.1.0
4Added junit report #171 @Lootjs.
5
6## v7.0.0
7- Drop support for Node.js < 10.
8- Add .yaspellerrc.js and .yaspellerrc.json for project config #153, #150
9
10## v6.1.0
11- Fix lost symlink #145, #128.
12- Print row:col for repeated words #142, #134.
13- Fix repeated words with code for markdown files #141, #134.
14
15## v6.0.4
16- Fix: print a typo warning at the end if there are typos #121.
17
18## v6.0.3
19- Updated deps in package.json.
20
21## v6.0.2
22- Updated deps in package.json.
23
24## v6.0.1
25- Updated deps in package.json.
26
27## v6.0.0
28- Drop support for old Node.js < 8.
29- Update deps in package.json
30
31## v5.1.0
32- Updated deps in package.json.
33- Add warning where to fix a typo #115.
34
35## v5.0.1
36- FIX: sitemap.xml - TypeError: Cannot read property 'replace' of undefined #113.
37
38## v5.0.0
39- FIX: **Breaking changes**: Incorrect work of dictionary words in substrings #106.
40- FIX: Comments in JSON #108.
41
42## v4.2.1
43FIX: TypeError: Cannot destructure property config of 'undefined' or 'null' #103.
44
45## v4.2.0
46`yaspeller` field in `package.json` #100 (@thepocp), #101 (@shashkovdanil).
47
48## v4.1.0
49- Updated deps in package.json.
50- Warnings for unknown properties in config files #94.
51
52## v4.0.3
53Fixed exit code #87.
54
55## v4.0.2
56Fixed SyntaxError #83.
57
58## 4.0.1
59- Fixed error handling for Yandex.Speller API #84.
60- Updated deps in package.json.
61
62## 4.0.0
63- Add --init CLI option #77
64- Add --stdin and --stdin-filename CLI options #76
65
66Before:
67`echo "Hello, world!" | yaspeller`
68
69After:
70`echo "Hello, world!" | yaspeller --stdin`
71or
72`echo "Hello, world!" | yaspeller --stdin --stdin-filename hello.txt`
73
74## 3.3.0
75- Glob patterns for Windows
76- Updated deps in package.json
77
78## 3.2.0
79- File extension with multiple dots #66, #67 @levonet
80
81## 3.1.0
82- Remove acute accent, shy and other symbols #65
83- Updated deps in package.json
84
85Bugs:
86- Can't read options --config #61 @pavelpower
87- Fix the error message in the dictionary.js #60 @vessd
88- Fix(readme): translate 'или' to 'or' #57 @JLHwung
89
90## 3.0.0
91- Added line number in reports
92- Removed support for old format of words in the dictionary
93- A support for old Node version is dropped
94- Updated deps in package.json
95
96## 2.9.1
97- Small fixes in README.md for npmjs.org
98
99## 2.9.0
100- Ability to ignore the text using regular expressions (`--ignore-text` for CLI or `ignoreText` for `.yaspellerrc`)
101- Updated deps in package.json
102
103## 2.8.2
104- Small fix for stdin #48
105- Updated deps in package.json
106
107## 2.8.1
108- Updated deps in package.json
109
110## 2.8.0
111- Added support for stdin
112- Updated deps in package.json
113
114## 2.7.0
115- Separate module for Yandex.Speller API
116- Updated deps in package.json
117
118## 2.6.0
119- Added filter “Show only errors” in HTML report
120- Updated deps in package.json
121
122## 2.5.1
123- Updated deps in package.json
124
125## 2.5.0
126- Replace npm module `eyo` to `eyo-kernel`
127- Output warnings of duplicate words in dictionaries
128- Update deps in package.json
129- Simplified regular expressions in words in the dictionary
130
131Before (<= 2.4.0):
132```js
133[
134 "someword1", // someword1 = someword1
135 "Someword2", // Someword2 = Someword2
136 "/some(w|W)ord[23]/", // some(w|W)ord[23] = some(w|W)ord[23]
137 "/Some(w|W)ord/" // Some(w|W)ord = Some(w|W)ord
138]
139```
140
141After (2.5.0):
142```js
143[
144 "someword1", // someword1 = someword1 and Someword1
145 "Someword2", // Someword2 = Someword2
146 "some(w|W)ord[23]", // some(w|W)ord[23] = some(w|W)ord[23] and Some(w|W)ord[23]
147 "Some(w|W)ord" // Some(w|W)ord = Some(w|W)ord
148]
149```
150
151## 2.4.0
152- Ability to ignore text when checking
153
154### Bug fixes
155- Fix JSON comments in dictionaries and config's
156
157## 2.3.0
158- JSON comments in dictionaries and config's #35
159- Ability to specify multiple dictionaries in option --dictionary #33
160- Markdown report #31
161- Update deps in package.json
162
163## 2.2.0
164- Exit code for error loading in API #29.
165- Update deps in package.json.
166
167## 2.1.0
168- Ability to use an empty parameter `--file-extensions` from CLI.
169
170### Bug fixes
171- Error with an unknown site.
172
173## 2.0.1
174### Bug fixes
175- Load config after args is parsed #27
176
177## 2.0.0
178- Support for checking the letter Ё (`--check-yo` or `checkYo: true`).
179- Dictionary of `.yaspellerrc` and specified on the command line are used together.
180- Setting `fileExtensions` is not used for checking one file (`yaspeller -l ru my_file.txt`).
181- Added report `error_dictionary` for the collection of typos in files.
182
183## 1.1.0
184- Use settings `excludeFiles` and `fileExtensions` for checking one file.
185- Support for regular expressions #18.
186- Fixed detection format #19.
187
188## 1.0.6
189- Update deps in package.json.
190- Added changelog.
191
192## 1.0.5
193### Bug fixes
194- Fix file protocol in html report.
195
196## 1.0.4
197### Bug fixes
198- npm: Fix LF.
199
200## 1.0.3
201### Bug fixes
202- Crash of Yaspeller when try Habrahabr url #22.
203
204## 1.0.2
205Initial public release.
206
\No newline at end of file