-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog
12622 lines (6746 loc) · 369 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
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.13-25
## hyrax-1.16.8-25
##
2022-09-01 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Added convenient script for pushing to our ngap s3 documents
bucket
2022-09-01 The-Robot-Travis <[email protected]>
bes-3.20.13-51 2022-09-01T16:32:23+0000 - Triggering OLFS build
for snapshots.
2022-09-01 ndp-opendap <[email protected]>
Updated CloudFront 504 page with Jame's input
Refining commit message format
Reformatted automated commit message for hyrax-docker build
trigger.
2022-08-31 The-Robot-Travis <[email protected]>
bes-3.20.13-50 2022-09-01T04:27:04+0000 - Triggering OLFS build
for snapshots.
bes-3.20.13-49 2022-09-01T03:34:00+0000 - Triggering OLFS build
for snapshots.
bes-3.20.13-48 2022-09-01T03:15:52+0000 - Triggering OLFS build
for snapshots.
2022-08-31 ndp-opendap <[email protected]>
Formatting of commit message continues.
Updated git commit message for trigger to include build
inventory
this is a test
This is a test commit.
added 504 page (cloudfront) and associated template to the ngap
resources
2022-08-25 The-Robot-Travis <[email protected]>
bes-3.20.13-44 2022-08-25T21:54:43+0000 - Triggering OLFS build
for snapshots.
2022-08-22 The-Robot-Travis <[email protected]>
bes-3.20.13-33 2022-08-22T23:42:36+0000 - Triggering OLFS build
for snapshots.
2022-08-19 The-Robot-Travis <[email protected]>
bes-3.20.13-30 2022-08-19T13:54:26+0000 - Triggering OLFS build
for snapshots.
2022-08-18 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Updating github credentials for travis-ci-opendap
2022-08-17 The-Robot-Travis <[email protected]>
bes-3.20.13-28 2022-08-18T00:48:16+0000 - Triggering OLFS build
for snapshots.
bes-3.20.13-27 2022-08-18T00:30:06+0000 - Triggering OLFS build
for snapshots.
2022-08-15 The-Robot-Travis <[email protected]>
bes-3.20.13-22 2022-08-15T17:10:20+0000 - Triggering OLFS build
for snapshots.
2022-08-12 The-Robot-Travis <[email protected]>
bes-3.20.13-19 2022-08-12T19:02:00+0000 - Triggering OLFS build
for snapshots.
2022-08-09 The-Robot-Travis <[email protected]>
bes-3.20.13-16 2022-08-09T19:53:00+0000 - Triggering OLFS build
for snapshots.
bes-3.20.13-14 2022-08-09T18:22:49+0000 - Triggering OLFS build
for snapshots.
2022-08-03 The-Robot-Travis <[email protected]>
bes-3.20.13-10 2022-08-03T16:14:10+0000 - Triggering OLFS build
for snapshots.
2022-08-01 The-Robot-Travis <[email protected]>
bes-3.20.13-7 2022-08-01T18:32:55+0000 - Triggering OLFS build
for snapshots.
2022-07-29 The-Robot-Travis <[email protected]>
bes-3.20.13-4 2022-07-29T19:05:43+0000 - Triggering OLFS build
for snapshots.
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.13
## hyrax-1.16.8
##
2022-07-22 The-Robot-Travis <[email protected]>
bes-3.20.13-0 2022-07-22T14:41:58+0000 - Triggering OLFS build for snapshots.
2022-07-21 The-Robot-Travis <[email protected]>
bes-3.20.12-15 2022-07-22T00:24:34+0000 - Triggering OLFS build for snapshots.
bes-3.20.12-14 2022-07-21T23:51:20+0000 - Triggering OLFS build for snapshots.
2022-07-21 ndp-opendap <[email protected]>
Switched to templated Enumeration declration
Formatting those missing links.
2022-07-21 Nathan Potter <[email protected]>
Ncwms refit (#154)
* Retiring various XSLT stuff
* Fixed dap4Contents.xsl so that the viewers link works, and migrated the schema.org annotations from the node_contents.xsl
* Fixed Updated schema.org links to https.
Removed commented out code.
* Fixed page formating with new css type
2022-07-19 The-Robot-Travis <[email protected]>
bes-3.20.12-13 2022-07-19T16:35:54+0000 - Triggering OLFS build for snapshots.
2022-07-14 The-Robot-Travis <[email protected]>
bes-3.20.12-11 2022-07-14T17:17:56+0000 - Triggering OLFS build for snapshots.
bes-3.20.12-6 2022-07-14T14:57:54+0000 - Triggering OLFS build for snapshots.
2022-07-12 ndp-opendap <[email protected]>
Lets go Travis!
2022-07-11 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Added Attributes with DAP4 types to the "No NetCDF-3 Downloads For You" feature.
2022-07-09 The-Robot-Travis <[email protected]>
bes-3.20.12-1 2022-07-09T19:05:19+0000 - Triggering OLFS build for snapshots.
2022-07-07 ndp-opendap <[email protected]>
Setting BES timeOut to 55 seconds (thanks CloudFront) for the NGAP deployment
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.12
## hyrax-1.16.7
##
2022-07-06 ndp-opendap <[email protected]>
Update build offset for hyrax-1.16.7
2022-07-06 The-Robot-Travis <[email protected]>
bes-3.20.12-0 2022-07-06T18:20:59+0000 - Triggering OLFS build for snapshots.
bes-3.20.11-1 2022-07-06T16:55:01+0000 - Triggering OLFS build for snapshots.
2022-07-05 ndp-opendap <[email protected]>
olfs: Updating olfs version and release files to version 1.18.11
2022-07-05 The-Robot-Travis <[email protected]>
bes-3.20.11-0 2022-07-05T17:58:43+0000 - Triggering OLFS build for snapshots.
bes-3.20.10-503 2022-07-05T17:18:27+0000 - Triggering OLFS build for snapshots.
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.11
## hyrax-1.16.6
##
2022-07-05 The-Robot-Travis <[email protected]>
bes-3.20.11-0 2022-07-05T17:58:43+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-503 2022-07-05T17:18:27+0000 - Triggering OLFS
build for snapshots.
2022-07-01 The-Robot-Travis <[email protected]>
bes-3.20.10-501 2022-07-01T21:52:45+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-500 2022-07-01T19:47:24+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-497 2022-07-01T13:39:06+0000 - Triggering OLFS
build for snapshots.
2022-06-29 Nathan Potter <[email protected]>
Dap4 types remove nc3 button (#153)
* First pass at removing the Get As NetCDF3 button based on the
presence of incompatible DAP4 types.
* Second pass at conditionally available response buttons.
* Second pass at conditionally available response buttons.
2022-06-27 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Adding memcached-session-manager-tc9-2.3.2.jar for Tomcat 9
2022-06-27 The-Robot-Travis <[email protected]>
bes-3.20.10-495 2022-06-27T17:33:27+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-494 2022-06-27T16:58:03+0000 - Triggering OLFS
build for snapshots.
2022-06-21 The-Robot-Travis <[email protected]>
bes-3.20.10-490 2022-06-21T21:58:17+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-487 2022-06-21T08:33:33+0000 - Triggering OLFS
build for snapshots.
2022-06-20 The-Robot-Travis <[email protected]>
bes-3.20.10-486 2022-06-21T01:00:20+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-482 2022-06-20T23:37:59+0000 - Triggering OLFS
build for snapshots.
2022-06-20 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Dropped awscli from travis host, add gnupg
2022-06-19 The-Robot-Travis <[email protected]>
bes-3.20.10-480 2022-06-19T14:03:36+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-478 2022-06-19T11:05:00+0000 - Triggering OLFS
build for snapshots.
2022-06-19 Nathan Potter <[email protected]>
Jaxb and javax update (#151)
* Add jaxb-runtime and javax-annotations to dependencies
* Adding javax-activation to lib and gradle
2022-06-17 ndp-opendap <[email protected]>
Unwinding jaxb failed jaxb stuff
Merge branch 'master' of https://github.com/opendap/olfs
Added jaxb-runtime-2.3.6 to libs, build.xml, and gradle.build
2022-06-17 The-Robot-Travis <[email protected]>
bes-3.20.10-475 2022-06-17T11:11:46+0000 - Triggering OLFS
build for snapshots.
2022-06-16 The-Robot-Travis <[email protected]>
bes-3.20.10-471 2022-06-16T17:40:36+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-468 2022-06-16T16:36:53+0000 - Triggering OLFS
build for snapshots.
2022-06-14 The-Robot-Travis <[email protected]>
bes-3.20.10-462 2022-06-14T18:52:56+0000 - Triggering OLFS
build for snapshots.
2022-06-14 ndp-opendap <[email protected]>
Switching sonarscan to gradle build...
Setting sonar.log.level to DEBUG and sonar.ws.timeout to 2700
Making ServletUtil changes JDK7
Updating sonar scan library, new methods for ServletUtil
Increased sonar.qualitygate.timeout to 2700 seconds(45 minutes)
(doubt this helps)
Increased travis_wait from 30 minutes to 45 minutes (doubt this
helps)
Merge branch 'master' of https://github.com/opendap/olfs
Trying a bigger memory space for ant sonarscan
2022-06-13 The-Robot-Travis <[email protected]>
bes-3.20.10-461 2022-06-13T21:55:09+0000 - Triggering OLFS
build for snapshots.
2022-06-13 ndp-opendap <[email protected]>
Moving snapshots off openjdk8 to openjdk11
Merge branch 'master' of https://github.com/opendap/olfs
Disabling JDK8 build stage
2022-06-12 The-Robot-Travis <[email protected]>
bes-3.20.10-460 2022-06-13T01:37:39+0000 - Triggering OLFS
build for snapshots.
2022-06-10 The-Robot-Travis <[email protected]>
bes-3.20.10-435 2022-06-10T20:09:18+0000 - Triggering OLFS
build for snapshots.
2022-06-06 ndp-opendap <[email protected]>
Dropped DISTRO dependency on "check" target as that invokes
JUnit tests which no linger work in TravisCI
2022-06-04 ndp-opendap <[email protected]>
Dropping junit stuff because "focal" does not seem to have it.
Switching build machine to "focal" from "trusty"
Disabled JDK8 and JDK11 JUnit tests because TravisCI appears to
have dropped support for JUnit with no warning. Nice change control
TravisCI
Back to "trusty", disabled JDK JUnit tests
2022-06-03 ndp-opendap <[email protected]>
Debugging apt ant/junit installation
Debugging apt junit installation
Trying to add junit and ant to apt packages, switch to focal
Trying to add junit to apt packages
Switching TravisCI build to "bionic" from "focal"
Switching TravisCI build to "focal" from "trusty"
Switching TravisCI build back to "trusty"
2022-06-02 ndp-opendap <[email protected]>
Swtiching TravisCI to 'bionic'
Merge branch 'master' of https://github.com/opendap/olfs
Switching TravisCI build to "focal" from "trusty"
2022-06-02 The-Robot-Travis <[email protected]>
bes-3.20.10-414 2022-06-02T20:53:06+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-413 2022-06-02T19:52:45+0000 - Triggering OLFS
build for snapshots.
2022-05-31 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Repaired HyraxAccessLog appender fileNamePattern so that rolled
up log files have the correct name and end up in the correct location.
2022-05-27 The-Robot-Travis <[email protected]>
bes-3.20.10-409 2022-05-27T21:08:20+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-408 2022-05-27T20:58:18+0000 - Triggering OLFS
build for snapshots.
2022-05-26 The-Robot-Travis <[email protected]>
bes-3.20.10-402 2022-05-26T23:41:25+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-400 2022-05-26T19:49:04+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-394 2022-05-26T15:47:54+0000 - Triggering OLFS
build for snapshots.
2022-05-25 The-Robot-Travis <[email protected]>
bes-3.20.10-390 2022-05-25T21:55:55+0000 - Triggering OLFS
build for snapshots.
2022-05-24 The-Robot-Travis <[email protected]>
bes-3.20.10-386 2022-05-24T16:44:12+0000 - Triggering OLFS
build for snapshots.
2022-05-23 The-Robot-Travis <[email protected]>
bes-3.20.10-385 2022-05-23T20:14:18+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-384 2022-05-23T20:02:07+0000 - Triggering OLFS
build for snapshots.
2022-05-18 The-Robot-Travis <[email protected]>
bes-3.20.10-374 2022-05-18T19:57:52+0000 - Triggering OLFS
build for snapshots.
2022-05-17 The-Robot-Travis <[email protected]>
bes-3.20.10-371 2022-05-17T20:39:35+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-370 2022-05-17T18:47:04+0000 - Triggering OLFS
build for snapshots.
2022-05-13 The-Robot-Travis <[email protected]>
bes-3.20.10-368 2022-05-13T20:16:55+0000 - Triggering OLFS
build for snapshots.
2022-05-11 The-Robot-Travis <[email protected]>
bes-3.20.10-362 2022-05-11T21:51:45+0000 - Triggering OLFS
build for snapshots.
2022-05-09 The-Robot-Travis <[email protected]>
bes-3.20.10-347 2022-05-09T20:43:34+0000 - Triggering OLFS
build for snapshots.
2022-05-07 The-Robot-Travis <[email protected]>
bes-3.20.10-344 2022-05-07T12:03:46+0000 - Triggering OLFS
build for snapshots.
2022-05-06 The-Robot-Travis <[email protected]>
bes-3.20.10-342 2022-05-06T22:45:41+0000 - Triggering OLFS
build for snapshots.
2022-05-02 The-Robot-Travis <[email protected]>
bes-3.20.10-302 2022-05-02T20:03:56+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-300 2022-05-02T17:22:19+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-298 2022-05-02T16:33:07+0000 - Triggering OLFS
build for snapshots.
2022-04-29 The-Robot-Travis <[email protected]>
bes-3.20.10-290 2022-04-29T18:02:31+0000 - Triggering OLFS
build for snapshots.
2022-04-27 The-Robot-Travis <[email protected]>
bes-3.20.10-281 2022-04-27T19:28:12+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-279 2022-04-27T18:17:42+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-277 2022-04-27T17:23:24+0000 - Triggering OLFS
build for snapshots.
2022-04-26 The-Robot-Travis <[email protected]>
bes-3.20.10-275 2022-04-27T00:55:55+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-273 2022-04-26T19:21:13+0000 - Triggering OLFS
build for snapshots.
2022-04-25 The-Robot-Travis <[email protected]>
bes-3.20.10-271 2022-04-25T19:59:33+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-269 2022-04-25T17:27:15+0000 - Triggering OLFS
build for snapshots.
2022-04-19 The-Robot-Travis <[email protected]>
bes-3.20.10-248 2022-04-19T16:04:52+0000 - Triggering OLFS
build for snapshots.
2022-04-13 The-Robot-Travis <[email protected]>
bes-3.20.10-241 2022-04-13T21:34:53+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-238 2022-04-13T19:19:34+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-236 2022-04-13T15:48:59+0000 - Triggering OLFS
build for snapshots.
2022-04-12 The-Robot-Travis <[email protected]>
bes-3.20.10-235 2022-04-12T21:54:25+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-234 2022-04-12T21:27:24+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-232 2022-04-12T14:09:32+0000 - Triggering OLFS
build for snapshots.
2022-04-11 The-Robot-Travis <[email protected]>
bes-3.20.10-230 2022-04-11T12:02:44+0000 - Triggering OLFS
build for snapshots.
2022-04-08 Nathan Potter <[email protected]>
Apparently FileDispatchHandler is not actually ready to be
deprecated. (#149)
2022-04-08 The-Robot-Travis <[email protected]>
bes-3.20.10-226 2022-04-08T19:21:14+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-225 2022-04-08T18:43:03+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-223 2022-04-08T15:57:58+0000 - Triggering OLFS
build for snapshots.
2022-04-06 The-Robot-Travis <[email protected]>
bes-3.20.10-216 2022-04-06T21:07:06+0000 - Triggering OLFS
build for snapshots.
2022-04-04 The-Robot-Travis <[email protected]>
bes-3.20.10-210 2022-04-04T20:10:11+0000 - Triggering OLFS
build for snapshots.
2022-04-01 The-Robot-Travis <[email protected]>
bes-3.20.10-207 2022-04-01T23:48:01+0000 - Triggering OLFS
build for snapshots.
2022-03-31 The-Robot-Travis <[email protected]>
bes-3.20.10-200 2022-03-31T19:15:49+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-198 2022-03-31T16:41:57+0000 - Triggering OLFS
build for snapshots.
2022-03-30 The-Robot-Travis <[email protected]>
bes-3.20.10-190 2022-03-30T19:57:34+0000 - Triggering OLFS
build for snapshots.
2022-03-29 The-Robot-Travis <[email protected]>
bes-3.20.10-184 2022-03-30T00:12:46+0000 - Triggering OLFS
build for snapshots.
2022-03-24 The-Robot-Travis <[email protected]>
bes-3.20.10-168 2022-03-24T23:06:19+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-166 2022-03-24T22:19:06+0000 - Triggering OLFS
build for snapshots.
2022-03-22 The-Robot-Travis <[email protected]>
bes-3.20.10-152 2022-03-22T17:12:06+0000 - Triggering OLFS
build for snapshots.
2022-03-18 The-Robot-Travis <[email protected]>
bes-3.20.10-148 2022-03-19T00:42:31+0000 - Triggering OLFS
build for snapshots.
2022-03-17 Nathan Potter <[email protected]>
Resetting jdk11 builds, dropping workaround (#147)
2022-03-14 The-Robot-Travis <[email protected]>
bes-3.20.10-144 2022-03-14T16:37:52+0000 - Triggering OLFS
build for snapshots.
2022-03-10 The-Robot-Travis <[email protected]>
bes-3.20.10-138 2022-03-10T19:26:15+0000 - Triggering OLFS
build for snapshots.
2022-03-10 Kodi Neumiller <[email protected]>
Fixed kayako feedback link
2022-03-09 The-Robot-Travis <[email protected]>
bes-3.20.10-135 2022-03-10T00:40:41+0000 - Triggering OLFS
build for snapshots.
2022-03-09 ndp-opendap <[email protected]>
Adding trav_wait 30 to gradlescan
2022-03-09 Nathan Potter <[email protected]>
Adding a travis_wait 30 call to sonarscan (#146)
2022-03-09 Kodi Neumiller <[email protected]>
Merge pull request #144 from OPENDAP/kayako_feedback
Added Kayako feedback link in footer of landing page
Merge new changes from master
2022-03-09 ndp-opendap <[email protected]>
Upping sonarscan timeout to 30 minutes
2022-03-09 Nathan Potter <[email protected]>
Adding constraint expression to the history_json request_url
field (#143)
* Adding constraint expression to the history_json request_url
field
* URLDecode CE string before adding it to the request_url
* Removed URLDecode of CE string when adding it to the
history_json.request_url so that it matches what is
written to the CF history attribute.
* TravisCI hack for jdk-11
* TravisCI hack for jdk-11
* Removing jdk11 keys from .travis.yml as part of bad jdk11
patch
* Removing jdk11 keys from .travis.yml as part of bad jdk11
patch
* Removing jdk11 keys from .travis.yml as part of bad jdk11
patch
* Adding ant targets to TravisCI build stage for sonarscan to
see more infos
* Adding calls to the ant 'show' target for builds to verify
jdk in use
* More TravisCI hackery for java 11
* Added decoded_constraint to history_json parameters
* Set sonarscan timeout to 9.5 minutes.
2022-03-08 Kodi Neumiller <[email protected]>
Merge branch 'master' into kayako_feedback
2022-03-08 The-Robot-Travis <[email protected]>
bes-3.20.10-129 2022-03-08T17:25:27+0000 - Triggering OLFS
build for snapshots.
2022-03-07 The-Robot-Travis <[email protected]>
bes-3.20.10-127 2022-03-08T00:49:23+0000 - Triggering OLFS
build for snapshots.
2022-03-06 Kodi Neumiller <[email protected]>
Add kayako feedback link
2022-03-04 ndp-opendap <[email protected]>
Merge remote-tracking branch 'origin/master'
Moving Gradle scan into "gradlescan" stage to prevent a race
condition in sonarcloud.io when two scans are being run at the same
time.
2022-03-04 The-Robot-Travis <[email protected]>
bes-3.20.10-125 2022-03-04T21:34:28+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-123 2022-03-04T20:27:15+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-122 2022-03-04T20:00:37+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-120 2022-03-04T19:20:50+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-119 2022-03-04T19:09:05+0000 - Triggering OLFS
build for snapshots.
2022-03-04 ndp-opendap <[email protected]>
Merge remote-tracking branch 'origin/master'
Moving Gradle scan into "scan" stage
2022-03-04 The-Robot-Travis <[email protected]>
bes-3.20.10-117 2022-03-04T14:18:02+0000 - Triggering OLFS
build for snapshots.
2022-03-03 The-Robot-Travis <[email protected]>
bes-3.20.10-115 2022-03-04T01:38:28+0000 - Triggering OLFS
build for snapshots.
2022-03-02 The-Robot-Travis <[email protected]>
bes-3.20.10-113 2022-03-02T19:55:28+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-112 2022-03-02T18:48:52+0000 - Triggering OLFS
build for snapshots.
2022-03-01 ndp-opendap <[email protected]>
force build
Force build
Merge branch 'master' of https://github.com/opendap/olfs
Toned down the logging of unanticipated Authorization headers
Toned down the logging of unanticipated Authorization headers
2022-02-25 The-Robot-Travis <[email protected]>
bes-3.20.10-102 2022-02-25T21:35:43+0000 - Triggering OLFS
build for snapshots.
2022-02-24 The-Robot-Travis <[email protected]>
bes-3.20.10-100 2022-02-24T19:20:34+0000 - Triggering OLFS
build for snapshots.
bes-3.20.10-98 2022-02-24T16:52:37+0000 - Triggering OLFS build
for snapshots.
2022-02-24 ndp-opendap <[email protected]>
Dropped "Get As DAP2 Binary Object" button from the DAP4 Data
Request Form because it is: - Not a compatible data model - Too much
hacking to support the two request CE syntax verions
2022-02-23 ndp-opendap <[email protected]>
Trying to undo the broken Version.java.in trick because it is
breaking our deplyments.
2022-02-22 The-Robot-Travis <[email protected]>
bes-3.20.10-96 2022-02-22T17:43:52+0000 - Triggering OLFS build
for snapshots.
2022-02-20 The-Robot-Travis <[email protected]>
bes-3.20.10-94 2022-02-20T23:03:05+0000 - Triggering OLFS build
for snapshots.
2022-02-18 The-Robot-Travis <[email protected]>
bes-3.20.10-91 2022-02-18T20:53:03+0000 - Triggering OLFS build
for snapshots.
2022-02-17 The-Robot-Travis <[email protected]>
bes-3.20.10-90 2022-02-17T21:48:03+0000 - Triggering OLFS build
for snapshots.
2022-02-17 Nathan Potter <[email protected]>
Patching redirect loop from unexpected authorization header
(#142)
* Patching redirect loop from unexpected authorization header
* SPelling correction
* Reworked EDL Auth token detetion logic
* Updated log message
* Refining usopported authorization schee rejection
* Updating key for unsupported authorization scheme rejection
* Updating key for unsupported authorization scheme rejection
* Fixing mangled URS auth keys
* Sorting out bad refactor of EDL token content.
* Switched 403 response for RejectUnsupportedAuthzSchemes
from a simple response.sendError() to throwing a Forbidden
exception which shuold allow for custom message content.
* Updated bad auth rejection message.
2022-02-17 ndp-opendap <[email protected]>
Merge branch 'master' of https://github.com/opendap/olfs
Trying a hack to the minimum description length in json-ld
2022-02-16 The-Robot-Travis <[email protected]>
bes-3.20.10-89 2022-02-17T01:19:38+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-88 2022-02-16T23:37:18+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-86 2022-02-16T22:34:02+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-85 2022-02-16T18:25:55+0000 - Triggering OLFS build
for snapshots.
2022-02-15 The-Robot-Travis <[email protected]>
bes-3.20.10-84 2022-02-16T01:53:35+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-82 2022-02-15T22:30:38+0000 - Triggering OLFS build
for snapshots.
2022-02-14 The-Robot-Travis <[email protected]>
bes-3.20.10-79 2022-02-14T18:52:56+0000 - Triggering OLFS build
for snapshots.
2022-02-13 The-Robot-Travis <[email protected]>
bes-3.20.10-77 2022-02-13T19:09:42+0000 - Triggering OLFS build
for snapshots.
2022-02-13 Nathan Potter <[email protected]>
Detect client protcol change (#141)
* Updated RequInfo.getRequestUrlPath() so that it utilizes
the request headers:
- "CloudFront-Forwarded-Proto"
- "X-Forwarded-Proto"
- "X-Forwarded-Port"
In reconstructing the "request url" dereferenced by the
initiating client. This means the if some upstream entity
rewrites the URL (Like CloudFront does when it drops the
https protcol in favor of http for internal access) it
can be detected and links built by the server and returned
to the client as links be correct.
* Renamed ForceDataRequestFormLinkToHttps to ForceLinksToHttps
which is more in the spirit of the action.
* Added explanatory comment/reference for
javax.servlet.forward.* stuff
* Small bug fixes and copyright update on affected files
* TravisCI tweak to snapshot and trigger downstream builds.
* Trying deploy regex
* Trying complex stage conditionals
* Trying complex stage conditionals
* Trying complex stage conditionals
* Trying complex stage conditionals
* Trying complex stage conditionals
* Trying complex stage conditionals
* Hacking conditional deploy
* Hacking conditional deploy, v2
* Documentation comments in config file templates.
* Push for build
2022-02-11 The-Robot-Travis <[email protected]>
bes-3.20.10-76 2022-02-12T05:19:35+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-75 2022-02-12T04:48:26+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-74 2022-02-12T03:13:01+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-73 2022-02-12T02:21:27+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-66 2022-02-11T21:06:11+0000 - Triggering OLFS build
for snapshots.
2022-02-10 Sam Lloyd <[email protected]>
ndp-opendap <[email protected]>
added gradle build to travis (#138)
* added gradle build to travis
* Dropped java 11
* added gradle build to travis
* Adding java11
* Add java11 to sonarscan
* removed extra blank lines
* removed duplicate scripts calls
* Build with gradle and java-11
* refactored scan acitvity
* first pass at gradle sonar scan code
* possible junit-jupiter-apr fix
* source and target compatibility change
* revert source and target compatibility change
* gradle and travis file changes
* gradle and travis file changes
* sonar testing
* sonar testing
* sonar testing
* sonar testing
* sonar testing
* clean up
* sonar.qualitygate.wait=true added
* small travis changes
2022-02-08 The-Robot-Travis <[email protected]>
bes-3.20.10-63 2022-02-09T00:45:30+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-61 2022-02-08T18:04:58+0000 - Triggering OLFS build
for snapshots.
2022-02-07 The-Robot-Travis <[email protected]>
bes-3.20.10-59 2022-02-07T18:55:36+0000 - Triggering OLFS build
for snapshots.
2022-02-03 The-Robot-Travis <[email protected]>
bes-3.20.10-54 2022-02-03T21:20:22+0000 - Triggering OLFS build
for snapshots.
bes-3.20.10-53 2022-02-03T21:10:35+0000 - Triggering OLFS build
for snapshots.
2022-02-03 ndp-opendap <[email protected]>
Hacking a localhost exception for HTTPS forcing of EDL returnTo
URLs
Hacking a localhost exception for HTTPS forcing of EDL returnTo
URLs
Testing for CloudFront-Forwarded-Proto headers. Force https is
on only for Dataset URL in Forms.
2022-02-03 Nathan Potter <[email protected]>
Trying gradle builds with jdk11 (#140)
* Trying gradle build with jdk11
* Trying gradle build with jdk11
* Trying snyk with jdk11
2022-02-03 ndp-opendap <[email protected]>
Added jaxb-api.2.3.1 to Gradle files.
Disabling ForceLinksToHttps to see if that is causing test
failures in NGAP Bamboo build
2022-02-02 ndp-opendap <[email protected]>
Fixing Version.java template values
Dropping sshpass
2022-02-02 Nathan Potter <[email protected]>
Fixing return to link for EDL so that it too is governed by