-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
7252 lines (4107 loc) · 199 KB
/
ChangeLog
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
2024-06-08 Eric Gallager <[email protected]>
tar commands are hard to get right
https://xkcd.com/1168/
Change-Id: I72107484fc6c351e632657f3ca9209dceb89834e
2024-06-08 Eric Gallager <[email protected]>
more housekeeping; I may have screwed something up...
Change-Id: I88f44dbfd6611c5c830fcaceaf44fd1a7fc9f9a0
2024-06-07 Eric Gallager <[email protected]>
housekeeping
Change-Id: Ic63c06deecb38295998ca0c59c1311397a61ef90
2024-06-07 Eric Gallager <[email protected]>
messing with language detection
Change-Id: I023adc03ab83690c1b8ea8607a474612bd1a3548
2024-06-03 Eric Gallager <[email protected]>
Merge pull request #61 from cooljeanius/dependabot/gradle/com.google.guava-guava-33.2.1-jre
Bump com.google.guava:guava from 33.2.0-jre to 33.2.1-jre
2024-06-03 Eric Gallager <[email protected]>
Merge pull request #60 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.4.0
Bump eslint from 9.3.0 to 9.4.0 in /src/texinfo/js
2024-06-03 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump com.google.guava:guava from 33.2.0-jre to 33.2.1-jre
Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.2.0-jre to 33.2.1-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)
---
updated-dependencies:
- dependency-name: com.google.guava:guava
dependency-type: direct:production
update-type: version-update:semver-patch
...
2024-06-03 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 9.3.0 to 9.4.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 9.3.0 to 9.4.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.3.0...v9.4.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-06-01 Eric Gallager <[email protected]>
more stuff inspired by output of CI runs
Change-Id: I414362930b2909ee1142f6d01b0e8cec736cca7a
2024-06-01 Eric Gallager <[email protected]>
misc. minor things
Change-Id: I0822150201d83cb078dce48f99ac1436c576dc70
2024-06-01 Eric Gallager <[email protected]>
updates for rlfe based on upstream readline
Change-Id: I934c59e2ec4b63d7cd5590da70635f5e0f1352af
2024-05-20 Eric Gallager <[email protected]>
Merge pull request #59 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.3.0
Bump eslint from 9.2.0 to 9.3.0 in /src/texinfo/js
2024-05-20 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/npm_and_yarn/src/texinfo/js/eslint-9.3.0
2024-05-20 Eric Gallager <[email protected]>
stuff I was holding off on in prev. commit
Change-Id: Iab08ea4ba966fa6cb7c446ef830521846589b1f9
2024-05-20 Eric Gallager <[email protected]>
updating stuff
Change-Id: I706dbf35df9d05c767f9dd55c9b9edede58fb1f6
2024-05-20 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 9.2.0 to 9.3.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 9.2.0 to 9.3.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.2.0...v9.3.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-05-10 Eric Gallager <[email protected]>
misc. things I noticed, May 10, 2024
Change-Id: Ib9d8d9b9650c1fd1862002d5755c383896b0ce1c
2024-05-06 Eric Gallager <[email protected]>
Merge pull request #58 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.2.0
Bump eslint from 9.1.1 to 9.2.0 in /src/texinfo/js
2024-05-06 Eric Gallager <[email protected]>
Merge pull request #57 from cooljeanius/dependabot/gradle/com.google.guava-guava-33.2.0-jre
Bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre
2024-05-06 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 9.1.1 to 9.2.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 9.1.1 to 9.2.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.1.1...v9.2.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-05-06 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre
Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.1.0-jre to 33.2.0-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)
---
updated-dependencies:
- dependency-name: com.google.guava:guava
dependency-type: direct:production
update-type: version-update:semver-minor
...
2024-05-02 Eric Gallager <[email protected]>
oops, looks like sometimes yytname might not exist
Change-Id: If85a839379107ae176ca7195f324493c84003f7d
2024-05-02 Eric Gallager <[email protected]>
a bit of cleanup from previous commit
Change-Id: I9036941b79259b5ad24e8eeb053cad5d0e842bad
2024-05-01 Eric Gallager <[email protected]>
I may have finally fixed something?
see issue #7
Change-Id: I9f6910445b62457ba4d47fc00ea0664bbd628d73
2024-05-01 Eric Gallager <[email protected]>
Merge pull request #55 from cooljeanius/dependabot/github_actions/actions/upload-artifact-4.3.3
Bump actions/upload-artifact from 4.3.2 to 4.3.3
2024-05-01 Eric Gallager <[email protected]>
Merge pull request #56 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.1.1
Bump eslint from 9.1.0 to 9.1.1 in /src/texinfo/js
2024-05-01 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/github_actions/actions/upload-artifact-4.3.3
2024-05-01 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/npm_and_yarn/src/texinfo/js/eslint-9.1.1
2024-05-01 Eric Gallager <[email protected]>
think I may have identified the problem
(with gdb's libtermcap check, that is)
Change-Id: I50cb64d91c612df7fb4ca9cf441758d13b25b3bf
2024-05-01 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump actions/upload-artifact from 4.3.2 to 4.3.3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
2024-05-01 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
still haven't figured out yet why gdb's configure script can't find libtermcap, as readline's can...
Change-Id: I93d1d7eaf570b20a6ecfa856c90d5b11d6d8139f
2024-04-30 Eric Gallager <[email protected]>
still need to find libtermcap
Change-Id: Icceff88a10fd4dc9583cd1a0c957277c83c7e57f
2024-04-30 Eric Gallager <[email protected]>
I should probably just stop poisoning "free"...
Change-Id: I0e6c5f9f7e8ec316001334991fbfb46b56d3ae95
2024-04-30 Eric Gallager <[email protected]>
a few extra homebrew dependencies
Change-Id: I81041d5af218551d9a73bb579875a2c01f5e5858
2024-04-30 Eric Gallager <[email protected]>
ok so the "macos-14" label defaults to arm now too
Change-Id: Ie020875071f9612bc94b31b9f8e7007ae1fb56bc
2024-04-30 Eric Gallager <[email protected]>
looks like macOS CI defaults to arm now...
Change-Id: I9a8409b9bd1d973e3935331acf251437809c9c11
2024-04-29 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 9.1.0 to 9.1.1 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 9.1.0 to 9.1.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.1.0...v9.1.1)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-patch
...
2024-04-22 Eric Gallager <[email protected]>
Merge pull request #53 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.1.0
Bump eslint from 9.0.0 to 9.1.0 in /src/texinfo/js
2024-04-22 Eric Gallager <[email protected]>
Merge pull request #54 from cooljeanius/dependabot/github_actions/actions/upload-artifact-4.3.2
Bump actions/upload-artifact from 4.3.1 to 4.3.2
2024-04-22 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump actions/upload-artifact from 4.3.1 to 4.3.2
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.1 to 4.3.2.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
2024-04-22 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 9.0.0 to 9.1.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 9.0.0 to 9.1.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.0.0...v9.1.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-04-15 Eric Gallager <[email protected]>
Merge pull request #52 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.5
Bump typescript from 5.4.4 to 5.4.5 in /src/texinfo/js
2024-04-15 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump typescript from 5.4.4 to 5.4.5 in /src/texinfo/js
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.4 to 5.4.5.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.4...v5.4.5)
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-patch
...
2024-04-08 Eric Gallager <[email protected]>
Merge pull request #51 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.4
Bump typescript from 5.4.3 to 5.4.4 in /src/texinfo/js
2024-04-08 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump typescript from 5.4.3 to 5.4.4 in /src/texinfo/js
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.3 to 5.4.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.3...v5.4.4)
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-patch
...
2024-04-08 Eric Gallager <[email protected]>
Merge pull request #50 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-9.0.0
Bump eslint from 8.57.0 to 9.0.0 in /src/texinfo/js
2024-04-08 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 8.57.0 to 9.0.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.0.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.57.0...v9.0.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-major
...
2024-03-26 Eric Gallager <[email protected]>
misc. updates
Change-Id: I717d9c28887a94e13db9261b35ec259b4c94642c
2024-03-25 Eric Gallager <[email protected]>
Merge pull request #49 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.3
Bump typescript from 5.4.2 to 5.4.3 in /src/texinfo/js
2024-03-25 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.3
2024-03-25 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump typescript from 5.4.2 to 5.4.3 in /src/texinfo/js
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.2 to 5.4.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.2...v5.4.3)
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-patch
...
2024-03-25 Eric Gallager <[email protected]>
mmalloc dvi rule was failing
Change-Id: Icaa2c2b8eac840f01f3b5d067e9a3c438ac7ddf8
2024-03-25 Eric Gallager <[email protected]>
Merge pull request #43 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/eslint-8.57.0
Bump eslint from 8.56.0 to 8.57.0 in /src/texinfo/js
2024-03-25 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
additional output
Change-Id: Ic6e233d44dcf9bd20bf9b467bf34e7895b7dc112
2024-03-25 Eric Gallager <[email protected]>
Merge pull request #48 from cooljeanius/dependabot/maven/src/zlib/contrib/java/jzlib-1.1.2/org.apache.maven.plugins-maven-compiler-plugin-3.13.0
Bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 3.13.0 in /src/zlib/contrib/java/jzlib-1.1.2
2024-03-25 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump org.apache.maven.plugins:maven-compiler-plugin
Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.12.1 to 3.13.0.
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
- [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.12.1...maven-compiler-plugin-3.13.0)
---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
dependency-type: direct:production
update-type: version-update:semver-minor
...
2024-03-19 Eric Gallager <[email protected]>
Merge pull request #46 from cooljeanius/dependabot/gradle/com.google.guava-guava-33.1.0-jre
Bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre
2024-03-19 Eric Gallager <[email protected]>
Merge pull request #45 from cooljeanius/dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.2
Bump typescript from 5.3.3 to 5.4.2 in /src/texinfo/js
2024-03-19 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/npm_and_yarn/src/texinfo/js/eslint-8.57.0
2024-03-19 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/gradle/com.google.guava-guava-33.1.0-jre
2024-03-19 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/npm_and_yarn/src/texinfo/js/typescript-5.4.2
2024-03-19 Eric Gallager <[email protected]>
Merge pull request #47 from cooljeanius/fix-homebrew-dependencies-for-CI
Fix Homebrew dependencies for CI
2024-03-19 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
few more minor tweaks
Change-Id: I7c4769fb4d0fa8511bee1abeb2b7e6d96ebd91b4
2024-03-19 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
minor tweak
Change-Id: I49a7aeac4d2643a39e75e409651fd85a533587c3
2024-03-19 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
try removing some lines
Change-Id: I053401351a0928f7233ecda3f8919f8645c2a852
2024-03-19 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
try adjusting homebrew dependencies
Change-Id: I711c9a1bf02648bf451f96894a488ad2b664fad2
2024-03-18 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre
Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.0.0-jre to 33.1.0-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)
---
updated-dependencies:
- dependency-name: com.google.guava:guava
dependency-type: direct:production
update-type: version-update:semver-minor
...
2024-03-11 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump typescript from 5.3.3 to 5.4.2 in /src/texinfo/js
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.3.3...v5.4.2)
---
updated-dependencies:
- dependency-name: typescript
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-02-26 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump eslint from 8.56.0 to 8.57.0 in /src/texinfo/js
Bumps [eslint](https://github.com/eslint/eslint) from 8.56.0 to 8.57.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.56.0...v8.57.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
2024-02-15 Eric Gallager <[email protected]>
Merge pull request #42 from cooljeanius/dependabot/github_actions/actions/upload-artifact-4.3.1
Bump actions/upload-artifact from 4.3.0 to 4.3.1
2024-02-14 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/github_actions/actions/upload-artifact-4.3.1
2024-02-14 Eric Gallager <[email protected]>
Update codeql.yml
turn off for 'c-cpp'; I give up
Change-Id: I56039402f111cb13c867359a665d8f5df636aaa1
2024-02-14 Eric Gallager <[email protected]>
Update codeql.yml
adjust RAM value
Change-Id: I2c19faea0d2f843b9ffcb1e850f76640bb518ffb
2024-02-14 Eric Gallager <[email protected]>
Update codeql.yml
ok so that previous attempt didn't work; try another way
Change-Id: I67321af6d9f4f198ce8f9a8faba09167e31b9956
2024-02-14 Eric Gallager <[email protected]>
Update codeql.yml
try increasing the memory that codeql is allowed to use; see github/codeql-action#1461
Change-Id: Iafa226884c632f5cee31769813951bc0af56a128
2024-02-13 Eric Gallager <[email protected]>
amd-udi testsuite can fail on CI
Change-Id: I23855172fe8070fb416d6398f25f67277b017e6a
2024-02-13 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump actions/upload-artifact from 4.3.0 to 4.3.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.0 to 4.3.1.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4.3.0...v4.3.1)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
2024-02-13 Eric Gallager <[email protected]>
intl testsuite breaks on CI
also tweak CodeQL build
Change-Id: Ie399dd9569bfeb41d20819b4791a0e2d6e1c7e13
2024-02-13 Eric Gallager <[email protected]>
Update apple-gdb-1824.yml
update test phase a bit more
Change-Id: Icebbd19286d6a0ebc119a911aae8b393271cee50
2024-02-12 Eric Gallager <[email protected]>
libgui testsuite can break on CI
Change-Id: I857e8d5149b44e270a8843ca644cebce7097a00b
2024-02-12 Eric Gallager <[email protected]>
dejagnu testsuite breaks on CI
Change-Id: Id1e4e468414a21cfa5670659c2f8627c46b775c3
2024-02-12 Eric Gallager <[email protected]>
expect testsuite breaks on CI
Change-Id: I98b68dd450cb2aeb13f2c16cd05bac32dcfaae64
2024-02-12 Eric Gallager <[email protected]>
getting a bit farther
some testsuites are still broken
Change-Id: Ie8b118c77ff40840bfb991e4e8bb4b2a09bd0c8b
2024-02-12 Eric Gallager <[email protected]>
looks like texi2html is needed on CI
Change-Id: I69f98f6d49f30e48330c03138d09ceb0bf79d045
2024-02-12 Eric Gallager <[email protected]>
dvi and tags are broken in some subdirs
Change-Id: I8c754935ee5e171865728aa188bf24d5b0f3805d
2024-02-12 Eric Gallager <[email protected]>
CI update
looks like actually building this version of gdb is broken on Linux; do other stuff instead
Change-Id: I1428eb46513809c87281ca7f51ccbb8a1cb748bb
2024-02-11 Eric Gallager <[email protected]>
lots of configury updating
CI was failing due to missing tix, so try to work around that
Change-Id: Idabe042ed25efbc1f1e7c1291bf1828e5005aec2
2024-02-10 Eric Gallager <[email protected]>
blep
Change-Id: I9c8f79cd4edc1d7051d6bb74f6b7aa77d316c8cc
2024-02-10 Eric Gallager <[email protected]>
looks like I need some additional dependencies...
Change-Id: Ieccff838fb47dc65f073a67386ba8203d270636e
2024-02-10 Eric Gallager <[email protected]>
darn, looks like there were some new failures...
Change-Id: I86c918d446a27c21eca16887a6bdd737b12cdd50
2024-02-10 Eric Gallager <[email protected]>
ok, maybe now I can extend CI runs
...now that I seem to have figured out the ksigmask_t thing...
Change-Id: I0800807b5f61573de65fb44049281e3bfe380c24
2024-02-10 Eric Gallager <[email protected]>
maybe I can finally fix the ksigmask_t stuff
Change-Id: Icc679c7bf8045ad587c2662dfcb56f4bbcc1fbeb
2024-02-06 Eric Gallager <[email protected]>
readline examples warnings
Change-Id: I3903a47400434b54a203354aaf48a5b8edb9b309
2024-02-05 Eric Gallager <[email protected]>
efence/mmalloc updates
Change-Id: I796248c0d57501b7f5b4287bbc59d51675f9ce9b
2024-02-05 Eric Gallager <[email protected]>
bfd: some more elf32 updates
Change-Id: Id8d184bd0ae399f9aaa85a82a0931bde7d6c21d3
2024-02-05 Eric Gallager <[email protected]>
Merge pull request #41 from cooljeanius/dependabot/gradle/org.junit.jupiter-junit-jupiter-5.10.2
Bump org.junit.jupiter:junit-jupiter from 5.10.1 to 5.10.2
2024-02-05 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump org.junit.jupiter:junit-jupiter from 5.10.1 to 5.10.2
Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.10.1 to 5.10.2.
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.10.1...r5.10.2)
---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter
dependency-type: direct:production
update-type: version-update:semver-patch
...
2024-02-03 Eric Gallager <[email protected]>
weird stuff happens in bfd
Change-Id: Ie79a28d532321667d1b96af7169df346b2003022
2024-02-03 Eric Gallager <[email protected]>
more bfd static analysis
Change-Id: Ic53a194c48c88fedd69b2958bcdbb1a66e7b3752
2024-02-01 Eric Gallager <[email protected]>
I'm not actually here
Change-Id: Ia45d6cc6d7c5c52a3f43529bb7139a422d2533e9
2024-02-01 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
I hate the flakiness of this build system... my kingdom for consistent timestamps! See issue #40
Change-Id: I71e0cbd2cc8693845882cc21d66c0a995c4181d5
2024-02-01 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
try reducing spew from "full build" step
Change-Id: Ie7b7d802c6a441587d4c50696d86b62135117734
2024-02-01 Eric Gallager <[email protected]>
grrr, libtool...
Change-Id: I776e5174988b6b153d8aa18644354a858fa558ac
2024-01-31 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
try shifting around libtool_gnu timestamp hackery
Change-Id: I6c88cfc633005cacf66d4b6bf9c23577bba9b393
2024-01-31 Eric Gallager <[email protected]>
last bfd warning fixes for Jan. 2024
Change-Id: Ib2626a205744a5387d1a4007acd594d86f826eea
2024-01-30 Eric Gallager <[email protected]>
Update apple-gdb-1824-macos.yml
the libtool_gnu sources are annoying
Change-Id: I9c48fcc89523217e85f31c618074621b0f0c6f3e
2024-01-30 Eric Gallager <[email protected]>
timestamps in libtool_gnu appear to be problematic
Change-Id: Iefd00b8138728fd8e6acb55efc4ba87df4c48042
2024-01-30 Eric Gallager <[email protected]>
comments to note codeql warnings
Change-Id: I34956b960f3e644139ff2b7e077281474c2f1f02
2024-01-29 Eric Gallager <[email protected]>
more bfd stuff
Change-Id: I3397fb33e5cc04428cba534d1c843a0d3bbd5d87
2024-01-29 Eric Gallager <[email protected]>
Merge branch 'master' of github.com:cooljeanius/apple-gdb-1824
Change-Id: Iad0fccf60e313d885a7a5b34594a843976d70ee7
2024-01-29 Eric Gallager <[email protected]>
mmph mmph
Change-Id: Ifb8dd5f79c569d195bc415394de3c886d383797c
2024-01-29 Eric Gallager <[email protected]>
Merge pull request #38 from cooljeanius/dependabot/github_actions/actions/upload-artifact-4.3.0
Bump actions/upload-artifact from 4.2.0 to 4.3.0
2024-01-29 Eric Gallager <[email protected]>
Merge branch 'master' into dependabot/github_actions/actions/upload-artifact-4.3.0
2024-01-29 Eric Gallager <[email protected]>
CI can be so flaky sometimes
Change-Id: I4f470619933dfbdb145b3d9def053e8818695ecd
2024-01-29 Eric Gallager <[email protected]>
Merge pull request #39 from cooljeanius/dependabot/github_actions/gradle/gradle-build-action-3
Bump gradle/gradle-build-action from 2 to 3
2024-01-29 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump gradle/gradle-build-action from 2 to 3
Bumps [gradle/gradle-build-action](https://github.com/gradle/gradle-build-action) from 2 to 3.
- [Release notes](https://github.com/gradle/gradle-build-action/releases)
- [Commits](https://github.com/gradle/gradle-build-action/compare/v2...v3)
---
updated-dependencies:
- dependency-name: gradle/gradle-build-action
dependency-type: direct:production
update-type: version-update:semver-major
...
2024-01-29 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bump actions/upload-artifact from 4.2.0 to 4.3.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4.2.0...v4.3.0)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
2024-01-29 Eric Gallager <[email protected]>
more bfd junk
Change-Id: I30975a7eb9f2bf89ed1df76e534ef64a2e1aeaa8
2024-01-29 Eric Gallager <[email protected]>
more attempts at getting broken bfd stuff to compile
Change-Id: Ia155d0df6d4826976988e110b93743c29fe87b34
2024-01-28 Eric Gallager <[email protected]>
more silencing of warnings & staticanalysis in bfd
Change-Id: Ib370920f35cf520c671cea79e5fdc3e284518f51
2024-01-24 Eric Gallager <[email protected]>
binutils: tweak some buffer sizes
see if this will shut up some format warnings
(might be better to just revert the nlm-related changes; idk)
Change-Id: I5b7b34d44361d531fbd64aa52ff6834e5780295d
2024-01-24 Eric Gallager <[email protected]>
some updates in binutils
Change-Id: I640159928841e8d644d99ccffdfae3e3664ab403
2024-01-24 Eric Gallager <[email protected]>
update some stuff in gdb subdir
Change-Id: Idc3af9bf1b0bf9163fa4afec92a863ea1e71b2d3
2024-01-23 Eric Gallager <[email protected]>
oops (am distracted)
Change-Id: Ida38c36e36d4ba7c8e2587740ebec433afd8a21b
2024-01-23 Eric Gallager <[email protected]>
make it a bit more obvious that some bfd sources are generated
Change-Id: I5b8b6d0f764613271e4b69425b7a0db179496bb6
2024-01-23 Eric Gallager <[email protected]>
oops I'm editing a generated file in this
Change-Id: Ia765ccf5acd605faa7aba0aa87ec094eb81868c0
2024-01-22 Eric Gallager <[email protected]>
clang static analysis for binutils and mmalloc
Change-Id: I23800bd7962d9731c8380acdf501b31371b40775
2024-01-22 Eric Gallager <[email protected]>
Merge pull request #37 from cooljeanius/dependabot/github_actions/actions/upload-artifact-4.2.0
Bump actions/upload-artifact from 4.1.0 to 4.2.0
2024-01-22 dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>