gsd-pi 2.7.1 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +12 -5
  2. package/dist/loader.js +0 -0
  3. package/dist/modes/interactive/theme/dark.json +85 -0
  4. package/dist/modes/interactive/theme/light.json +84 -0
  5. package/dist/modes/interactive/theme/theme-schema.json +335 -0
  6. package/dist/modes/interactive/theme/theme.d.ts +78 -0
  7. package/dist/modes/interactive/theme/theme.d.ts.map +1 -0
  8. package/dist/modes/interactive/theme/theme.js +949 -0
  9. package/dist/modes/interactive/theme/theme.js.map +1 -0
  10. package/node_modules/@gsd/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  11. package/node_modules/@gsd/pi-coding-agent/dist/modes/interactive/interactive-mode.js +1 -1
  12. package/node_modules/@gsd/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -1
  13. package/node_modules/@gsd/pi-coding-agent/src/modes/interactive/interactive-mode.ts +1 -1
  14. package/node_modules/cliui/CHANGELOG.md +121 -0
  15. package/node_modules/color-convert/CHANGELOG.md +54 -0
  16. package/node_modules/esprima/ChangeLog +235 -0
  17. package/node_modules/mz/HISTORY.md +66 -0
  18. package/node_modules/proper-lockfile/CHANGELOG.md +108 -0
  19. package/node_modules/source-map/CHANGELOG.md +301 -0
  20. package/node_modules/thenify/History.md +11 -0
  21. package/node_modules/thenify-all/History.md +11 -0
  22. package/node_modules/y18n/CHANGELOG.md +100 -0
  23. package/node_modules/yargs/CHANGELOG.md +88 -0
  24. package/node_modules/yargs-parser/CHANGELOG.md +263 -0
  25. package/package.json +5 -2
  26. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  27. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.js +1 -1
  28. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -1
  29. package/packages/pi-coding-agent/src/modes/interactive/interactive-mode.ts +1 -1
  30. package/src/resources/extensions/browser-tools/capture.ts +165 -0
  31. package/src/resources/extensions/browser-tools/evaluate-helpers.ts +184 -0
  32. package/src/resources/extensions/browser-tools/index.ts +47 -4985
  33. package/src/resources/extensions/browser-tools/lifecycle.ts +265 -0
  34. package/src/resources/extensions/browser-tools/package.json +5 -1
  35. package/src/resources/extensions/browser-tools/refs.ts +264 -0
  36. package/src/resources/extensions/browser-tools/settle.ts +197 -0
  37. package/src/resources/extensions/browser-tools/state.ts +408 -0
  38. package/src/resources/extensions/browser-tools/tests/browser-tools-integration.test.mjs +652 -0
  39. package/src/resources/extensions/browser-tools/tests/browser-tools-unit.test.cjs +614 -0
  40. package/src/resources/extensions/browser-tools/tools/assertions.ts +342 -0
  41. package/src/resources/extensions/browser-tools/tools/forms.ts +801 -0
  42. package/src/resources/extensions/browser-tools/tools/inspection.ts +492 -0
  43. package/src/resources/extensions/browser-tools/tools/intent.ts +614 -0
  44. package/src/resources/extensions/browser-tools/tools/interaction.ts +865 -0
  45. package/src/resources/extensions/browser-tools/tools/navigation.ts +232 -0
  46. package/src/resources/extensions/browser-tools/tools/pages.ts +303 -0
  47. package/src/resources/extensions/browser-tools/tools/refs.ts +541 -0
  48. package/src/resources/extensions/browser-tools/tools/screenshot.ts +83 -0
  49. package/src/resources/extensions/browser-tools/tools/session.ts +400 -0
  50. package/src/resources/extensions/browser-tools/tools/wait.ts +247 -0
  51. package/src/resources/extensions/browser-tools/utils.ts +660 -0
  52. package/src/resources/extensions/gsd/git-service.ts +3 -0
  53. package/src/resources/extensions/shared/interview-ui.ts +1 -1
@@ -176,7 +176,7 @@ export class InteractiveMode {
176
176
  private pendingTools = new Map<string, ToolExecutionComponent>();
177
177
 
178
178
  // Tool output expansion state
179
- private toolOutputExpanded = false;
179
+ private toolOutputExpanded = true;
180
180
 
181
181
  // Thinking block visibility state
182
182
  private hideThinkingBlock = false;
@@ -0,0 +1,121 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [7.0.4](https://www.github.com/yargs/cliui/compare/v7.0.3...v7.0.4) (2020-11-08)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **deno:** import UIOptions from definitions ([#97](https://www.github.com/yargs/cliui/issues/97)) ([f04f343](https://www.github.com/yargs/cliui/commit/f04f3439bc78114c7e90f82ff56f5acf16268ea8))
11
+
12
+ ### [7.0.3](https://www.github.com/yargs/cliui/compare/v7.0.2...v7.0.3) (2020-10-16)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **exports:** node 13.0 and 13.1 require the dotted object form _with_ a string fallback ([#93](https://www.github.com/yargs/cliui/issues/93)) ([eca16fc](https://www.github.com/yargs/cliui/commit/eca16fc05d26255df3280906c36d7f0e5b05c6e9))
18
+
19
+ ### [7.0.2](https://www.github.com/yargs/cliui/compare/v7.0.1...v7.0.2) (2020-10-14)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **exports:** node 13.0-13.6 require a string fallback ([#91](https://www.github.com/yargs/cliui/issues/91)) ([b529d7e](https://www.github.com/yargs/cliui/commit/b529d7e432901af1af7848b23ed6cf634497d961))
25
+
26
+ ### [7.0.1](https://www.github.com/yargs/cliui/compare/v7.0.0...v7.0.1) (2020-08-16)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **build:** main should be build/index.cjs ([dc29a3c](https://www.github.com/yargs/cliui/commit/dc29a3cc617a410aa850e06337b5954b04f2cb4d))
32
+
33
+ ## [7.0.0](https://www.github.com/yargs/cliui/compare/v6.0.0...v7.0.0) (2020-08-16)
34
+
35
+
36
+ ### ⚠ BREAKING CHANGES
37
+
38
+ * tsc/ESM/Deno support (#82)
39
+ * modernize deps and build (#80)
40
+
41
+ ### Build System
42
+
43
+ * modernize deps and build ([#80](https://www.github.com/yargs/cliui/issues/80)) ([339d08d](https://www.github.com/yargs/cliui/commit/339d08dc71b15a3928aeab09042af94db2f43743))
44
+
45
+
46
+ ### Code Refactoring
47
+
48
+ * tsc/ESM/Deno support ([#82](https://www.github.com/yargs/cliui/issues/82)) ([4b777a5](https://www.github.com/yargs/cliui/commit/4b777a5fe01c5d8958c6708695d6aab7dbe5706c))
49
+
50
+ ## [6.0.0](https://www.github.com/yargs/cliui/compare/v5.0.0...v6.0.0) (2019-11-10)
51
+
52
+
53
+ ### ⚠ BREAKING CHANGES
54
+
55
+ * update deps, drop Node 6
56
+
57
+ ### Code Refactoring
58
+
59
+ * update deps, drop Node 6 ([62056df](https://www.github.com/yargs/cliui/commit/62056df))
60
+
61
+ ## [5.0.0](https://github.com/yargs/cliui/compare/v4.1.0...v5.0.0) (2019-04-10)
62
+
63
+
64
+ ### Bug Fixes
65
+
66
+ * Update wrap-ansi to fix compatibility with latest versions of chalk. ([#60](https://github.com/yargs/cliui/issues/60)) ([7bf79ae](https://github.com/yargs/cliui/commit/7bf79ae))
67
+
68
+
69
+ ### BREAKING CHANGES
70
+
71
+ * Drop support for node < 6.
72
+
73
+
74
+
75
+ <a name="4.1.0"></a>
76
+ ## [4.1.0](https://github.com/yargs/cliui/compare/v4.0.0...v4.1.0) (2018-04-23)
77
+
78
+
79
+ ### Features
80
+
81
+ * add resetOutput method ([#57](https://github.com/yargs/cliui/issues/57)) ([7246902](https://github.com/yargs/cliui/commit/7246902))
82
+
83
+
84
+
85
+ <a name="4.0.0"></a>
86
+ ## [4.0.0](https://github.com/yargs/cliui/compare/v3.2.0...v4.0.0) (2017-12-18)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * downgrades strip-ansi to version 3.0.1 ([#54](https://github.com/yargs/cliui/issues/54)) ([5764c46](https://github.com/yargs/cliui/commit/5764c46))
92
+ * set env variable FORCE_COLOR. ([#56](https://github.com/yargs/cliui/issues/56)) ([7350e36](https://github.com/yargs/cliui/commit/7350e36))
93
+
94
+
95
+ ### Chores
96
+
97
+ * drop support for node < 4 ([#53](https://github.com/yargs/cliui/issues/53)) ([b105376](https://github.com/yargs/cliui/commit/b105376))
98
+
99
+
100
+ ### Features
101
+
102
+ * add fallback for window width ([#45](https://github.com/yargs/cliui/issues/45)) ([d064922](https://github.com/yargs/cliui/commit/d064922))
103
+
104
+
105
+ ### BREAKING CHANGES
106
+
107
+ * officially drop support for Node < 4
108
+
109
+
110
+
111
+ <a name="3.2.0"></a>
112
+ ## [3.2.0](https://github.com/yargs/cliui/compare/v3.1.2...v3.2.0) (2016-04-11)
113
+
114
+
115
+ ### Bug Fixes
116
+
117
+ * reduces tarball size ([acc6c33](https://github.com/yargs/cliui/commit/acc6c33))
118
+
119
+ ### Features
120
+
121
+ * adds standard-version for release management ([ff84e32](https://github.com/yargs/cliui/commit/ff84e32))
@@ -0,0 +1,54 @@
1
+ # 1.0.0 - 2016-01-07
2
+
3
+ - Removed: unused speed test
4
+ - Added: Automatic routing between previously unsupported conversions
5
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
6
+ - Removed: `xxx2xxx()` and `xxx2xxxRaw()` functions
7
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
8
+ - Removed: `convert()` class
9
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
10
+ - Changed: all functions to lookup dictionary
11
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
12
+ - Changed: `ansi` to `ansi256`
13
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
14
+ - Fixed: argument grouping for functions requiring only one argument
15
+ ([#27](https://github.com/Qix-/color-convert/pull/27))
16
+
17
+ # 0.6.0 - 2015-07-23
18
+
19
+ - Added: methods to handle
20
+ [ANSI](https://en.wikipedia.org/wiki/ANSI_escape_code#Colors) 16/256 colors:
21
+ - rgb2ansi16
22
+ - rgb2ansi
23
+ - hsl2ansi16
24
+ - hsl2ansi
25
+ - hsv2ansi16
26
+ - hsv2ansi
27
+ - hwb2ansi16
28
+ - hwb2ansi
29
+ - cmyk2ansi16
30
+ - cmyk2ansi
31
+ - keyword2ansi16
32
+ - keyword2ansi
33
+ - ansi162rgb
34
+ - ansi162hsl
35
+ - ansi162hsv
36
+ - ansi162hwb
37
+ - ansi162cmyk
38
+ - ansi162keyword
39
+ - ansi2rgb
40
+ - ansi2hsl
41
+ - ansi2hsv
42
+ - ansi2hwb
43
+ - ansi2cmyk
44
+ - ansi2keyword
45
+ ([#18](https://github.com/harthur/color-convert/pull/18))
46
+
47
+ # 0.5.3 - 2015-06-02
48
+
49
+ - Fixed: hsl2hsv does not return `NaN` anymore when using `[0,0,0]`
50
+ ([#15](https://github.com/harthur/color-convert/issues/15))
51
+
52
+ ---
53
+
54
+ Check out commit logs for older releases
@@ -0,0 +1,235 @@
1
+ 2018-06-17: Version 4.0.1
2
+
3
+ * Fix parsing async get/set in a class (issue 1861, 1875)
4
+ * Account for different return statement argument (issue 1829, 1897, 1928)
5
+ * Correct the handling of HTML comment when parsing a module (issue 1841)
6
+ * Fix incorrect parse async with proto-identifier-shorthand (issue 1847)
7
+ * Fix negative column in binary expression (issue 1844)
8
+ * Fix incorrect YieldExpression in object methods (issue 1834)
9
+ * Various documentation fixes
10
+
11
+ 2017-06-10: Version 4.0.0
12
+
13
+ * Support ES2017 async function and await expression (issue 1079)
14
+ * Support ES2017 trailing commas in function parameters (issue 1550)
15
+ * Explicitly distinguish parsing a module vs a script (issue 1576)
16
+ * Fix JSX non-empty container (issue 1786)
17
+ * Allow JSX element in a yield expression (issue 1765)
18
+ * Allow `in` expression in a concise body with a function body (issue 1793)
19
+ * Setter function argument must not be a rest parameter (issue 1693)
20
+ * Limit strict mode directive to functions with a simple parameter list (issue 1677)
21
+ * Prohibit any escape sequence in a reserved word (issue 1612)
22
+ * Only permit hex digits in hex escape sequence (issue 1619)
23
+ * Prohibit labelled class/generator/function declaration (issue 1484)
24
+ * Limit function declaration as if statement clause only in non-strict mode (issue 1657)
25
+ * Tolerate missing ) in a with and do-while statement (issue 1481)
26
+
27
+ 2016-12-22: Version 3.1.3
28
+
29
+ * Support binding patterns as rest element (issue 1681)
30
+ * Account for different possible arguments of a yield expression (issue 1469)
31
+
32
+ 2016-11-24: Version 3.1.2
33
+
34
+ * Ensure that import specifier is more restrictive (issue 1615)
35
+ * Fix duplicated JSX tokens (issue 1613)
36
+ * Scan template literal in a JSX expression container (issue 1622)
37
+ * Improve XHTML entity scanning in JSX (issue 1629)
38
+
39
+ 2016-10-31: Version 3.1.1
40
+
41
+ * Fix assignment expression problem in an export declaration (issue 1596)
42
+ * Fix incorrect tokenization of hex digits (issue 1605)
43
+
44
+ 2016-10-09: Version 3.1.0
45
+
46
+ * Do not implicitly collect comments when comment attachment is specified (issue 1553)
47
+ * Fix incorrect handling of duplicated proto shorthand fields (issue 1485)
48
+ * Prohibit initialization in some variants of for statements (issue 1309, 1561)
49
+ * Fix incorrect parsing of export specifier (issue 1578)
50
+ * Fix ESTree compatibility for assignment pattern (issue 1575)
51
+
52
+ 2016-09-03: Version 3.0.0
53
+
54
+ * Support ES2016 exponentiation expression (issue 1490)
55
+ * Support JSX syntax (issue 1467)
56
+ * Use the latest Unicode 8.0 (issue 1475)
57
+ * Add the support for syntax node delegate (issue 1435)
58
+ * Fix ESTree compatibility on meta property (issue 1338)
59
+ * Fix ESTree compatibility on default parameter value (issue 1081)
60
+ * Fix ESTree compatibility on try handler (issue 1030)
61
+
62
+ 2016-08-23: Version 2.7.3
63
+
64
+ * Fix tokenizer confusion with a comment (issue 1493, 1516)
65
+
66
+ 2016-02-02: Version 2.7.2
67
+
68
+ * Fix out-of-bound error location in an invalid string literal (issue 1457)
69
+ * Fix shorthand object destructuring defaults in variable declarations (issue 1459)
70
+
71
+ 2015-12-10: Version 2.7.1
72
+
73
+ * Do not allow trailing comma in a variable declaration (issue 1360)
74
+ * Fix assignment to `let` in non-strict mode (issue 1376)
75
+ * Fix missing delegate property in YieldExpression (issue 1407)
76
+
77
+ 2015-10-22: Version 2.7.0
78
+
79
+ * Fix the handling of semicolon in a break statement (issue 1044)
80
+ * Run the test suite with major web browsers (issue 1259, 1317)
81
+ * Allow `let` as an identifier in non-strict mode (issue 1289)
82
+ * Attach orphaned comments as `innerComments` (issue 1328)
83
+ * Add the support for token delegator (issue 1332)
84
+
85
+ 2015-09-01: Version 2.6.0
86
+
87
+ * Properly allow or prohibit `let` in a binding identifier/pattern (issue 1048, 1098)
88
+ * Add sourceType field for Program node (issue 1159)
89
+ * Ensure that strict mode reserved word binding throw an error (issue 1171)
90
+ * Run the test suite with Node.js and IE 11 on Windows (issue 1294)
91
+ * Allow binding pattern with no initializer in a for statement (issue 1301)
92
+
93
+ 2015-07-31: Version 2.5.0
94
+
95
+ * Run the test suite in a browser environment (issue 1004)
96
+ * Ensure a comma between imported default binding and named imports (issue 1046)
97
+ * Distinguish `yield` as a keyword vs an identifier (issue 1186)
98
+ * Support ES6 meta property `new.target` (issue 1203)
99
+ * Fix the syntax node for yield with expression (issue 1223)
100
+ * Fix the check of duplicated proto in property names (issue 1225)
101
+ * Fix ES6 Unicode escape in identifier name (issue 1229)
102
+ * Support ES6 IdentifierStart and IdentifierPart (issue 1232)
103
+ * Treat await as a reserved word when parsing as a module (issue 1234)
104
+ * Recognize identifier characters from Unicode SMP (issue 1244)
105
+ * Ensure that export and import can be followed by a comma (issue 1250)
106
+ * Fix yield operator precedence (issue 1262)
107
+
108
+ 2015-07-01: Version 2.4.1
109
+
110
+ * Fix some cases of comment attachment (issue 1071, 1175)
111
+ * Fix the handling of destructuring in function arguments (issue 1193)
112
+ * Fix invalid ranges in assignment expression (issue 1201)
113
+
114
+ 2015-06-26: Version 2.4.0
115
+
116
+ * Support ES6 for-of iteration (issue 1047)
117
+ * Support ES6 spread arguments (issue 1169)
118
+ * Minimize npm payload (issue 1191)
119
+
120
+ 2015-06-16: Version 2.3.0
121
+
122
+ * Support ES6 generator (issue 1033)
123
+ * Improve parsing of regular expressions with `u` flag (issue 1179)
124
+
125
+ 2015-04-17: Version 2.2.0
126
+
127
+ * Support ES6 import and export declarations (issue 1000)
128
+ * Fix line terminator before arrow not recognized as error (issue 1009)
129
+ * Support ES6 destructuring (issue 1045)
130
+ * Support ES6 template literal (issue 1074)
131
+ * Fix the handling of invalid/incomplete string escape sequences (issue 1106)
132
+ * Fix ES3 static member access restriction (issue 1120)
133
+ * Support for `super` in ES6 class (issue 1147)
134
+
135
+ 2015-03-09: Version 2.1.0
136
+
137
+ * Support ES6 class (issue 1001)
138
+ * Support ES6 rest parameter (issue 1011)
139
+ * Expand the location of property getter, setter, and methods (issue 1029)
140
+ * Enable TryStatement transition to a single handler (issue 1031)
141
+ * Support ES6 computed property name (issue 1037)
142
+ * Tolerate unclosed block comment (issue 1041)
143
+ * Support ES6 lexical declaration (issue 1065)
144
+
145
+ 2015-02-06: Version 2.0.0
146
+
147
+ * Support ES6 arrow function (issue 517)
148
+ * Support ES6 Unicode code point escape (issue 521)
149
+ * Improve the speed and accuracy of comment attachment (issue 522)
150
+ * Support ES6 default parameter (issue 519)
151
+ * Support ES6 regular expression flags (issue 557)
152
+ * Fix scanning of implicit octal literals (issue 565)
153
+ * Fix the handling of automatic semicolon insertion (issue 574)
154
+ * Support ES6 method definition (issue 620)
155
+ * Support ES6 octal integer literal (issue 621)
156
+ * Support ES6 binary integer literal (issue 622)
157
+ * Support ES6 object literal property value shorthand (issue 624)
158
+
159
+ 2015-03-03: Version 1.2.5
160
+
161
+ * Fix scanning of implicit octal literals (issue 565)
162
+
163
+ 2015-02-05: Version 1.2.4
164
+
165
+ * Fix parsing of LeftHandSideExpression in ForInStatement (issue 560)
166
+ * Fix the handling of automatic semicolon insertion (issue 574)
167
+
168
+ 2015-01-18: Version 1.2.3
169
+
170
+ * Fix division by this (issue 616)
171
+
172
+ 2014-05-18: Version 1.2.2
173
+
174
+ * Fix duplicated tokens when collecting comments (issue 537)
175
+
176
+ 2014-05-04: Version 1.2.1
177
+
178
+ * Ensure that Program node may still have leading comments (issue 536)
179
+
180
+ 2014-04-29: Version 1.2.0
181
+
182
+ * Fix semicolon handling for expression statement (issue 462, 533)
183
+ * Disallow escaped characters in regular expression flags (issue 503)
184
+ * Performance improvement for location tracking (issue 520)
185
+ * Improve the speed of comment attachment (issue 522)
186
+
187
+ 2014-03-26: Version 1.1.1
188
+
189
+ * Fix token handling of forward slash after an array literal (issue 512)
190
+
191
+ 2014-03-23: Version 1.1.0
192
+
193
+ * Optionally attach comments to the owning syntax nodes (issue 197)
194
+ * Simplify binary parsing with stack-based shift reduce (issue 352)
195
+ * Always include the raw source of literals (issue 376)
196
+ * Add optional input source information (issue 386)
197
+ * Tokenizer API for pure lexical scanning (issue 398)
198
+ * Improve the web site and its online demos (issue 337, 400, 404)
199
+ * Performance improvement for location tracking (issue 417, 424)
200
+ * Support HTML comment syntax (issue 451)
201
+ * Drop support for legacy browsers (issue 474)
202
+
203
+ 2013-08-27: Version 1.0.4
204
+
205
+ * Minimize the payload for packages (issue 362)
206
+ * Fix missing cases on an empty switch statement (issue 436)
207
+ * Support escaped ] in regexp literal character classes (issue 442)
208
+ * Tolerate invalid left-hand side expression (issue 130)
209
+
210
+ 2013-05-17: Version 1.0.3
211
+
212
+ * Variable declaration needs at least one declarator (issue 391)
213
+ * Fix benchmark's variance unit conversion (issue 397)
214
+ * IE < 9: \v should be treated as vertical tab (issue 405)
215
+ * Unary expressions should always have prefix: true (issue 418)
216
+ * Catch clause should only accept an identifier (issue 423)
217
+ * Tolerate setters without parameter (issue 426)
218
+
219
+ 2012-11-02: Version 1.0.2
220
+
221
+ Improvement:
222
+
223
+ * Fix esvalidate JUnit output upon a syntax error (issue 374)
224
+
225
+ 2012-10-28: Version 1.0.1
226
+
227
+ Improvements:
228
+
229
+ * esvalidate understands shebang in a Unix shell script (issue 361)
230
+ * esvalidate treats fatal parsing failure as an error (issue 361)
231
+ * Reduce Node.js package via .npmignore (issue 362)
232
+
233
+ 2012-10-22: Version 1.0.0
234
+
235
+ Initial release.
@@ -0,0 +1,66 @@
1
+
2
+ 2.7.0 / 2017-09-13
3
+ ==================
4
+
5
+ * feat: support fs.copyFile (#58)
6
+
7
+ 2.6.0 / 2016-11-22
8
+ ==================
9
+
10
+ * Added fdatasync to fs api (#46)
11
+
12
+ 2.5.0 / 2016-11-04
13
+ ==================
14
+
15
+ * feat: support fs.mkdtemp
16
+
17
+ 2.4.0 / 2016-03-23
18
+ ==================
19
+
20
+ * add `fs.truncate()` [#34](https://github.com/normalize/mz/pull/34)
21
+
22
+ 2.3.1 / 2016-02-01
23
+ ==================
24
+
25
+ * update `any-promise@v1`
26
+
27
+ 2.3.0 / 2016-01-30
28
+ ==================
29
+
30
+ * feat(package): switch to `any-promise` to support more promise engines
31
+
32
+ 2.2.0 / 2016-01-24
33
+ ==================
34
+
35
+ * feat(package): add index.js to files
36
+
37
+ 2.1.0 / 2015-10-15
38
+ ==================
39
+
40
+ * support for readline library
41
+
42
+ 2.0.0 / 2015-05-24
43
+ ==================
44
+
45
+ * support callbacks as well
46
+
47
+ 1.2.0 / 2014-12-16
48
+ ==================
49
+
50
+ * refactor promisification to `thenify` and `thenify-all`
51
+
52
+ 1.1.0 / 2014-11-14
53
+ ==================
54
+
55
+ * use `graceful-fs` if available
56
+
57
+ 1.0.1 / 2014-08-18
58
+ ==================
59
+
60
+ * don't use `bluebird.promisify()` - unnecessarily wraps runtime errors, causing issues
61
+
62
+ 1.0.0 / 2014-06-18
63
+ ==================
64
+
65
+ * use `bluebird` by default if found
66
+ * support node 0.8
@@ -0,0 +1,108 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ <a name="4.1.2"></a>
6
+ ## [4.1.2](https://github.com/moxystudio/node-proper-lockfile/compare/v4.1.1...v4.1.2) (2021-01-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix node 14 updating graceful-fs ([#102](https://github.com/moxystudio/node-proper-lockfile/issues/102)) ([b0d988e](https://github.com/moxystudio/node-proper-lockfile/commit/b0d988e))
12
+
13
+
14
+
15
+ <a name="4.1.1"></a>
16
+ ## [4.1.1](https://github.com/moxystudio/node-proper-lockfile/compare/v4.1.0...v4.1.1) (2019-04-03)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * fix mtime precision on some filesystems ([#88](https://github.com/moxystudio/node-proper-lockfile/issues/88)) ([f266158](https://github.com/moxystudio/node-proper-lockfile/commit/f266158)), closes [#82](https://github.com/moxystudio/node-proper-lockfile/issues/82) [#87](https://github.com/moxystudio/node-proper-lockfile/issues/87)
22
+
23
+
24
+
25
+ <a name="4.1.0"></a>
26
+ # [4.1.0](https://github.com/moxystudio/node-proper-lockfile/compare/v4.0.0...v4.1.0) (2019-03-18)
27
+
28
+
29
+ ### Features
30
+
31
+ * allow second precision in mtime comparison ([#78](https://github.com/moxystudio/node-proper-lockfile/issues/78)) ([b2816a6](https://github.com/moxystudio/node-proper-lockfile/commit/b2816a6))
32
+
33
+
34
+
35
+ <a name="4.0.0"></a>
36
+ # [4.0.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.2.0...v4.0.0) (2019-03-12)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * fix typo in error message ([#68](https://github.com/moxystudio/node-proper-lockfile/issues/68)) ([b91cb55](https://github.com/moxystudio/node-proper-lockfile/commit/b91cb55))
42
+
43
+
44
+ ### Features
45
+
46
+ * make staleness check more robust ([#74](https://github.com/moxystudio/node-proper-lockfile/issues/74)) ([9cc0973](https://github.com/moxystudio/node-proper-lockfile/commit/9cc0973)), closes [#71](https://github.com/moxystudio/node-proper-lockfile/issues/71) [/github.com/ipfs/js-ipfs-repo/issues/188#issuecomment-468682971](https://github.com//github.com/ipfs/js-ipfs-repo/issues/188/issues/issuecomment-468682971)
47
+
48
+
49
+ ### BREAKING CHANGES
50
+
51
+ * We were marking the lock as compromised when system went into sleep or if the event loop was busy taking too long to run the internals timers, Now we keep track of the mtime updated by the current process, and if we lose some cycles in the update process but recover and the mtime is still ours we do not mark the lock as compromised.
52
+
53
+
54
+
55
+ <a name="3.2.0"></a>
56
+ # [3.2.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.1.0...v3.2.0) (2018-11-19)
57
+
58
+
59
+ ### Features
60
+
61
+ * add lock path option ([#66](https://github.com/moxystudio/node-proper-lockfile/issues/66)) ([32f1b8d](https://github.com/moxystudio/node-proper-lockfile/commit/32f1b8d))
62
+
63
+
64
+
65
+ <a name="3.1.0"></a>
66
+ # [3.1.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.2...v3.1.0) (2018-11-15)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * **package:** update retry to version 0.12.0 ([#50](https://github.com/moxystudio/node-proper-lockfile/issues/50)) ([d400b98](https://github.com/moxystudio/node-proper-lockfile/commit/d400b98))
72
+
73
+
74
+ ### Features
75
+
76
+ * add signal exit ([#65](https://github.com/moxystudio/node-proper-lockfile/issues/65)) ([f20bc45](https://github.com/moxystudio/node-proper-lockfile/commit/f20bc45))
77
+
78
+
79
+
80
+ <a name="3.0.2"></a>
81
+ ## [3.0.2](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.1...v3.0.2) (2018-01-30)
82
+
83
+
84
+
85
+ <a name="3.0.1"></a>
86
+ ## [3.0.1](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.0...v3.0.1) (2018-01-20)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * restore ability to use lockfile() directly ([0ef8fbc](https://github.com/moxystudio/node-proper-lockfile/commit/0ef8fbc))
92
+
93
+
94
+
95
+ <a name="3.0.0"></a>
96
+ # [3.0.0](https://github.com/moxystudio/node-proper-lockfile/compare/v2.0.1...v3.0.0) (2018-01-20)
97
+
98
+
99
+ ### Chores
100
+
101
+ * update project to latest node lts ([b1d43e5](https://github.com/moxystudio/node-proper-lockfile/commit/b1d43e5))
102
+
103
+
104
+ ### BREAKING CHANGES
105
+
106
+ * remove callback support
107
+ * use of node lts language features such as object spread
108
+ * compromised function in lock() has been moved to an option