-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
4516 lines (2836 loc) · 94.9 KB
/
ChangeLog
File metadata and controls
4516 lines (2836 loc) · 94.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2026.04.15, v18.12.0
feature:
- 4e38b16a ArrayExpression: indent
2026.04.15, v18.11.0
feature:
- 43aeb75b @putout/printer: ArrayExpression: indent
2026.04.14, v18.10.0
feature:
- 85c0371d @putout/printer: ArrayExpression: long-lines
2026.04.03, v18.9.3
feature:
- af4396ca @putout/printer: BinaryExpression: inside ReturnStatement
- a3aea18c @putout/printer: BinaryExpression: inside ReturnStatement
- 08dda337 @putout/printer: typescript v6.0.2
- 16455973 @putout/printer: check-dts v1.0.0
2026.03.21, v18.9.2
feature:
- 115dcd24 @putout/printer: MemberExpression: chain
2026.03.21, v18.9.1
feature:
- c470f660 @putout/printer: JSXElement: indent
2026.03.20, v18.9.0
feature:
- 2840175e @putout/printer: JSXElement: apply type-checker
- 2c116629 @putout/printer: JSXElement: indent
2026.03.20, v18.8.6
feature:
- 9e0406e2 @putout/printer: type-checker: maybeCutOptions
2026.03.20, v18.8.5
feature:
- a9df5bc7 @putout/printer: ObjectPattern: shouldAddNewline: simplify
2026.03.20, v18.8.4
feature:
- 292d01c0 @putout/printer: ObjectPattern: simplify
2026.03.20, v18.8.3
feature:
- 527b8425 @putout/printer: ObjectPattern: shouldAddNewline: simplify
- 0332d176 @putout/printer: ObjectPattern: isFunctionParam
- 3eadc072 @putout/printer: ObjectPattern: isLessThenMaxPropertiesInOneLine
- 63c73f94 @putout/printer: ObjectPattern: hasAssignObject: simplify
2026.03.19, v18.8.2
feature:
- 62e8f395 @putout/printer: ObjectPattern: isIndentAfterNewline
- 03b337f7 @putout/printer: ObjectPattern: isNewlineAfterComma: simplify
2026.03.19, v18.8.1
feature:
- cbc16cf6 @putout/printer: ObjectPattern: isBreaklineBeforeProperty
- a78cf04e @putout/printer: ObjectPattern: isCommaAfterProperty
- c5b21af0 @putout/printer: ObjectPattern: simplify
- 394ff5e4 @putout/printer: ObjectPattern: calculateLongAssignPattern: simplify
- 42c8dfd4 @putout/printer: ObjectPattern: isIndentBeforeProperty
2026.03.18, v18.8.0
feature:
- cc719056 @putout/printer: ArrayExpression: newline
- 53cdda91 @putout/printer: maxElementsInOneLine: 3
- e5d67901 @putout/printer: ObjectPattern: isPrevAssignObject: simplify
2026.03.18, v18.7.9
feature:
- 3e47d13f @putout/printer: ObjectPattern: comma: simplify
2026.03.18, v18.7.8
feature:
- 382ab893 @putout/printer: MemberExpression: isLooksLikeChain: simplify
2026.03.17, v18.7.7
feature:
- a257dabc @putout/printer: MemberExpression: isLooksLikeChain: simplify
2026.03.17, v18.7.6
feature:
- 8166fbad @putout/printer: MemberExpression: simplify
2026.03.16, v18.7.5
feature:
- f0cb1bfa @putout/printer: BlockStatement: isCallInsideChain: simplify
- 246851f5 @putout/printer: MemberExpression: simplify
- 3fd6353a @putout/printer: MemberExpression: simplify
- 2ddd2e69 @putout/printer: LogicalExpression: simplify
2026.03.16, v18.7.4
feature:
- a03e0d22 @putout/printer: type-checker: comparison
2026.03.15, v18.7.3
feature:
- 126ac069 @putout/printer: type-checker: boolean: +/-
2026.03.15, v18.7.2
feature:
- 03c11aa @putout/printer: ReturnStatements: maybeSpaceAfterKeyword: simplify
- 2a0d633 @putout/printer: ReturnStatement: isJSXWithComment
- 3ee3a68 @putout/printer: ReturnStatement: afterIf
2026.03.14, v18.7.1
feature:
- 5003310 @putout/printer: ReturnStatement: simplify
2026.03.14, v18.7.0
feature:
- b18dfef @putout/printer: SwitchStatement: space: improve support
- e5d54cd @putout/printer: SwitchStatement: simplify
2026.03.14, v18.6.6
feature:
- c4f79e0 2putout/printer: VariableDeclaration: conditions
- 42ea012 @putout/printer: VariableDeclaration: simplify
- 1d079db @putout/printer: VariableDeclaration: afterIf: skipAfter
2026.03.14, v18.6.5
feature:
- 93c758f @putout/printer: VariableDeclaration: afterIf: isNextAssign
2026.03.14, v18.6.4
feature:
- ccfe6be @putout/printer: VariableDeclaration: afterIf: simplify
- 70a6c99 @putout/printer: VariableDeclration: afterIf: simplify
2026.03.14, v18.6.3
feature:
- 5837376 @putout/printer: VariableDeclration: afterIf: simplify
2026.03.13, v18.6.2
feature:
- 98623e8 @putout/printer: VariableDeclaration: beforeIf: move out
2026.03.13, v18.6.1
feature:
- 07e38ad @putout/printer: VariableDeclaration: afterIf: move out
- 30cfca1 @putout/printer: VariableDeclaration: isNeedNewline: simplify
2026.03.13, v18.6.0
feature:
- 43bb843 @putout/printer: type-checker: whenTestsEnds: add
2026.03.13, v18.5.0
feature:
- c797ef4 @putout/printer: type-checker: rm include/exclude
- 5147c03 @putout/printer: merge-tuples-of-type-checkers
2026.03.12, v18.4.7
feature:
- de587ba @putout/printer: private imports: comments
2026.03.12, v18.4.6
feature:
- 7c290de @putout/printer: BlockStatement: simplify
- 0dc390f @putout/printer: BlockStatement: indent
2026.03.12, v18.4.5
feature:
- e18f600 @putout/printer: ArrayExpression: isCommaAfterElement
2026.03.11, v18.4.4
feature:
- 05d3e90 @putout/printer: BinaryExpression: isConcatenation
- b293a10 @putout/printer: ClassDeclaration: simplify
- e47c537 @putout/printer: ClassDeclaration: simplify
2026.03.10, v18.4.3
fix:
- ea60557 @putout/printer: is-concatenation
2026.03.10, v18.4.2
feature:
- fffa725 @putout/printer: TSTypeAliasDeclaration: simplify
- 02c1e2e @putout/printer: maybe-declare
2026.03.10, v18.4.1
feature:
- 4f2fb23 @putout/printer: is-concatenation
- 9c1917c @putout/printer: BinaryExpression: concatenate: simplify
- a8f5542 @putout/printer: ObjectExpression: ObjectProperty: isSpaceAfterComma
- e79a33c @putout/printer: ObjectExpression: ObjectProperty: space
- d206ffa @putout/printer: ObjectProperty: isCommaAfterProperty
2026.03.10, v18.4.0
feature:
- 3bcdf4b @putout/printer: ObjectExpression: callWithCallee
- e205336 @putout/printer: ObjectExpression: isNewlineAfterProperty
- c4f998d @putout/printer: ObjectExpression: comma: simplify
- 2a49a3f @putout/printer: ObjectExpression: isLinebreakAfterProperty
2026.03.10, v18.3.6
feature:
- a3281ef @putout/printer: ObjectExpression: isMultiline
- da64dc7 @putout/printer: ObjectExpression: isCommaAfterProperty
- 69ff480 @putout/printer: ObjectExpression: hasTrailingComment
- 50f7e07 @putout/printer: ObjectExpression: isIndentBeforeClosingCurlyBrace
2026.03.10, v18.3.5
feature:
- 8a3ffb9 @putout/printer: ObjectExpression: isIndentBeforeProperty
- 3d450fc @putout/printer: ObjectExpression: indent
2026.03.10, v18.3.4
feature:
- d3410bd @putout/printer: BlockStatement: simplify
2026.03.09, v18.3.3
feature:
- 088dab9 @putout/printer: type-checker: array -> set
2026.03.09, v18.3.2
feature:
- 0273534 @putout/printer: type-checker: validateResults: add
- e32d868 @putout/printer: @putout/plugin-minify v12.0.0
2026.03.08, v18.3.1
feature:
- 00f7cc1 @putout/printer: ArrayExpression: isCommaAfterElement
2026.03.08, v18.3.0
feature:
- 31aa6f8 @putout/printer: ArrayExpression: isIndentBeforeElement
- e21a6cd @putout/printer: ArrayExpression: simplify
- 00b646d @putout/printer: ArrayExpression: maybePrintSpace
- 56e83f6 @putout/printer: ArrayExpression: maybePrintCommaWithSpace
- 9be2086 @putout/printer: ArrayExpression: afterIf: simplify
- 2ccc185 @putout/printer: ArrayExpression: isCommaBeforeClosingSquareBrace
- 35e1a1a @putout/printer: ArrayExpression: neesComma
2026.03.08, v18.2.12
feature:
- 284d9a7 @putout/printer: ArrayExpression: isNewlineAfterComma: simplify
2026.03.08, v18.2.11
feature:
- b16bb59 @putout/printer: ArrayExpression: newline: isNewlineAfterComma
- 5f0e329 @putout/printer: @putout/plugin-minify v12.0.0
2026.03.08, v18.2.10
feature:
- 7a73310 @putout/printer: ArrayExpresison: maybeAdditionalIndent
- cfcf1ce @putout/printer: ArrayExpression: isSecondIndent
- 0acb26a @putout/printer: ArrayExpression: isSecondIndent
2026.03.08, v18.2.9
feature:
- f61d5f4 @putout/printer: ArrayExpression: isHideIndent
2026.03.08, v18.2.8
feature:
- 39d5af8 @putout/printer: ArrayExpression: isNeedIndent
2026.03.08, v18.2.7
feature:
- c873574 @putout/printer: isIncreaseIndent: move out: newlinew -> indent
- d3672b6 @putout/printer: ArrayExpression: newline: isIncreaseIndent
- 642c80f @putout/printer: ArrayExpression: indent: isArrayIndented: type-check
2026.03.08, v18.2.6
feature:
- 9363494 @putout/printer: ArrayExpression: isObjectAfterSimple: type-check
- 463944a @putout/printer: ArrayExpression: isZero -> !Boolean
2026.03.07, v18.2.5
fix:
- 3514e0f @putout/printer: type-checker: check for undefined
2026.03.07, v18.2.4
fix:
- 61b7dec @putout/printer: ArrayExpression: array-inside-call: filesystem
2026.03.07, v18.2.3
fix:
- 355176d @putout/printer: instrument -> instrumentName
feature:
- 85a60d6 @putout/printer: type-checker: report
2026.03.07, v18.2.2
feature:
- 7633d10 @putout/printer: ArrayExpression: isSimpleAfterObject
- c57048d @putout/printer: ArrayExpression: isCurrentNewLine: simplify
2026.03.07, v18.2.1
fix:
- b4e4b01 @putout/printer: ExpressionStatement
2026.03.07, v18.2.0
feature:
- 87135c0 @putout/printer: type-checker: disable instrument: add support
- 29e0a3c @putout/printer: type-checker: rm deepness
2026.03.07, v18.1.8
feature:
- 35d83ea @putout/printer: type-checker: dsl inside array
2026.03.07, v18.1.7
feature:
- 221c04e @putout/printer: ArrayExpression: one string
2026.03.07, v18.1.6
feature:
- b94489a @putout/printer: ArrayExpression: no new line when single element
2026.03.07, v18.1.5
feature:
- 142e7b8 @putout/printer: is: getNext -> callWithNext
2026.03.06, v18.1.4
fix:
- 27872ca @putout/printer: ArrayExpression: newline: string and object
2026.03.06, v18.1.3
fix:
- 033b2a6 @putout/printer: ArrayExpression: maxElementLengthInOneLine
2026.03.06, v18.1.2
feature:
- 5996fbf @putout/printer: TypeChecker: ->
- 7001376 @putout/printer: ArrayExpression: beforeIf: move out
- 2f22d1d @putout/printer: ArrayExpression: isSimpleBetweenObjects
- 50166f4 @putout/printer: ArrayExpression: isSpaceAfterComma
2026.03.06, v18.1.1
feature:
- ba26d34 @putout/printer: ExpressionStatement: isBreakline
2026.03.06, v18.1.0
feature:
- 604e849 @putout/printer: ArrayExpression: long identifier: improve support
- bdd07e7 @putout/printer: isMultiLine: siplify
- 945a833 @putout/printer: ArrayExpression: newline: isCoupleLines
- 2ca2751 @putout/printer: ArrayExpression: newline: isStringsInsideArray
- 488eb71 @putout/printer: ArrayExpression: newline: isSimpleAndObject
- 246f9df @putout/printer: ArrayExpression: newline: isIdentifierAndString
- 56637d1 @putout/printer: ArrayExpression: newline: isStringAndIdentifier
- caa4682 @putout/printer: ArrayExpression: newline: isStringAndIdentifier
- 0e9dc1d @putout/printer: ArrayExpression: newline: isMultiline: simplify
- 103ad2e @putout/printer: ExpressionStatement: isBreakline
- 04c19c3 @putout/printer: ExpressionStatement: isNextToAssignmentCall: simplify
- 4bcbd61 @putout/printer: ExpressionStatement: isNextStatementWithBlockComment: simplify
2026.03.06, v18.0.16
feature:
- 2a81cf2 @putout/printer: ExpressionStatement: rm is-inside-assign-next-assign-function
- 17d19f2 @putout/printer: ExpressionStatement: rm not
- 1c07e30 @putout/printer: ExpressionStatement: isBreakline: add
- 15f67f0 @putout/printer: ExpressionStatement: afterIf: move out
- c6783ee @putout/printer: ExpressionStatement: hasTrailingCommentNotCoupleLines
- 8e08572 @putout/printer: ExpressionStatement: isTopParentLast: simplify
- fe1b0ca @putout/printer: ExpressionStatement: isTopParentLast
- b84b9a6 @putout/printer: ExpressionStatement: isIndent
- d4d0106 @putout/printer: ExpressionStatement: beforeIf: simplify
- 9a4721a @putout/printer: ExpressionStatement: afterIf: simplify
- a9d2cf8 @putout/printer: ExpressionStatement: isBeforeElse: simplify
2026.03.06, v18.0.15
feature:
- 22d510e @putout/printer: ObjectExpression: isLogicalArgument
2026.03.06, v18.0.14
feature:
- 69fe928 @putout/printer: ObjectExpression: isManyLines: merge
- 5066c76 @putout/printer: isOneLine -> isManyLines
- 050d709 @putout/printer: ObjectExpression: isOneline: simplify
2026.03.05, v18.0.13
feature:
- 5a991b6 @putout/printer: FunctionDeclaration: simplify
2026.03.05, v18.0.12
fix:
- 9766539 @putout/printer: ArrayExpression: newline
2026.03.05, v18.0.11
feature:
- 6315e3c @putout/printer: BlockStatement: simplify
2026.03.05, v18.0.10
feature:
- d29c6de @putout/printer: ObjectExpression: isInsideTupleLike: simplify
- e4ee1c0 @putout/printer: ObjectExpression: isMemberExpressionCallee: simplify
- e1df5a9 @putout/printer: isThirdObjectInsideArray: rm
- c90efb6 ObjectExpression: isInsideExpression: reuse from NewExpression
- 84b86bb @putout/printer: VariableDeclaration: isInsideBody: reuse in ObjectExpression
2026.03.05, v18.0.9
feature:
- 5b851ca @putout/printer: VariableDeclaration: isInsideBody: simplify
2026.03.05, v18.0.8
feature:
- 08b7207 @putout/printer: VariableDeclaration: inside ForStatement
- dda61cc @putout/printer: type-check-coverage: check for only
2026.03.05, v18.0.7
feature:
- dd7f874 @putout/printer: VariableDeclaration: inside ForOfStatement: indent
2026.03.05, v18.0.6
feature:
- 2b1dbb4 @putout/printer: check-types: instrument
2026.03.04, v18.0.5
feature:
- a19962d @putout/printer: IfStatement: simplify
- fc6658a @putout/printer: IfStatement: apply typeChecker
2026.03.04, v18.0.4
feature:
- e81d579 @putout/printer: type-checker: export
2026.03.04, v18.0.3
fix:
- fd62a6d @putout/printer: is: isParentBlockLike -> isInsideBlockLike
2026.03.04, v18.0.2
feature:
- 854491c @putout/printer: VariableDeclaration: simplify
2026.03.04, v18.0.1
feature:
- 5e6e906 @putout/printer: VariableDeclaration: after: simplify
- 852f982 @putout/printer: @putout/plugin-printer v8.0.0
- 7b3977d @putout/printer: VariableDeclaration: skipAfter
- 4f43a9f VariableDeclaration: isNeedNewline
- 9dece24 @putout/printer: VariableDeclaration: isSemicolon
- b9a27e0 @putout/printer: VariableDeclaration: isInsideIf
- 06d6255 @putout/printer: is: isParentProgram -> isInsideProgram
- 2a0ef4e is: isParentBlock -> isInsideBlock
2026.03.04, v18.0.0
feature:
- 1aaf942 @putout/printer: ArrayExpression: newline: is more then max element length in one line
- a0d465b @putout/printer: maxElementLengthInOneLine: 10 -> 15
- eea22ae @putout/printer: BlockStatement: newline: simplify
- c9c9f34 @putout/printer: BlockStatement: isMethodOrArrow: simplify
- 010780c @putout/printer: private-imports: #type-checker
- 9a4b938 BlockStatements: apply type-checker
- 9357d36 type-checker: simplify
2026.03.04, v17.13.0
feature:
- 4af358d @putout/printer: type-checker: expression
- e3da216 @putout/printer: type-checker: improve dsl
- 93986ce @putout/printer: type checker: add
- 6a86e86 @putout/printer: type-checker: add
2026.03.03, v17.12.0
feature:
- aa951ef @putout/printer: IfStatement: trailing comments
- 3c15683 @putout/printer: isParentBlock: reuse
2026.03.03, v17.11.0
feature:
- 08981fd @putout/printer: WhileStatement: trailng comments: improve support
- abfacc7 @putout/printer: superc8 v12.2.4
- 0ff4fb3 @putout/printer: @putout/eslint v6.0.0
- aa35981 @putout/printer: #mark: add
- 52f16d2 @putout/printer: IfStatement: comments with next sibling
2026.03.03, v17.10.1
feature:
- 250f066 @putout/printer: #mark: add
- 6f44535 @putout/printer: IfStatement: comments with next sibling
2026.03.03, v17.10.0
feature:
- 76458a6 @putout/printer: IfStatement: trailing comments: improve support
- 8eebdfb @putout/printer: IfStatement: trailing comments
2026.02.22, v17.9.0
feature:
- cc0746d @putout/printer: private import: #types
- 0e9fa7f @putout/printer: move out indent
- c7f8249 @putout/printer: printer: simplify
- d2f8005 @putout/printer: tokenize: printer: add
2026.02.22, v17.8.1
feature:
- 89ae686 tokenize: rm useless round
2026.02.22, v17.8.0
feature:
- e4edea2 @putout/printer: comments: improve support
2026.02.18, v17.7.3
feature:
- 40c01d1 @putout/printer: rendy v5.0.0
2026.02.17, v17.7.2
feature:
- 4db4f2b @putout/printer: types: maybeVisitor: return type
2026.02.16, v17.7.1
feature:
- 3811a52 @putout/printer: TSDeclareFunction: no returnType
- 206f251 @putout/printer: redlint v6.0.0
- 90d9f97 @putout/printer: putout v42.0.1
- 2a805c8 @putout/printer: madrun v13.0.0
- 316c6d4 @putout/printer: eslint-plugin-putout v31.0.0
- b38077b @putout/printer: escover v6.0.0
- a36080d @putout/printer: @putout/plugin-promises v19.0.0
2026.02.16, v17.7.0
feature:
- 1512671 @putout/printer: types: maybeVisitor, visitors
2026.02.15, v17.6.0
feature:
- a27d2f6 @putout/printer: ReturnStatement after TryStatement
2026.02.13, v17.5.0
feature:
- e970987 @putout/printer: DoWhileStatement: semicolon
2026.02.11, v17.4.0
feature:
- 2bcb1e2 @putout/printer: ExportAllDeclaration: import attributes
2026.02.11, v17.3.0
feature:
- 26a5a19 @putout/printer: ExportDeclaration: import attributes
2026.02.11, v17.2.0
feature:
- 7cb116c @putout/printer: ArrayExpression: ObjectExpression, after StringLiteral/TemplateLiteral: indent
- 7a5f660 @putout/printer: eslint v10.0.0
2026.02.01, v17.1.0
feature:
- df72e84 @putout/printer: ObjectPattern: split to couple files
- 3dba268 @putout/printer: ObjectPattern: couple assigns
2026.01.28, v17.0.8
feature:
- d606ed8 @putout/printer: json: isJSON -> isJSONGroup
2026.01.21, v17.0.7
feature:
- bc4913e @putout/printer: SpreadElement inside ObjectExpression: improve support
2026.01.20, v17.0.6
feature:
- b206c36 @putout/printer: eslint-plugin-putout v30.0.0
- 6c38c72 @putout/printer: TSConditionalType: parens
2026.01.18, v17.0.5
fix:
- 5c83f27 @putout/printer: simplify imports
2026.01.18, v17.0.4
feature:
- 06823ba @putout/printer: print-params -> #print-params
2026.01.17, v17.0.3
feature:
- 8bbeef9 @putout/printer: maybe-parens -> #maybe-parens
- c6d5b2d @putout/printer: TSNonNullExpression: improve support
2026.01.11, v17.0.2
feature:
- 83bda2d apply private imports (https://github.com/coderaiser/putout/commit/b27db6567429e6c93207c23153a672b8aacdb8be)
2026.01.11, v17.0.1
fix:
- ee1df33 @putout/printer: drop support of node < 22
feature:
- 183f7ba @putout/printer: supertape v12.0.9
- cfa04f4 @putout/printer: fullstore v4.0.0
- 399ad3d @putout/printer: estree-to-babel v12.0.0
- 2641280 @putout/printer: @putout/operator-json v3.1.0
- ea8a6fe @putout/printer: @babel/parser v7.28.5
2026.01.04, v17.0.0
feature:
- b33d062 @putout/printer: migrate to ESM
- dcd78dd @putout/printer: redlint v5.0.2
- 45b4570 @putout/printer: goldstein v7.0.0
- 97a49eb @putout/printer: madrun v12.0.0
- 063fda0 @putout/printer: samadhi v4.0.2
- 3ff6ea5 @putout/printer: try-catch v4.0.6
- 09f5c5a @putout/printer: @putout/eslint v5.0.2
2026.01.03, v16.6.0
feature:
- 8558f03 @putout/printer: ExportDeclaration: export default from: add support
2025.12.27, v16.5.0
feature:
- 039ab4a @putout/printer: SwitchCase: maybe space after case
2025.12.11, v16.4.0
feature:
- 34371e9 @putout/printer: MemberExpression: chain: improve support
2025.12.09, v16.3.0
feature:
- 5c8c2ff @putout/printer: TSTypeLiteral: indent
- 6419576 @putout/printer: TSImportType: trailing comma
2025.12.09, v16.2.0
feature:
- e0a7a89 @putout/printer: TSPropertySignature: comments: improve support
2025.12.08, v16.1.0
feature:
- 1974703 @putout/printer: ClassDeclaration: implements: improve support
- f8a62fa @putout/printer: TSInterfaceDeclaration: improve support of extends
- 0a62781 @putout/printer: escover v5.0.0
- ca1d748 @putout/printer: putout v41.0.0
2025.11.28, v16.0.0
feature:
- 8464bc8 @putout/printer: TSImportType: argument -> source
- 79e538a @putout/printer: ImportDeclaration: drop support of assertions
- 4a62b80 @putout/printer: @putout/operate v15.0.0
- 1876784 @putout/printer: @putout/compare v19.0.1
- 0a777ac @putout/printer: eslint-plugin-putout v29.0.0
- b0874ca @putout/printer: @putout/babel v5.0.0
2025.11.27, v15.28.0
feature:
- b47c2fc @putout/printer: ObjectPattern: properties: leadingComments
2025.11.12, v15.27.0
feature:
- cd2a315 @putout/printer: MemberExpression: object is ObjectExpression: inside ArrowFunctionExpression
2025.11.07, v15.26.2
feature:
- c388dfa @putout/printer: IfStatement: consiquent is TryCatchStatement: add newline before else
2025.10.31, v15.26.1
feature:
- c929351 @putout/printer: ObjectPattern: calculateLongAssignPattern: simplify
2025.10.31, v15.26.0
feature:
- 366a0ca @putout/printer: ObjectPattern: computed: maxPropertiesLengthInOneLine check
2025.10.30, v15.25.0
feature:
- 96e0b13 @putout/printer: TSOptionalType: add
2025.10.29, v15.24.0
feature:
- 926c187 @putout/printer: TSTypeParameter: default
2025.10.01, v15.23.1
feature:
- d10b125 @putout/printer: ForStatement inside LabeledStatement: indent
2025.10.01, v15.23.0
feature:
- be1ec5d @putout/printer: WithStatement: add
2025.10.01, v15.22.0
feature:
- a295bb3 @putout/printer: TSTemplateLiteralType: add
2025.09.24, v15.21.1
fix:
- 8b47e5e @putout/printer: jsx-element: indent
2025.09.21, v15.21.0
feature:
- 996f599 @putout/printer: jsx: nested indent: improve support
2025.09.11, v15.20.5
fix:
- 95632c3 @putout/printer: ObjectPattern: calculateLongAssignPattern
2025.09.11, v15.20.4
feature:
- a3a3776 @putout/printer: ObjectPattern: simplify
2025.09.11, v15.20.3
feature:
- ff9d636 @putout/printer: ObjectPattern: simplify
2025.09.11, v15.20.2
feature:
- 9258c6c @putout/printer: ObjectPattern: comma
2025.09.09, v15.20.1
fix:
- ea679da @putout/printer: JSXAttribute: StringLiteral: quote: single -> double
feature:
- 4e11751 @putout/printer: @putout/plugin-minify v11.2.1
2025.08.12, v15.20.0
feature:
- 0eb1ddd @putout/printer: JSXText: no extra
2025.08.05, v15.19.0
feature:
- f518cd6 @putout/printer: SequenceExpression: leadingComments inside AssignmentExpressions: improve
2025.08.05, v15.18.2
feature:
- a7fd7cc @putout/printer: AssignmentExpression: comments: inside SequenceExpression
2025.08.05, v15.18.1
feature:
- 59d5952 @putout/printer: AssignmentExpression: maybeParens
2025.08.04, v15.18.0
feature:
- 3357c63 @putout/printer: AssignmentExpression: leadingComments: CommentBlock
2025.08.04, v15.17.0
feature:
- da01c40 @putout/printer: AssignmentExpression: inside ReturnStatement with leadingComments (coderaiser/putout#235)
2025.08.01, v15.16.0
feature:
- 3e566b0 @putout/printer: VoidPattern: add
2025.07.29, v15.15.0
feature:
- 79dc3bd @putout/printer: ExportDeclaration: add newline before VariableDeclaration
2025.07.26, v15.14.1
feature:
- ab61623 @putout/printer: EmptyStatement: new line
2025.07.26, v15.14.0
feature:
- b6adcd1 @putout/printer: types: namespace -> declare
- eb9c687 @putout/printer: TSModuleDeclaration: ClassDeclaration inside ExportNamedDeclaration
2025.07.25, v15.13.0
feature:
- 8039e5d @putout/printer: TSModuleDeclaration: kind === global
2025.07.19, v15.12.0
feature:
- bd895ad @putout/printer: ImportAttribute: improve
2025.07.15, v15.11.0
feature:
- 26c8d24 @putout/printer: WhileStatement/DoWhileStatement: minify
- 64809ba @putout/printer: eslint-plugin-putout v28.0.0
2025.07.04, v15.10.0
feature:
- 38782c7 @putout/printer: MemberExpresison: both identifiers inside nested MemberExpression call
2025.07.03, v15.9.1
feature:
- 9419ded @putout/printer: hasTrailingCommentsPrinter
- eb8d16f ExpressionStatement: inside IfStatement
2025.07.03, v15.9.0
feature:
- 57013dc @putout/printer: ExpressionStatement: inside BlockStatement: leading comment
- f2f187f @putout/printer: ExpressionStatement inside ArrowFunction: leadinging comment
- 0afbf8d @putout/printer: @putout/plugin-printer v6.0.0
2025.07.02, v15.8.0
feature:
- 3576b80 @putout/printer: ImportDeclaration: comments before ExpressionStatement
2025.07.02, v15.7.0
feature:
- 54874b0 @putout/printer: ObjectPattern: useless indent inside VariableDeclaration
2025.06.26, v15.6.0
feature:
- 6dce866 @putout/printer: DirectiveLiteral: no raw
2025.06.19, v15.5.0
feature:
- c73f1da @putout/printer: ArrayExpression: maxElementLengthInOneLine: add
2025.06.18, v15.4.0
feature:
- 3317e10 @putout/printer: Identifier: typeAnnotation: do not print inside SequenceExpression, MemberExpression
2025.06.14, v15.3.2
fix:
- a92c4d3 @putout/printer: ObjectPattern: indent
2025.06.14, v15.3.1
feature:
- a266b51 @putout/printer: ObjectPattern: newline
2025.06.13, v15.3.0
feature:
- 8022359 @putout/printer: ObjectPattern: AssignObject: after property
2025.06.13, v15.2.0
feature:
- 348901a @putout/printer: ArrayExpression: maxElementsOneLine: 0
2025.06.12, v15.1.3
fix:
- f70a8d7 @putout/printer: VariableDeclaration: empty declarations
2025.06.12, v15.1.2
fix:
- b3499c9 @putout/printer: ObjectPattern: destructuring
2025.06.12, v15.1.1
feature:
- e67a827 @putout/printer: ObjectPattern: Assign: improve
2025.06.12, v15.1.0
fix:
- 7274b61 @putout/printer: ObjectPattern: AssignmentPattern: ObjectExpression: comma
feature:
- c41eda6 @putout/printer: Decorator: printLeadingCommentLine
- 88d8cd4 @putout/printer: @putout/plugin-react-hooks v9.0.0
- 57495a1 @putout/printer: @putout/operate v14.0.1
2025.06.01, v15.0.0
feature:
- abb07ed @putout/printer: get rid of Record and Tuple (https://github.com/tc39/proposal-record-tuple/issues/394)
- 6a5ff0c @putout/printer: @putout/compare v18.0.0
- 9c147b2 @putout/printer: @putout/plugin-promises v18.0.0
- 0300161 @putout/printer: @putout/babel v4.0.1
2025.05.26, v14.8.0