UNPKG

8.08 kBMarkdownView Raw
1# Changelog
2
3## 6.0.0
4
5- **Breaking change:** The package now has named exports. See examples below.
6- **Breaking change:** Separate async and sync APIs, accessible from different named exports. If you used `explorer.searchSync()` or `explorer.loadSync()`, you'll now create a sync explorer with `cosmiconfigSync()`, then use `explorerSync.search()` and `explorerSync.load()`.
7
8 ```js
9 // OLD: cosmiconfig v5
10 import cosmiconfig from 'cosmiconfig';
11
12 const explorer = cosmiconfig('example');
13 const searchAsyncResult = await explorer.search();
14 const loadAsyncResult = await explorer.load('./file/to/load');
15 const searchSyncResult = explorer.searchSync();
16 const loadSyncResult = explorer.loadSync('./file/to/load');
17
18 // NEW: cosmiconfig v6
19 import { cosmiconfig, cosmiconfigSync } from 'cosmiconfig';
20
21 const explorer = cosmiconfig('example');
22 const searchAsyncResult = await explorer.search();
23 const loadAsyncResult = await explorer.load('./file/to/load');
24
25 const explorerSync = cosmiconfigSync('example');
26 const searchSyncResult = explorerSync.search();
27 const loadSyncResult = explorerSync.load('./file/to/load');
28 ```
29- **Breaking change:** Remove support for Node 4 and 6. Requires Node 8+.
30- **Breaking change:** Use npm package [yaml](https://www.npmjs.com/package/yaml) to parse YAML instead of npm package [js-yaml](https://www.npmjs.com/package/js-yaml).
31- **Breaking change:** Remove `cosmiconfig.loaders` and add named export `defaultLoaders` that exports the default loaders used for each extension.
32
33 ```js
34 import { defaultLoaders } from 'cosmiconfig';
35
36 console.log(Object.entries(defaultLoaders))
37 // [
38 // [ '.js', [Function: loadJs] ],
39 // [ '.json', [Function: loadJson] ],
40 // [ '.yaml', [Function: loadYaml] ],
41 // [ '.yml', [Function: loadYaml] ],
42 // [ 'noExt', [Function: loadYaml] ]
43 // ]
44 ```
45- Migrate from Flowtype to Typescript.
46- Lazy load all default loaders.
47
48## 5.2.1
49
50- Chore: Upgrade `js-yaml` to avoid npm audit warning.
51
52## 5.2.0
53
54- Added: `packageProp` values can be arrays of strings, to allow for property names that include periods. (This was possible before, but not documented or deliberately supported.)
55- Chore: Replaced the `lodash.get` dependency with a locally defined function.
56- Chore: Upgrade `js-yaml` to avoid npm audit warning.
57
58## 5.1.0
59
60- Added: `packageProp` values can include periods to describe paths to nested objects within `package.json`.
61
62## 5.0.7
63
64- Fixed: JS loader bypasses Node's `require` cache, fixing a bug where updates to `.js` config files would not load even when Cosmiconfig was told not to cache.
65
66## 5.0.6
67
68- Fixed: Better error message if the end user tries an extension Cosmiconfig is not configured to understand.
69
70## 5.0.5
71
72- Fixed: `load` and `loadSync` work with paths relative to `process.cwd()`.
73
74## 5.0.4
75
76- Fixed: `rc` files with `.js` extensions included in default `searchPlaces`.
77
78## 5.0.3
79
80- Docs: Minor corrections to documentation. *Released to update package documentation on npm*.
81
82## 5.0.2
83
84- Fixed: Allow `searchSync` and `loadSync` to load JS configuration files whose export is a Promise.
85
86## 5.0.1
87
88The API has been completely revamped to increase clarity and enable a very wide range of new usage. **Please read the readme for all the details.**
89
90While the defaults remain just as useful as before — and you can still pass no options at all — now you can also do all kinds of wild and crazy things.
91
92- The `loaders` option allows you specify custom functions to derive config objects from files. Your loader functions could parse ES2015 modules or TypeScript, JSON5, even INI or XML. Whatever suits you.
93- The `searchPlaces` option allows you to specify exactly where cosmiconfig looks within each directory it searches.
94- The combination of `loaders` and `searchPlaces` means that you should be able to load pretty much any kind of configuration file you want, from wherever you want it to look.
95
96Additionally, the overloaded `load()` function has been split up into several clear and focused functions:
97
98- `search()` now searches up the directory tree, and `load()` loads a configuration file that you don't need to search for.
99- The `sync` option has been replaced with separate synchronous functions: `searchSync()` and `loadSync()`.
100- `clearFileCache()` and `clearDirectoryCache()` have been renamed to `clearLoadCache()` and `clearSearchPath()` respectively.
101
102More details:
103
104- The default JS loader uses `require`, instead of `require-from-string`. So you *could* use `require` hooks to control the loading of JS files (e.g. pass them through esm or Babel). In most cases it is probably preferable to use a custom loader.
105- The options `rc`, `js`, and `rcExtensions` have all been removed. You can accomplish the same and more with `searchPlaces`.
106- The default `searchPlaces` include `rc` files with extensions, e.g. `.thingrc.json`, `.thingrc.yaml`, `.thingrc.yml`. This is the equivalent of switching the default value of the old `rcExtensions` option to `true`.
107- The option `rcStrictJson` has been removed. To get the same effect, you can specify `noExt: cosmiconfig.loadJson` in your `loaders` object.
108- `packageProp` no longer accepts `false`. If you don't want to look in `package.json`, write a `searchPlaces` array that does not include it.
109- By default, empty files are ignored by `search()`. The new option `ignoreEmptySearchPlaces` allows you to load them, instead, in case you want to do something with empty files.
110- The option `configPath` has been removed. Just pass your filepaths directory to `load()`.
111- Removed the `format` option. Formats are now all handled via the file extensions specified in `loaders`.
112
113(If you're wondering with happened to 5.0.0 ... it was a silly publishing mistake.)
114
115## 4.0.0
116
117- Licensing improvement: updated `parse-json` from `3.0.0` to `4.0.0`(see [sindresorhus/parse-json#12][parse-json-pr-12]).
118- Changed: error message format for `JSON` parse errors(see [#101][pr-101]). If you were relying on the format of JSON-parsing error messages, this will be a breaking change for you.
119- Changed: set default for `searchPath` as `process.cwd()` in `explorer.load`.
120
121## 3.1.0
122
123- Added: infer format based on filePath
124
125## 3.0.1
126
127- Fixed: memory leak due to bug in `require-from-string`.
128- Added: for JSON files, append position to end of error message.
129
130## 3.0.0
131
132- 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.
133- Removed: `argv` config option.
134- Removed: support for Node versions < 4.
135- Added: `sync` option.
136- Fixed: Throw a clear error on getting empty config file.
137- Fixed: when a `options.configPath` is `package.json`, return the package prop, not the entire JSON file.
138
139## 2.2.2
140
141- Fixed: `options.configPath` and `--config` flag are respected.
142
143## 2.2.0, 2.2.1
144
145- 2.2.0 included a number of improvements but somehow broke stylelint. The changes were reverted in 2.2.1, to be restored later.
146
147## 2.1.3
148
149- Licensing improvement: switched from `json-parse-helpfulerror` to `parse-json`.
150
151## 2.1.2
152
153- Fixed: bug where an `ENOENT` error would be thrown is `searchPath` referenced a non-existent file.
154- Fixed: JSON parsing errors in Node v7.
155
156## 2.1.1
157
158- Fixed: swapped `graceful-fs` for regular `fs`, fixing a garbage collection problem.
159
160## 2.1.0
161
162- Added: Node 0.12 support.
163
164## 2.0.2
165
166- Fixed: Node version specified in `package.json`.
167
168## 2.0.1
169
170- Fixed: no more infinite loop in Windows.
171
172## 2.0.0
173
174- Changed: module now creates cosmiconfig instances with `load` methods (see README).
175- Added: caching (enabled by the change above).
176- Removed: support for Node versions <4.
177
178## 1.1.0
179
180- Add `rcExtensions` option.
181
182## 1.0.2
183
184- Fix handling of `require()`'s within JS module configs.
185
186## 1.0.1
187
188- Switch Promise implementation to pinkie-promise.
189
190## 1.0.0
191
192- Initial release.
193
194[parse-json-pr-12]: https://github.com/sindresorhus/parse-json/pull/12
195
196[pr-101]: https://github.com/davidtheclark/cosmiconfig/pull/101
197
\No newline at end of file