UNPKG

7.63 kBMarkdownView Raw
13.0.1 / 2017-07-05
2------------------
3
4- Fixed bug in `writeFile` when there was a serialization error & no callback was passed. In previous versions, an empty file would be written; now no file is written.
5
63.0.0 / 2017-04-25
7------------------
8
9- Changed behavior of `throws` option for `readFileSync`; now does not throw filesystem errors when `throws` is `false`
10
112.4.0 / 2016-09-15
12------------------
13### Changed
14- added optional support for `graceful-fs` [#62]
15
162.3.1 / 2016-05-13
17------------------
18- fix to support BOM. [#45][#45]
19
202.3.0 / 2016-04-16
21------------------
22- add `throws` to `readFile()`. See [#39][#39]
23- add support for any arbitrary `fs` module. Useful with [mock-fs](https://www.npmjs.com/package/mock-fs)
24
252.2.3 / 2015-10-14
26------------------
27- include file name in parse error. See: https://github.com/jprichardson/node-jsonfile/pull/34
28
292.2.2 / 2015-09-16
30------------------
31- split out tests into separate files
32- fixed `throws` when set to `true` in `readFileSync()`. See: https://github.com/jprichardson/node-jsonfile/pull/33
33
342.2.1 / 2015-06-25
35------------------
36- fixed regression when passing in string as encoding for options in `writeFile()` and `writeFileSync()`. See: https://github.com/jprichardson/node-jsonfile/issues/28
37
382.2.0 / 2015-06-25
39------------------
40- added `options.spaces` to `writeFile()` and `writeFileSync()`
41
422.1.2 / 2015-06-22
43------------------
44- fixed if passed `readFileSync(file, 'utf8')`. See: https://github.com/jprichardson/node-jsonfile/issues/25
45
462.1.1 / 2015-06-19
47------------------
48- fixed regressions if `null` is passed for options. See: https://github.com/jprichardson/node-jsonfile/issues/24
49
502.1.0 / 2015-06-19
51------------------
52- cleanup: JavaScript Standard Style, rename files, dropped terst for assert
53- methods now support JSON revivers/replacers
54
552.0.1 / 2015-05-24
56------------------
57- update license attribute https://github.com/jprichardson/node-jsonfile/pull/21
58
592.0.0 / 2014-07-28
60------------------
61* added `\n` to end of file on write. [#14](https://github.com/jprichardson/node-jsonfile/pull/14)
62* added `options.throws` to `readFileSync()`
63* dropped support for Node v0.8
64
651.2.0 / 2014-06-29
66------------------
67* removed semicolons
68* bugfix: passed `options` to `fs.readFile` and `fs.readFileSync`. This technically changes behavior, but
69changes it according to docs. [#12][#12]
70
711.1.1 / 2013-11-11
72------------------
73* fixed catching of callback bug (ffissore / #5)
74
751.1.0 / 2013-10-11
76------------------
77* added `options` param to methods, (seanodell / #4)
78
791.0.1 / 2013-09-05
80------------------
81* removed `homepage` field from package.json to remove NPM warning
82
831.0.0 / 2013-06-28
84------------------
85* added `.npmignore`, #1
86* changed spacing default from `4` to `2` to follow Node conventions
87
880.0.1 / 2012-09-10
89------------------
90* Initial release.
91
92[#45]: https://github.com/jprichardson/node-jsonfile/issues/45 "Reading of UTF8-encoded (w/ BOM) files fails"
93[#44]: https://github.com/jprichardson/node-jsonfile/issues/44 "Extra characters in written file"
94[#43]: https://github.com/jprichardson/node-jsonfile/issues/43 "Prettyfy json when written to file"
95[#42]: https://github.com/jprichardson/node-jsonfile/pull/42 "Moved fs.readFileSync within the try/catch"
96[#41]: https://github.com/jprichardson/node-jsonfile/issues/41 "Linux: Hidden file not working"
97[#40]: https://github.com/jprichardson/node-jsonfile/issues/40 "autocreate folder doesnt work from Path-value"
98[#39]: https://github.com/jprichardson/node-jsonfile/pull/39 "Add `throws` option for readFile (async)"
99[#38]: https://github.com/jprichardson/node-jsonfile/pull/38 "Update README.md writeFile[Sync] signature"
100[#37]: https://github.com/jprichardson/node-jsonfile/pull/37 "support append file"
101[#36]: https://github.com/jprichardson/node-jsonfile/pull/36 "Add typescript definition file."
102[#35]: https://github.com/jprichardson/node-jsonfile/pull/35 "Add typescript definition file."
103[#34]: https://github.com/jprichardson/node-jsonfile/pull/34 "readFile JSON parse error includes filename"
104[#33]: https://github.com/jprichardson/node-jsonfile/pull/33 "fix throw->throws typo in readFileSync()"
105[#32]: https://github.com/jprichardson/node-jsonfile/issues/32 "readFile & readFileSync can possible have strip-comments as an option?"
106[#31]: https://github.com/jprichardson/node-jsonfile/pull/31 "[Modify] Support string include is unicode escape string"
107[#30]: https://github.com/jprichardson/node-jsonfile/issues/30 "How to use Jsonfile package in Meteor.js App?"
108[#29]: https://github.com/jprichardson/node-jsonfile/issues/29 "writefile callback if no error?"
109[#28]: https://github.com/jprichardson/node-jsonfile/issues/28 "writeFile options argument broken "
110[#27]: https://github.com/jprichardson/node-jsonfile/pull/27 "Use svg instead of png to get better image quality"
111[#26]: https://github.com/jprichardson/node-jsonfile/issues/26 "Breaking change to fs-extra"
112[#25]: https://github.com/jprichardson/node-jsonfile/issues/25 "support string encoding param for read methods"
113[#24]: https://github.com/jprichardson/node-jsonfile/issues/24 "readFile: Passing in null options with a callback throws an error"
114[#23]: https://github.com/jprichardson/node-jsonfile/pull/23 "Add appendFile and appendFileSync"
115[#22]: https://github.com/jprichardson/node-jsonfile/issues/22 "Default value for spaces in readme.md is outdated"
116[#21]: https://github.com/jprichardson/node-jsonfile/pull/21 "Update license attribute"
117[#20]: https://github.com/jprichardson/node-jsonfile/issues/20 "Add simple caching functionallity"
118[#19]: https://github.com/jprichardson/node-jsonfile/pull/19 "Add appendFileSync method"
119[#18]: https://github.com/jprichardson/node-jsonfile/issues/18 "Add updateFile and updateFileSync methods"
120[#17]: https://github.com/jprichardson/node-jsonfile/issues/17 "seem read & write sync has sequentially problem"
121[#16]: https://github.com/jprichardson/node-jsonfile/pull/16 "export spaces defaulted to null"
122[#15]: https://github.com/jprichardson/node-jsonfile/issues/15 "`jsonfile.spaces` should default to `null`"
123[#14]: https://github.com/jprichardson/node-jsonfile/pull/14 "Add EOL at EOF"
124[#13]: https://github.com/jprichardson/node-jsonfile/issues/13 "Add a final newline"
125[#12]: https://github.com/jprichardson/node-jsonfile/issues/12 "readFile doesn't accept options"
126[#11]: https://github.com/jprichardson/node-jsonfile/pull/11 "Added try,catch to readFileSync"
127[#10]: https://github.com/jprichardson/node-jsonfile/issues/10 "No output or error from writeFile"
128[#9]: https://github.com/jprichardson/node-jsonfile/pull/9 "Change 'js' to 'jf' in example."
129[#8]: https://github.com/jprichardson/node-jsonfile/pull/8 "Updated forgotten module.exports to me."
130[#7]: https://github.com/jprichardson/node-jsonfile/pull/7 "Add file name in error message"
131[#6]: https://github.com/jprichardson/node-jsonfile/pull/6 "Use graceful-fs when possible"
132[#5]: https://github.com/jprichardson/node-jsonfile/pull/5 "Jsonfile doesn't behave nicely when used inside a test suite."
133[#4]: https://github.com/jprichardson/node-jsonfile/pull/4 "Added options parameter to writeFile and writeFileSync"
134[#3]: https://github.com/jprichardson/node-jsonfile/issues/3 "test2"
135[#2]: https://github.com/jprichardson/node-jsonfile/issues/2 "homepage field must be a string url. Deleted."
136[#1]: https://github.com/jprichardson/node-jsonfile/pull/1 "adding an `.npmignore` file"