squared 0.7.4 → 0.7.6
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +124 -59
- data/README.md +11 -4
- data/lib/squared/common/base.rb +1 -0
- data/lib/squared/common/prompt.rb +1 -1
- data/lib/squared/common/shell.rb +10 -10
- data/lib/squared/common/system.rb +2 -1
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +9 -6
- data/lib/squared/workspace/project/base.rb +28 -21
- data/lib/squared/workspace/project/docker.rb +21 -21
- data/lib/squared/workspace/project/git.rb +158 -125
- data/lib/squared/workspace/project/node.rb +154 -64
- data/lib/squared/workspace/project/python.rb +52 -24
- data/lib/squared/workspace/project/ruby.rb +69 -40
- data/lib/squared/workspace/project/support/optionpartition.rb +72 -34
- data/lib/squared/workspace/project/support/utils.rb +4 -6
- data/lib/squared/workspace/repo.rb +5 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34bdb83cec13d6b8da3e9aecb19b2b13f7c3482ce7500f399e2663ef436c46d1
|
|
4
|
+
data.tar.gz: b12b93015ce27785b1903674af314582348537ca3cc5ac2de00188c072677e50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ede0371288478d0cdfdfc3a282d82b3d46e2dd5f32186df6d9125f781eeaa604f75e808490fc8cdfde32a77ed7b24d392407d5c907bb31384cfa4f19276a6623
|
|
7
|
+
data.tar.gz: 822a6b29c9047a8708240f25443ce6158092a04001302b14981d3466d9473a24db2c6ce8b5a31011f0104848943e241ed9eaf975b0b6bcc598abea22b571e0a3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.6] - 2026-05-04
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Node command publish action verify was created.
|
|
8
|
+
|
|
9
|
+
## [0.6.13]
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Application project commands can be defined without a reference.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Application methods log and exclude were non-functional.
|
|
18
|
+
- Project base tasks did not detect build scripts using Arrays.
|
|
19
|
+
|
|
20
|
+
## [0.7.5] - 2026-04-29
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- OptionPartition can exit on any unrecognized flags in strict mode.
|
|
25
|
+
- OptionPartition supports option flags as namespaced enum.
|
|
26
|
+
- Git commands [merge|rebase] action [no-]commit are interactive.
|
|
27
|
+
- Ruby command version did not detect any installed VM application.
|
|
28
|
+
- Python command pip action freeze option uninstall was implemented.
|
|
29
|
+
- Git command range-diff was implemented.
|
|
30
|
+
- Docker command bake action build can use a URL as the context.
|
|
31
|
+
- Git command options were updated to version 2.54.
|
|
32
|
+
|
|
33
|
+
## [0.6.12]
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- Application dynamic Project loader assumed class would be found.
|
|
38
|
+
- Git command grep did not add patterns with "--" pathspec separator.
|
|
39
|
+
|
|
40
|
+
## [0.5.23]
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- See `0.4.37`.
|
|
45
|
+
|
|
46
|
+
## [0.4.37]
|
|
47
|
+
|
|
48
|
+
### Changed
|
|
49
|
+
|
|
50
|
+
- Project base method dependindex replaces private instance variable.
|
|
51
|
+
|
|
52
|
+
### Fixed
|
|
53
|
+
|
|
54
|
+
- Ruby command version did not abort asdf "Not installed" error.
|
|
55
|
+
- Git command pull action all did not pass option flags to branches.
|
|
56
|
+
- Python command exec did not activate virtual environment.
|
|
57
|
+
- Docker command bake did not reinsert failed check for context directory.
|
|
58
|
+
- Common method shell_quote argument preserve did not bypass requoting.
|
|
59
|
+
|
|
3
60
|
## [0.7.4] - 2026-03-20
|
|
4
61
|
|
|
5
62
|
### Added
|
|
@@ -37,17 +94,19 @@
|
|
|
37
94
|
|
|
38
95
|
- Node command outdated using PNPM did not work in nested projects.
|
|
39
96
|
|
|
40
|
-
## [0.6.11]
|
|
97
|
+
## [0.6.11]
|
|
41
98
|
|
|
42
99
|
### Changed
|
|
43
100
|
|
|
44
101
|
- Git internal data calls do not write to logs.
|
|
45
102
|
|
|
46
|
-
## [0.5.22]
|
|
103
|
+
## [0.5.22]
|
|
104
|
+
|
|
105
|
+
### Fixed
|
|
47
106
|
|
|
48
107
|
- Project base run command was not covered due to lack of type checking.
|
|
49
108
|
|
|
50
|
-
## [0.4.36]
|
|
109
|
+
## [0.4.36]
|
|
51
110
|
|
|
52
111
|
### Added
|
|
53
112
|
|
|
@@ -177,7 +236,7 @@
|
|
|
177
236
|
- Project base method command_args did not append prompted value.
|
|
178
237
|
- Bundler command exec did not use correct delegate for delete.
|
|
179
238
|
|
|
180
|
-
## [0.6.9]
|
|
239
|
+
## [0.6.9]
|
|
181
240
|
|
|
182
241
|
### Added
|
|
183
242
|
|
|
@@ -193,7 +252,7 @@
|
|
|
193
252
|
|
|
194
253
|
- See `0.4.35`.
|
|
195
254
|
|
|
196
|
-
## [0.4.35]
|
|
255
|
+
## [0.4.35]
|
|
197
256
|
|
|
198
257
|
### Changed
|
|
199
258
|
|
|
@@ -220,13 +279,13 @@
|
|
|
220
279
|
|
|
221
280
|
- Gem command outdated did not set bindir with update command.
|
|
222
281
|
|
|
223
|
-
## [0.5.20]
|
|
282
|
+
## [0.5.20]
|
|
224
283
|
|
|
225
284
|
### Fixed
|
|
226
285
|
|
|
227
286
|
- Bundle config get method did not always discard newline.
|
|
228
287
|
|
|
229
|
-
## [0.4.34]
|
|
288
|
+
## [0.4.34]
|
|
230
289
|
|
|
231
290
|
### Added
|
|
232
291
|
|
|
@@ -257,13 +316,13 @@
|
|
|
257
316
|
- Bundler did not recognize sub-commands options.
|
|
258
317
|
- Project graph did not use built-in comparison method.
|
|
259
318
|
|
|
260
|
-
## [0.5.19]
|
|
319
|
+
## [0.5.19]
|
|
261
320
|
|
|
262
321
|
### Fixed
|
|
263
322
|
|
|
264
323
|
- See `0.4.33`.
|
|
265
324
|
|
|
266
|
-
## [0.4.33]
|
|
325
|
+
## [0.4.33]
|
|
267
326
|
|
|
268
327
|
### Added
|
|
269
328
|
|
|
@@ -309,7 +368,7 @@
|
|
|
309
368
|
|
|
310
369
|
- See `0.5.18`.
|
|
311
370
|
|
|
312
|
-
## [0.4.32]
|
|
371
|
+
## [0.4.32]
|
|
313
372
|
|
|
314
373
|
### Fixed
|
|
315
374
|
|
|
@@ -324,7 +383,7 @@
|
|
|
324
383
|
|
|
325
384
|
- See `0.4.31`.
|
|
326
385
|
|
|
327
|
-
## [0.4.31]
|
|
386
|
+
## [0.4.31]
|
|
328
387
|
|
|
329
388
|
### Changed
|
|
330
389
|
|
|
@@ -401,13 +460,13 @@
|
|
|
401
460
|
- Project graph print did not display parent and last child consequetively.
|
|
402
461
|
- Project outdated interactive prompts use exact column alignments.
|
|
403
462
|
|
|
404
|
-
## [0.5.16]
|
|
463
|
+
## [0.5.16]
|
|
405
464
|
|
|
406
465
|
### Fixed
|
|
407
466
|
|
|
408
467
|
- See `0.4.30`.
|
|
409
468
|
|
|
410
|
-
## [0.4.30]
|
|
469
|
+
## [0.4.30]
|
|
411
470
|
|
|
412
471
|
### Added
|
|
413
472
|
|
|
@@ -434,13 +493,13 @@
|
|
|
434
493
|
|
|
435
494
|
- Session global program options were untested and worthless upon draft.
|
|
436
495
|
|
|
437
|
-
## [0.5.15]
|
|
496
|
+
## [0.5.15]
|
|
438
497
|
|
|
439
498
|
### Fixed
|
|
440
499
|
|
|
441
500
|
- See `0.4.29`.
|
|
442
501
|
|
|
443
|
-
## [0.4.29]
|
|
502
|
+
## [0.4.29]
|
|
444
503
|
|
|
445
504
|
### Fixed
|
|
446
505
|
|
|
@@ -452,7 +511,7 @@
|
|
|
452
511
|
|
|
453
512
|
- See `0.4.28`.
|
|
454
513
|
|
|
455
|
-
## [0.4.28]
|
|
514
|
+
## [0.4.28]
|
|
456
515
|
|
|
457
516
|
### Fixed
|
|
458
517
|
|
|
@@ -475,13 +534,13 @@
|
|
|
475
534
|
- Project base choice range did not detect empty list result.
|
|
476
535
|
- Project base method build as arrays parsed unrelated arguments.
|
|
477
536
|
|
|
478
|
-
## [0.5.13]
|
|
537
|
+
## [0.5.13]
|
|
479
538
|
|
|
480
539
|
### Fixed
|
|
481
540
|
|
|
482
541
|
- See `0.4.27`.
|
|
483
542
|
|
|
484
|
-
## [0.4.27]
|
|
543
|
+
## [0.4.27]
|
|
485
544
|
|
|
486
545
|
### Changed
|
|
487
546
|
|
|
@@ -586,7 +645,7 @@
|
|
|
586
645
|
|
|
587
646
|
- Node task update did not check equivalent ENV install options.
|
|
588
647
|
|
|
589
|
-
## [0.5.12]
|
|
648
|
+
## [0.5.12]
|
|
590
649
|
|
|
591
650
|
### Changed
|
|
592
651
|
|
|
@@ -596,7 +655,7 @@
|
|
|
596
655
|
|
|
597
656
|
- Node command run did nothing at all when called upon.
|
|
598
657
|
|
|
599
|
-
## [0.4.26]
|
|
658
|
+
## [0.4.26]
|
|
600
659
|
|
|
601
660
|
### Added
|
|
602
661
|
|
|
@@ -624,7 +683,7 @@
|
|
|
624
683
|
- Ruby command version did not parse asdf output in Go.
|
|
625
684
|
- Git command submodule action branch did not provide name argument.
|
|
626
685
|
|
|
627
|
-
## [0.4.25]
|
|
686
|
+
## [0.4.25]
|
|
628
687
|
|
|
629
688
|
### Fixed
|
|
630
689
|
|
|
@@ -655,7 +714,7 @@
|
|
|
655
714
|
|
|
656
715
|
- See `0.4.23`.
|
|
657
716
|
|
|
658
|
-
## [0.4.23]
|
|
717
|
+
## [0.4.23]
|
|
659
718
|
|
|
660
719
|
### Fixed
|
|
661
720
|
|
|
@@ -669,7 +728,7 @@
|
|
|
669
728
|
|
|
670
729
|
- Git command commit did not always show files being pushed.
|
|
671
730
|
|
|
672
|
-
## [0.4.22]
|
|
731
|
+
## [0.4.22]
|
|
673
732
|
|
|
674
733
|
### Added
|
|
675
734
|
|
|
@@ -693,7 +752,7 @@
|
|
|
693
752
|
|
|
694
753
|
- See `0.4.21`.
|
|
695
754
|
|
|
696
|
-
## [0.4.21]
|
|
755
|
+
## [0.4.21]
|
|
697
756
|
|
|
698
757
|
### Added
|
|
699
758
|
|
|
@@ -729,7 +788,7 @@
|
|
|
729
788
|
|
|
730
789
|
- See `0.4.20`.
|
|
731
790
|
|
|
732
|
-
## [0.4.20]
|
|
791
|
+
## [0.4.20]
|
|
733
792
|
|
|
734
793
|
### Changed
|
|
735
794
|
|
|
@@ -752,7 +811,7 @@
|
|
|
752
811
|
- Docker command compose parameter services is interactive.
|
|
753
812
|
- Workspace with public method has conditional pass parameter.
|
|
754
813
|
|
|
755
|
-
## [0.4.19]
|
|
814
|
+
## [0.4.19]
|
|
756
815
|
|
|
757
816
|
### Added
|
|
758
817
|
|
|
@@ -789,7 +848,7 @@
|
|
|
789
848
|
- Git command submodule did not include name of command.
|
|
790
849
|
- Shellwords method shellsplit was missing from String class.
|
|
791
850
|
|
|
792
|
-
## [0.4.18]
|
|
851
|
+
## [0.4.18]
|
|
793
852
|
|
|
794
853
|
### Added
|
|
795
854
|
|
|
@@ -805,19 +864,19 @@
|
|
|
805
864
|
- Common format method puts_oe was renamed log_console.
|
|
806
865
|
- Global task git:all is disabled for single project workspaces.
|
|
807
866
|
|
|
808
|
-
## [0.3.14]
|
|
867
|
+
## [0.3.14]
|
|
809
868
|
|
|
810
869
|
### Fixed
|
|
811
870
|
|
|
812
871
|
- Gem command exec did not separate command and arguments.
|
|
813
872
|
|
|
814
|
-
## [0.2.14]
|
|
873
|
+
## [0.2.14]
|
|
815
874
|
|
|
816
875
|
### Fixed
|
|
817
876
|
|
|
818
877
|
- See `0.1.11`.
|
|
819
878
|
|
|
820
|
-
## [0.1.11]
|
|
879
|
+
## [0.1.11]
|
|
821
880
|
|
|
822
881
|
### Fixed
|
|
823
882
|
|
|
@@ -832,7 +891,7 @@
|
|
|
832
891
|
|
|
833
892
|
- Shellwords gem is no longer globally required.
|
|
834
893
|
|
|
835
|
-
## [0.4.17]
|
|
894
|
+
## [0.4.17]
|
|
836
895
|
|
|
837
896
|
### Added
|
|
838
897
|
|
|
@@ -868,7 +927,7 @@
|
|
|
868
927
|
|
|
869
928
|
- See `0.4.16`.
|
|
870
929
|
|
|
871
|
-
## [0.4.16]
|
|
930
|
+
## [0.4.16]
|
|
872
931
|
|
|
873
932
|
### Added
|
|
874
933
|
|
|
@@ -902,7 +961,7 @@
|
|
|
902
961
|
|
|
903
962
|
- Common method choice can accept dashed ranges for selection lists.
|
|
904
963
|
|
|
905
|
-
## [0.4.15]
|
|
964
|
+
## [0.4.15]
|
|
906
965
|
|
|
907
966
|
### Added
|
|
908
967
|
|
|
@@ -914,19 +973,19 @@
|
|
|
914
973
|
- Ruby task copy does not guess Gem directory when version is used.
|
|
915
974
|
- Workspace hash-based data uses global method for key creation.
|
|
916
975
|
|
|
917
|
-
## [0.3.13]
|
|
976
|
+
## [0.3.13]
|
|
918
977
|
|
|
919
978
|
### Fixed
|
|
920
979
|
|
|
921
980
|
- See `0.2.13`.
|
|
922
981
|
|
|
923
|
-
## [0.2.13]
|
|
982
|
+
## [0.2.13]
|
|
924
983
|
|
|
925
984
|
### Fixed
|
|
926
985
|
|
|
927
986
|
- Project graph did not ignore circular references.
|
|
928
987
|
|
|
929
|
-
## [0.1.10]
|
|
988
|
+
## [0.1.10]
|
|
930
989
|
|
|
931
990
|
### Fixed
|
|
932
991
|
|
|
@@ -943,7 +1002,7 @@
|
|
|
943
1002
|
|
|
944
1003
|
- Gem command push did not prompt for gem to publish.
|
|
945
1004
|
|
|
946
|
-
## [0.4.14]
|
|
1005
|
+
## [0.4.14]
|
|
947
1006
|
|
|
948
1007
|
### Added
|
|
949
1008
|
|
|
@@ -974,7 +1033,7 @@
|
|
|
974
1033
|
- Project confirmation accept dialog did not always quit.
|
|
975
1034
|
- Git command add did not detect when no files were changed.
|
|
976
1035
|
|
|
977
|
-
## [0.3.12]
|
|
1036
|
+
## [0.3.12]
|
|
978
1037
|
|
|
979
1038
|
### Fixed
|
|
980
1039
|
|
|
@@ -984,13 +1043,13 @@
|
|
|
984
1043
|
- Gem command push did not validate gem file to publish.
|
|
985
1044
|
- Node command publish did not publish when silent.
|
|
986
1045
|
|
|
987
|
-
## [0.2.12]
|
|
1046
|
+
## [0.2.12]
|
|
988
1047
|
|
|
989
1048
|
### Fixed
|
|
990
1049
|
|
|
991
1050
|
- See `0.1.9`.
|
|
992
1051
|
|
|
993
|
-
## [0.1.9]
|
|
1052
|
+
## [0.1.9]
|
|
994
1053
|
|
|
995
1054
|
### Added
|
|
996
1055
|
|
|
@@ -1030,7 +1089,7 @@
|
|
|
1030
1089
|
|
|
1031
1090
|
- Project private variables external modification was revised.
|
|
1032
1091
|
|
|
1033
|
-
## [0.4.13]
|
|
1092
|
+
## [0.4.13]
|
|
1034
1093
|
|
|
1035
1094
|
### Added
|
|
1036
1095
|
|
|
@@ -1087,14 +1146,14 @@
|
|
|
1087
1146
|
|
|
1088
1147
|
- See `0.2.11`.
|
|
1089
1148
|
|
|
1090
|
-
## [0.2.11]
|
|
1149
|
+
## [0.2.11]
|
|
1091
1150
|
|
|
1092
1151
|
### Fixed
|
|
1093
1152
|
|
|
1094
1153
|
- Disabled batch and alias tasks were not hidden.
|
|
1095
1154
|
- Workspace git did not parse multiple download URIs.
|
|
1096
1155
|
|
|
1097
|
-
## [0.1.8]
|
|
1156
|
+
## [0.1.8]
|
|
1098
1157
|
|
|
1099
1158
|
### Fixed
|
|
1100
1159
|
|
|
@@ -1176,7 +1235,7 @@
|
|
|
1176
1235
|
- Git command rev action branch only echoed valid branches.
|
|
1177
1236
|
- Git command rev action parseopt is not relevant to a workspace.
|
|
1178
1237
|
|
|
1179
|
-
## [0.3.10]
|
|
1238
|
+
## [0.3.10]
|
|
1180
1239
|
|
|
1181
1240
|
### Fixed
|
|
1182
1241
|
|
|
@@ -1189,14 +1248,14 @@
|
|
|
1189
1248
|
|
|
1190
1249
|
- Git command files action ignored could not be used alone.
|
|
1191
1250
|
|
|
1192
|
-
## [0.2.10]
|
|
1251
|
+
## [0.2.10]
|
|
1193
1252
|
|
|
1194
1253
|
### Fixed
|
|
1195
1254
|
|
|
1196
1255
|
- Project run and script tasks did not fire first and last callbacks.
|
|
1197
1256
|
- Git command clone did not read booleans for recurse-submodules.
|
|
1198
1257
|
|
|
1199
|
-
## [0.1.7]
|
|
1258
|
+
## [0.1.7]
|
|
1200
1259
|
|
|
1201
1260
|
### Fixed
|
|
1202
1261
|
|
|
@@ -1253,13 +1312,13 @@
|
|
|
1253
1312
|
|
|
1254
1313
|
- Project task archive was not enabled.
|
|
1255
1314
|
|
|
1256
|
-
## [0.3.9]
|
|
1315
|
+
## [0.3.9]
|
|
1257
1316
|
|
|
1258
1317
|
### Fixed
|
|
1259
1318
|
|
|
1260
1319
|
- Project option parser did not separate custom values.
|
|
1261
1320
|
|
|
1262
|
-
## [0.2.9]
|
|
1321
|
+
## [0.2.9]
|
|
1263
1322
|
|
|
1264
1323
|
### Changed
|
|
1265
1324
|
|
|
@@ -1271,7 +1330,7 @@
|
|
|
1271
1330
|
- Git command pull actions used unknown flags.
|
|
1272
1331
|
- Workspace describe did not merge multiple invocations.
|
|
1273
1332
|
|
|
1274
|
-
## [0.1.6]
|
|
1333
|
+
## [0.1.6]
|
|
1275
1334
|
|
|
1276
1335
|
### Fixed
|
|
1277
1336
|
|
|
@@ -1297,13 +1356,13 @@
|
|
|
1297
1356
|
- Python venv init did not locate user-defined program paths.
|
|
1298
1357
|
- Node update task did not reset revbuild target flags.
|
|
1299
1358
|
|
|
1300
|
-
## [0.3.8]
|
|
1359
|
+
## [0.3.8]
|
|
1301
1360
|
|
|
1302
1361
|
### Fixed
|
|
1303
1362
|
|
|
1304
1363
|
- Project class did not parse verbose string values.
|
|
1305
1364
|
|
|
1306
|
-
## [0.2.8]
|
|
1365
|
+
## [0.2.8]
|
|
1307
1366
|
|
|
1308
1367
|
### Fixed
|
|
1309
1368
|
|
|
@@ -1345,13 +1404,13 @@
|
|
|
1345
1404
|
- Unrecognized options are appended selectively on context.
|
|
1346
1405
|
- Hatch root options were not applied correctly.
|
|
1347
1406
|
|
|
1348
|
-
## [0.3.7]
|
|
1407
|
+
## [0.3.7]
|
|
1349
1408
|
|
|
1350
1409
|
### Fixed
|
|
1351
1410
|
|
|
1352
1411
|
- See `0.2.7`.
|
|
1353
1412
|
|
|
1354
|
-
## [0.2.7]
|
|
1413
|
+
## [0.2.7]
|
|
1355
1414
|
|
|
1356
1415
|
### Fixed
|
|
1357
1416
|
|
|
@@ -1474,13 +1533,13 @@
|
|
|
1474
1533
|
|
|
1475
1534
|
- See `0.2.6`.
|
|
1476
1535
|
|
|
1477
|
-
## [0.2.6]
|
|
1536
|
+
## [0.2.6]
|
|
1478
1537
|
|
|
1479
1538
|
### Fixed
|
|
1480
1539
|
|
|
1481
1540
|
- Git rebase did not include flag with pull command.
|
|
1482
1541
|
|
|
1483
|
-
## [0.3.4]
|
|
1542
|
+
## [0.3.4]
|
|
1484
1543
|
|
|
1485
1544
|
### Fixed
|
|
1486
1545
|
|
|
@@ -1502,13 +1561,13 @@
|
|
|
1502
1561
|
|
|
1503
1562
|
- Task program command options used unrecognized symbol.
|
|
1504
1563
|
|
|
1505
|
-
## [0.2.5]
|
|
1564
|
+
## [0.2.5]
|
|
1506
1565
|
|
|
1507
1566
|
### Fixed
|
|
1508
1567
|
|
|
1509
1568
|
- See `0.1.5`.
|
|
1510
1569
|
|
|
1511
|
-
## [0.1.5]
|
|
1570
|
+
## [0.1.5]
|
|
1512
1571
|
|
|
1513
1572
|
### Fixed
|
|
1514
1573
|
|
|
@@ -1524,7 +1583,7 @@
|
|
|
1524
1583
|
|
|
1525
1584
|
- Build ENV options error message used undeclared variable.
|
|
1526
1585
|
|
|
1527
|
-
## [0.2.4]
|
|
1586
|
+
## [0.2.4]
|
|
1528
1587
|
|
|
1529
1588
|
### Fixed
|
|
1530
1589
|
|
|
@@ -1593,7 +1652,7 @@
|
|
|
1593
1652
|
|
|
1594
1653
|
- Project hash options duplicated dash prefix.
|
|
1595
1654
|
|
|
1596
|
-
## [0.1.4]
|
|
1655
|
+
## [0.1.4]
|
|
1597
1656
|
|
|
1598
1657
|
### Fixed
|
|
1599
1658
|
|
|
@@ -1770,11 +1829,15 @@
|
|
|
1770
1829
|
|
|
1771
1830
|
- Changelog was created.
|
|
1772
1831
|
|
|
1832
|
+
[0.7.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.6
|
|
1833
|
+
[0.7.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.5
|
|
1773
1834
|
[0.7.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.4
|
|
1774
1835
|
[0.7.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.3
|
|
1775
1836
|
[0.7.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.2
|
|
1776
1837
|
[0.7.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.1
|
|
1777
1838
|
[0.7.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.0
|
|
1839
|
+
[0.6.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.13
|
|
1840
|
+
[0.6.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.12
|
|
1778
1841
|
[0.6.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.11
|
|
1779
1842
|
[0.6.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.10
|
|
1780
1843
|
[0.6.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.9
|
|
@@ -1787,6 +1850,7 @@
|
|
|
1787
1850
|
[0.6.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.2
|
|
1788
1851
|
[0.6.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.1
|
|
1789
1852
|
[0.6.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.0
|
|
1853
|
+
[0.5.23]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.23
|
|
1790
1854
|
[0.5.22]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.22
|
|
1791
1855
|
[0.5.21]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.21
|
|
1792
1856
|
[0.5.20]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.20
|
|
@@ -1810,6 +1874,7 @@
|
|
|
1810
1874
|
[0.5.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.2-ruby
|
|
1811
1875
|
[0.5.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.1-ruby
|
|
1812
1876
|
[0.5.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.0-ruby
|
|
1877
|
+
[0.4.37]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.37
|
|
1813
1878
|
[0.4.36]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.36
|
|
1814
1879
|
[0.4.35]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.35
|
|
1815
1880
|
[0.4.34]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.34
|
data/README.md
CHANGED
|
@@ -546,6 +546,7 @@ Most project classes will inherit from `Git` which enables these tasks:
|
|
|
546
546
|
| log | log | view between contain |
|
|
547
547
|
| merge | merge | commit no-commit send |
|
|
548
548
|
| pull | pull | origin remote all |
|
|
549
|
+
| range-diff | range-diff | view between contain |
|
|
549
550
|
| rebase | rebase | branch onto send |
|
|
550
551
|
| refs | ls-remote --refs | heads tags remote |
|
|
551
552
|
| reset | reset | commit index patch mode undo |
|
|
@@ -638,6 +639,9 @@ BUILD_${NAME}_VERSION=0.1.0 # publish + detection
|
|
|
638
639
|
BANNER=0 # hide banner
|
|
639
640
|
BANNER_${NAME}=0 #
|
|
640
641
|
|
|
642
|
+
STRICT=0 # bypass error checking CLI commands
|
|
643
|
+
STRICT_${NAME}=0 #
|
|
644
|
+
|
|
641
645
|
VERBOSE=0 # console output level
|
|
642
646
|
VERBOSE_${NAME}=0 # 0,1,2,n
|
|
643
647
|
|
|
@@ -670,13 +674,15 @@ LOG_LEVEL # See gem "logger"
|
|
|
670
674
|
|
|
671
675
|
### Git
|
|
672
676
|
|
|
673
|
-
* Version: [2.
|
|
677
|
+
* Version: [2.54](https://github.com/git/git/blob/v2.54.0/Documentation/RelNotes/2.54.0.adoc)
|
|
674
678
|
|
|
675
679
|
```sh
|
|
676
680
|
GIT_OPTIONS=q,strategy=ort # all
|
|
677
681
|
GIT_OPTIONS_${NAME}=v,ff # project only
|
|
678
682
|
GIT_AUTOSTASH=1 # rebase (all)
|
|
679
683
|
GIT_AUTOSTASH_${NAME}=0 # rebase (project only)
|
|
684
|
+
GIT_REFLOG=1 # list all commits
|
|
685
|
+
GIT_COUNT=50 # list display limit
|
|
680
686
|
```
|
|
681
687
|
|
|
682
688
|
| Command | Flag | ENV |
|
|
@@ -693,7 +699,6 @@ GIT_AUTOSTASH_${NAME}=0 # rebase (project only)
|
|
|
693
699
|
| clone | * | DEPTH=n ORIGIN=s BRANCH=s REVISION=s BARE=1 LOCAL=0,1 |
|
|
694
700
|
| | | SINGLE_BRANCH=0,1 NO_CHECKOUT=1 NO_TAGS=1 QUIET=1 |
|
|
695
701
|
| commit | * | UPSTREAM=s DRY_RUN EDIT=0 M|MESSAGE=s |
|
|
696
|
-
| diff | -between -contain | MERGE_BASE |
|
|
697
702
|
| diff | head branch | INDEX=n |
|
|
698
703
|
| diff | * | PATHSPEC=s |
|
|
699
704
|
| fetch | -remote | ALL |
|
|
@@ -705,6 +710,7 @@ GIT_AUTOSTASH_${NAME}=0 # rebase (project only)
|
|
|
705
710
|
| pull | -remote | REBASE=0,1 ALL |
|
|
706
711
|
| pull | all | FF_ONLY=0 |
|
|
707
712
|
| pull | * | AUTOSTASH F|FORCE RECURSE_SUBMODULES=0,1,s |
|
|
713
|
+
| range-diff | * | PATHSPEC=s |
|
|
708
714
|
| rebase | branch | HEAD=s |
|
|
709
715
|
| rebase | onto | INTERACTIVE I HEAD=s |
|
|
710
716
|
| reset | mode (mixed) | N REFRESH=0 |
|
|
@@ -720,8 +726,8 @@ GIT_AUTOSTASH_${NAME}=0 # rebase (project only)
|
|
|
720
726
|
| switch | detach | REFLOG=1 |
|
|
721
727
|
| switch | -detach | HEAD=s |
|
|
722
728
|
| switch | * | F|FORCE |
|
|
723
|
-
| tag | add | SIGN FORCE HEAD=s M|MESSAGE=s
|
|
724
|
-
| tag | sign | F|FORCE HEAD=s M|MESSAGE=s
|
|
729
|
+
| tag | add | SIGN FORCE HEAD=s M|MESSAGE=s TRAILER=s |
|
|
730
|
+
| tag | sign | F|FORCE HEAD=s M|MESSAGE=s TRAILER=s |
|
|
725
731
|
| tag | delete | COUNT=n |
|
|
726
732
|
| rev | commit branch | HEAD=s |
|
|
727
733
|
|
|
@@ -885,6 +891,7 @@ Features can be enabled through ENV when calling global tasks such as through *C
|
|
|
885
891
|
| pnpm | depend | PUBLIC_HOIST_PATTERN=s APPROVE_BUILDS |
|
|
886
892
|
| pnpm | depend:add | ALLOW_BUILD=s |
|
|
887
893
|
| yarn | depend package | IGNORE_ENGINES |
|
|
894
|
+
| yarn | depend:add | W|IGNORE_WORKSPACE_ROOT_CHECK=0 |
|
|
888
895
|
|
|
889
896
|
#### Python
|
|
890
897
|
|
data/lib/squared/common/base.rb
CHANGED