.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / cosmiconfig / CHANGELOG.md
1 # Changelog
2
3 ## 3.1.0
4
5 - Added: infer format based on filePath
6
7 ## 3.0.1
8
9 - Fixed: memory leak due to bug in `require-from-string`.
10 - Added: for JSON files, append position to end of error message.
11
12 ## 3.0.0
13
14 - Removed: support for loading config path using the `--config` flag. cosmiconfig will not parse command line arguments. Your application can parse command line arguments and pass them to cosmiconfig.
15 - Removed: `argv` config option.
16 - Removed: support for Node versions < 4.
17 - Added: `sync` option.
18 - Fixed: Throw a clear error on getting empty config file.
19 - Fixed: when a `options.configPath` is `package.json`, return the package prop, not the entire JSON file.
20
21 ## 2.2.2
22
23 - Fixed: `options.configPath` and `--config` flag are respected.
24
25 ## 2.2.0, 2.2.1
26
27 - 2.2.0 included a number of improvements but somehow broke stylelint. The changes were reverted in 2.2.1, to be restored later.
28
29 ## 2.1.3
30
31 - Licensing improvement: switched from `json-parse-helpfulerror` to `parse-json`.
32
33 ## 2.1.2
34
35 - Fixed: bug where an `ENOENT` error would be thrown is `searchPath` referenced a non-existent file.
36 - Fixed: JSON parsing errors in Node v7.
37
38 ## 2.1.1
39
40 - Fixed: swapped `graceful-fs` for regular `fs`, fixing a garbage collection problem.
41
42 ## 2.1.0
43
44 - Added: Node 0.12 support.
45
46 ## 2.0.2
47
48 - Fixed: Node version specified in `package.json`.
49
50 ## 2.0.1
51
52 - Fixed: no more infinite loop in Windows.
53
54 ## 2.0.0
55
56 - Changed: module now creates cosmiconfig instances with `load` methods (see README).
57 - Added: caching (enabled by the change above).
58 - Removed: support for Node versions <4.
59
60 ## 1.1.0
61
62 - Add `rcExtensions` option.
63
64 ## 1.0.2
65
66 - Fix handling of `require()`'s within JS module configs.
67
68 ## 1.0.1
69
70 - Switch Promise implementation to pinkie-promise.
71
72 ## 1.0.0
73
74 - Initial release.