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