-
Notifications
You must be signed in to change notification settings - Fork 12
/
HyraxChangeLog
1012 lines (644 loc) · 28.3 KB
/
HyraxChangeLog
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
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## Hyrax Version 1.16.8-25 (date: 2022-09-01T17:19:50+0000)
##
## olfs-1.18.13-25
## bes-3.20.13-52
## libdap-3.20.11-32
##
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## libdap4-3.20.11-32
## hyrax-1.16.8-25
##
2022-09-01 ndp-opendap <ndp@opendap.org>
Refining commit message format
Reformatted automated commit message forBES build trigger.
2022-08-31 James Gallagher <jgallagher@opendap.org>
Undo the change to Str::print_val() (#200)
Undo the change to Str::print_val()
Added test-deploy to libdap4 (#202)
2022-08-30 James Gallagher <jgallagher@opendap.org>
Fixed how Str variables are printed. (#199)
Fixed how Str variables are printed.
String variables were printed using the Attribute escaping
code. This lead to odd
behavior when that code was updated to correct years-long
issues that we had been
papering over. I added new code to Str.cc to escape the Str and
Url class' values.
Note that this is really only used by things like getdap &
getdap4 and in test code.
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #198 from OPENDAP/hyrax-708-esc-das
Hyrax 708 esc das
2022-08-25 myang6 <myang6@hdfgroup.org>
reduce several sonar cloud smells
HYRAX-708, 1) Unescape the special characters when parsing DAS
from a file. 2) Update tests. 3) Make DmrRoundTrip and DmrToDap2 tests
temporarily no-op. Will re-visit them later.
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, update the das baseline files to reflect the
escaping of the special characters for string attributes.
2022-08-22 James Gallagher <jgallagher@opendap.org>
Addedd comment about D4Group dims()
[skip ci]
2022-08-22 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-esc-das
HYRAX-708, update the escaping functions for DAP4 XML, DAP2 XML
AND DAS. Temporarily turn off two DAS tests that contain the special
characters.
2022-08-17 ndp-opendap <ndp@opendap.org>
Updating trtavis-ci-opendap github credentials
2022-08-12 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-esc-das
2022-08-08 James Gallagher <jgallagher@opendap.org>
Modify D4Group::find_var() so it can find D4Groups (#194)
Modify D4Group::find_var() so it can find D4Groups
When a path in a CE specifies a Group, we should be returning
all the
variables in that Group. Right now libdap just throws an
exception. Once
find_var() returns the BaseType* to the Group, we should be set
to mark
all of the Group's variables as part of the projection.
Added print_val and print_decl methods to D4Group.
This will make it easy(ier) to add tests for the new 'all vars
in a group' feature/fix.
Added tests for the 'Group projection' feature/fix
Now projection works for Groups and nested groups both and
without
member variables. That is, for normal groups (ones with child
variables) naming the group in a CE results in all the
variables in
that group and its child groups being included in the response.
For
Groups that only contain attributes, naming the group in the CE
will
cause that group to be included in the dap (i.e., data)
response. This
dubious behavior is ... well, dubious. But modulo the
correctness of
attributes in the face of a constraint, it does work.
See DMRTest 243 - 249 plus some of the D4GroupTest unit tests.
2022-07-21 ndp-opendap <ndp@opendap.org>
Updating build offset for TravisCI
Preparing release 3.20.11, Hyrax-1.16.8
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## bes-3.20.13-52
## hyrax-1.16.8-25
##
2022-09-01 ndp-opendap <ndp@opendap.org>
Merge branch 'master' of https://github.com/OPENDAP/bes
2022-09-01 The-Robot-Travis <npotter@opendap.org>
libdap4: Triggering BES build for snapshot production. Build
Version Matrix: libdap4-3.20.11-32 2022-09-01T15:58:46+0000
2022-09-01 ndp-opendap <ndp@opendap.org>
Refining commit message format
Reformatted automated commit message for OLFS build trigger.
2022-08-31 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-31 2022-09-01T03:46:39+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-30 2022-09-01T02:13:50+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-28 2022-09-01T02:09:08+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-26 2022-09-01T01:39:02+0000 Triggering BES
build for snapshots.
2022-08-30 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-22 2022-08-30T16:05:52+0000 Triggering BES
build for snapshots.
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #671 from OPENDAP/fix_gm_test
HYRAX-708, the dmr and ddx input and baseline files (at global
metadata store unit-test) wrongly add "…
2022-08-25 myang6 <myang6@hdfgroup.org>
HYRAX-708, the dmr and ddx input and baseline files wrongly add
" for string. Remove the ".
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #670 from OPENDAP/hyrax-708-no-esc
Hyrax 708 no esc
2022-08-25 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-19 2022-08-25T17:58:29+0000 Triggering BES
build for snapshots.
2022-08-25 myang6 <myang6@hdfgroup.org>
HYRAX-708, updating the HDF4 handler to correctly handle the
special characters.
HYRAX-708, add comments to some handlers about the change of
escaping special characters.
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, add fileout netCDF tests for the special character
handling.
2022-08-23 Kent Yang <myang6@hdfgroup.org>
HYRAX-708, add one test to the HDF5 handler to reflect the
handling of the special characters.
update fits handler to escape the string attribute in the
libdap
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, update ncml tests due to the update of the special
character handling.
2022-08-22 myang6 <myang6@hdfgroup.org>
HYRAX-708, update the baseline files to reflect the correct
handling of escaping special characters for attributes.
2022-08-22 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-15 2022-08-22T22:14:50+0000 Triggering BES
build for snapshots.
2022-08-22 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-no-esc
HYRAX-708, GDAL handler also escapes the special characters.
Need to turn it off since we are doing this in the libdap4.
2022-08-19 James Gallagher <jgallagher@opendap.org>
Length refactor (#667)
Change every call from string::length to string::size
This makes it easier to see where libdap's BaseType::length
is used.
2022-08-17 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-11 2022-08-18T00:02:59+0000 Triggering BES
build for snapshots.
2022-08-17 ndp-opendap <ndp@opendap.org>
Updating travis-ci-opendap github creds
2022-08-15 myang6 <myang6@hdfgroup.org>
HYRAX-708, check in an dmr bescmd file to handle the special
characters.
2022-08-15 Sam Lloyd <slloyd@opendap.org>
added curl_global_init call (#666)
2022-08-12 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-no-esc
2022-08-12 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #665 from OPENDAP/hyrax-788
Hyrax 788
2022-08-12 myang6 <myang6@hdfgroup.org>
HYRAX-788, add tests for scalar variable in compact storage. 1)
integer type. 2)fixed-size string 3)variable-length string 4) With
fillvalue.
HYRAX-788, support scalar variable for compact storage
2022-08-09 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #664 from OPENDAP/hyrax-795
Hyrax 795
2022-08-09 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-795
2022-08-09 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #663 from OPENDAP/hyrax-771
Hyrax 771 - the travis error seems bogus.
2022-08-09 myang6 <myang6@hdfgroup.org>
HYRAX-771, clean two code smells according to sonar cloud
HYRAX-771, trigger travis build.
2022-08-08 myang6 <myang6@hdfgroup.org>
HYRAX-795, add three dmr++ tests to the fileout netCDF module.
1. simple dmr++ test. 2. shuffle+deflate with normal data. 3.
shuffle+deflate+deflate with data that contains fillvalues.
2022-08-08 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-5 2022-08-08T20:09:21+0000 Triggering BES build
for snapshots.
2022-08-08 myang6 <myang6@hdfgroup.org>
HYRAX-771, improve the description of a value-result parameter
according to Jame's suggestion.
2022-08-07 myang6 <myang6@hdfgroup.org>
HYRAX-771, remove unused tests in the git.
HYRAX-771, clean up code.
HYRAX-771, add more tests and clean up code a bit.
2022-08-05 myang6 <myang6@hdfgroup.org>
HYRAX-771, finally fix the corner case in the GHRSST file.
HYRAX-771, fix bugs in the new code but sst still cannot be
decompressed
HYRAX-771, add more debugging
HYRAX-771, not ready checking some testing files for debugging
only.
2022-08-03 Kent Yang <myang6@hdfgroup.org>
HYRAX-771, add the deflate twice special case to the test. The
input buffer of the second deflate is bigger than the chunk size.
Merge branch 'master' into hyrax-771
2022-08-03 myang6 <myang6@hdfgroup.org>
HYRAX-771, make the buffer in the inflate() extended for the
case when the buffer to decompress the data needs to be bigger than the
buffer of the chunk size.
2022-08-03 James Gallagher <jgallagher@opendap.org>
Modified BESDapTransmit so that it uses the libdap::Error
file/line info (#662)
Modified BESDapTransmit so that it uses the libdap::Error file
and line info
This is an improvement over using __FILE__ and __LINE__ for the
location
where the libdap::Error object was rethrown. This makes
tracking down
errors and setting debugger breakpoints faster.
2022-08-01 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/OPENDAP/bes
The merged changes have been through CI/CD and the others
are just formatting.
[skip ci]
Formating changes only to DMZ.cc and gse.yy
[skip ci]
2022-08-01 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #661 from OPENDAP/hyrax-792
HYRAX-792, add bes version in the dmrpp files to ensure all the
filte…
2022-08-01 myang6 <myang6@hdfgroup.org>
HYRAX-792, add bes version in the dmrpp files to ensure all the
filters are included.
2022-07-29 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #660 from OPENDAP/hyrax-793
HYRAX-793, 1. Fixes the bug that the dmrpp cannot retrieve the
data w…
2022-07-29 myang6 <myang6@hdfgroup.org>
HYRAX-793, 1. Fixes the bug that the dmrpp cannot retrieve the
data when a variable contains one chunk and that chunk data are filled
values and the chunk is compressed. 2. Adds three tests to ensure all
related cases are covered.
2022-07-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #657 from OPENDAP/hyrax-745
Hyrax 745
2022-07-22 ndp-opendap <ndp@opendap.org>
Added DOI to README
Changes for release 3.20.13, Hyrax-1.16.8
Moved the ingest of all_modules.txt into
version_update_modules.sh, thus simplifying its invocation.
Fixings modules list for gdal changes.
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.13-25
## hyrax-1.16.8-25
##
2022-09-01 ndp-opendap <ndp@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-51 2022-09-01T16:32:23+0000 - Triggering OLFS build
for snapshots.
2022-09-01 ndp-opendap <ndp@opendap.org>
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 <npotter@opendap.org>
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 <ndp@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-44 2022-08-25T21:54:43+0000 - Triggering OLFS build
for snapshots.
2022-08-22 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-33 2022-08-22T23:42:36+0000 - Triggering OLFS build
for snapshots.
2022-08-19 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-30 2022-08-19T13:54:26+0000 - Triggering OLFS build
for snapshots.
2022-08-18 ndp-opendap <ndp@opendap.org>
Merge branch 'master' of https://github.com/opendap/olfs
Updating github credentials for travis-ci-opendap
2022-08-17 The-Robot-Travis <npotter@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-22 2022-08-15T17:10:20+0000 - Triggering OLFS build
for snapshots.
2022-08-12 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-19 2022-08-12T19:02:00+0000 - Triggering OLFS build
for snapshots.
2022-08-09 The-Robot-Travis <npotter@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-10 2022-08-03T16:14:10+0000 - Triggering OLFS build
for snapshots.
2022-08-01 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-7 2022-08-01T18:32:55+0000 - Triggering OLFS build
for snapshots.
2022-07-29 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-4 2022-07-29T19:05:43+0000 - Triggering OLFS build
for snapshots.
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## Hyrax Version 1.16.8-21 (date: 2022-09-01T04:42:21+0000)
##
## olfs-1.18.13-21
## bes-3.20.13-50
## libdap-3.20.11-31
##
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## libdap4-3.20.11-31
## hyrax-1.16.8-21
##
2022-09-01 ndp-opendap <ndp@opendap.org>
Refining commit message format
Reformatted automated commit message forBES build trigger.
2022-08-31 James Gallagher <jgallagher@opendap.org>
Undo the change to Str::print_val() (#200)
Undo the change to Str::print_val()
Added test-deploy to libdap4 (#202)
2022-08-30 James Gallagher <jgallagher@opendap.org>
Fixed how Str variables are printed. (#199)
Fixed how Str variables are printed.
String variables were printed using the Attribute escaping
code. This lead to odd
behavior when that code was updated to correct years-long
issues that we had been
papering over. I added new code to Str.cc to escape the Str and
Url class' values.
Note that this is really only used by things like getdap &
getdap4 and in test code.
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #198 from OPENDAP/hyrax-708-esc-das
Hyrax 708 esc das
2022-08-25 myang6 <myang6@hdfgroup.org>
reduce several sonar cloud smells
HYRAX-708, 1) Unescape the special characters when parsing DAS
from a file. 2) Update tests. 3) Make DmrRoundTrip and DmrToDap2 tests
temporarily no-op. Will re-visit them later.
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, update the das baseline files to reflect the
escaping of the special characters for string attributes.
2022-08-22 James Gallagher <jgallagher@opendap.org>
Addedd comment about D4Group dims()
[skip ci]
2022-08-22 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-esc-das
HYRAX-708, update the escaping functions for DAP4 XML, DAP2 XML
AND DAS. Temporarily turn off two DAS tests that contain the special
characters.
2022-08-17 ndp-opendap <ndp@opendap.org>
Updating trtavis-ci-opendap github credentials
2022-08-12 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-esc-das
2022-08-08 James Gallagher <jgallagher@opendap.org>
Modify D4Group::find_var() so it can find D4Groups (#194)
Modify D4Group::find_var() so it can find D4Groups
When a path in a CE specifies a Group, we should be returning
all the
variables in that Group. Right now libdap just throws an
exception. Once
find_var() returns the BaseType* to the Group, we should be set
to mark
all of the Group's variables as part of the projection.
Added print_val and print_decl methods to D4Group.
This will make it easy(ier) to add tests for the new 'all vars
in a group' feature/fix.
Added tests for the 'Group projection' feature/fix
Now projection works for Groups and nested groups both and
without
member variables. That is, for normal groups (ones with child
variables) naming the group in a CE results in all the
variables in
that group and its child groups being included in the response.
For
Groups that only contain attributes, naming the group in the CE
will
cause that group to be included in the dap (i.e., data)
response. This
dubious behavior is ... well, dubious. But modulo the
correctness of
attributes in the face of a constraint, it does work.
See DMRTest 243 - 249 plus some of the D4GroupTest unit tests.
2022-07-21 ndp-opendap <ndp@opendap.org>
Updating build offset for TravisCI
Preparing release 3.20.11, Hyrax-1.16.8
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## bes-3.20.13-50
## hyrax-1.16.8-21
##
2022-09-01 ndp-opendap <ndp@opendap.org>
Merge branch 'master' of https://github.com/OPENDAP/bes
2022-09-01 The-Robot-Travis <npotter@opendap.org>
libdap4: Triggering BES build for snapshot production. Build
Version Matrix: libdap4-3.20.11-32 2022-09-01T15:58:46+0000
2022-09-01 ndp-opendap <ndp@opendap.org>
Refining commit message format
Reformatted automated commit message for OLFS build trigger.
2022-08-31 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-31 2022-09-01T03:46:39+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-30 2022-09-01T02:13:50+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-28 2022-09-01T02:09:08+0000 Triggering BES
build for snapshots.
libdap4-3.20.11-26 2022-09-01T01:39:02+0000 Triggering BES
build for snapshots.
2022-08-30 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-22 2022-08-30T16:05:52+0000 Triggering BES
build for snapshots.
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #671 from OPENDAP/fix_gm_test
HYRAX-708, the dmr and ddx input and baseline files (at global
metadata store unit-test) wrongly add "…
2022-08-25 myang6 <myang6@hdfgroup.org>
HYRAX-708, the dmr and ddx input and baseline files wrongly add
" for string. Remove the ".
2022-08-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #670 from OPENDAP/hyrax-708-no-esc
Hyrax 708 no esc
2022-08-25 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-19 2022-08-25T17:58:29+0000 Triggering BES
build for snapshots.
2022-08-25 myang6 <myang6@hdfgroup.org>
HYRAX-708, updating the HDF4 handler to correctly handle the
special characters.
HYRAX-708, add comments to some handlers about the change of
escaping special characters.
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, add fileout netCDF tests for the special character
handling.
2022-08-23 Kent Yang <myang6@hdfgroup.org>
HYRAX-708, add one test to the HDF5 handler to reflect the
handling of the special characters.
update fits handler to escape the string attribute in the
libdap
2022-08-23 myang6 <myang6@hdfgroup.org>
HYRAX-708, update ncml tests due to the update of the special
character handling.
2022-08-22 myang6 <myang6@hdfgroup.org>
HYRAX-708, update the baseline files to reflect the correct
handling of escaping special characters for attributes.
2022-08-22 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-15 2022-08-22T22:14:50+0000 Triggering BES
build for snapshots.
2022-08-22 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-no-esc
HYRAX-708, GDAL handler also escapes the special characters.
Need to turn it off since we are doing this in the libdap4.
2022-08-19 James Gallagher <jgallagher@opendap.org>
Length refactor (#667)
Change every call from string::length to string::size
This makes it easier to see where libdap's BaseType::length
is used.
2022-08-17 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-11 2022-08-18T00:02:59+0000 Triggering BES
build for snapshots.
2022-08-17 ndp-opendap <ndp@opendap.org>
Updating travis-ci-opendap github creds
2022-08-15 myang6 <myang6@hdfgroup.org>
HYRAX-708, check in an dmr bescmd file to handle the special
characters.
2022-08-15 Sam Lloyd <slloyd@opendap.org>
added curl_global_init call (#666)
2022-08-12 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-708-no-esc
2022-08-12 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #665 from OPENDAP/hyrax-788
Hyrax 788
2022-08-12 myang6 <myang6@hdfgroup.org>
HYRAX-788, add tests for scalar variable in compact storage. 1)
integer type. 2)fixed-size string 3)variable-length string 4) With
fillvalue.
HYRAX-788, support scalar variable for compact storage
2022-08-09 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #664 from OPENDAP/hyrax-795
Hyrax 795
2022-08-09 myang6 <myang6@hdfgroup.org>
Merge branch 'master' into hyrax-795
2022-08-09 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #663 from OPENDAP/hyrax-771
Hyrax 771 - the travis error seems bogus.
2022-08-09 myang6 <myang6@hdfgroup.org>
HYRAX-771, clean two code smells according to sonar cloud
HYRAX-771, trigger travis build.
2022-08-08 myang6 <myang6@hdfgroup.org>
HYRAX-795, add three dmr++ tests to the fileout netCDF module.
1. simple dmr++ test. 2. shuffle+deflate with normal data. 3.
shuffle+deflate+deflate with data that contains fillvalues.
2022-08-08 The-Robot-Travis <npotter@opendap.org>
libdap4-3.20.11-5 2022-08-08T20:09:21+0000 Triggering BES build
for snapshots.
2022-08-08 myang6 <myang6@hdfgroup.org>
HYRAX-771, improve the description of a value-result parameter
according to Jame's suggestion.
2022-08-07 myang6 <myang6@hdfgroup.org>
HYRAX-771, remove unused tests in the git.
HYRAX-771, clean up code.
HYRAX-771, add more tests and clean up code a bit.
2022-08-05 myang6 <myang6@hdfgroup.org>
HYRAX-771, finally fix the corner case in the GHRSST file.
HYRAX-771, fix bugs in the new code but sst still cannot be
decompressed
HYRAX-771, add more debugging
HYRAX-771, not ready checking some testing files for debugging
only.
2022-08-03 Kent Yang <myang6@hdfgroup.org>
HYRAX-771, add the deflate twice special case to the test. The
input buffer of the second deflate is bigger than the chunk size.
Merge branch 'master' into hyrax-771
2022-08-03 myang6 <myang6@hdfgroup.org>
HYRAX-771, make the buffer in the inflate() extended for the
case when the buffer to decompress the data needs to be bigger than the
buffer of the chunk size.
2022-08-03 James Gallagher <jgallagher@opendap.org>
Modified BESDapTransmit so that it uses the libdap::Error
file/line info (#662)
Modified BESDapTransmit so that it uses the libdap::Error file
and line info
This is an improvement over using __FILE__ and __LINE__ for the
location
where the libdap::Error object was rethrown. This makes
tracking down
errors and setting debugger breakpoints faster.
2022-08-01 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/OPENDAP/bes
The merged changes have been through CI/CD and the others
are just formatting.
[skip ci]
Formating changes only to DMZ.cc and gse.yy
[skip ci]
2022-08-01 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #661 from OPENDAP/hyrax-792
HYRAX-792, add bes version in the dmrpp files to ensure all the
filte…
2022-08-01 myang6 <myang6@hdfgroup.org>
HYRAX-792, add bes version in the dmrpp files to ensure all the
filters are included.
2022-07-29 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #660 from OPENDAP/hyrax-793
HYRAX-793, 1. Fixes the bug that the dmrpp cannot retrieve the
data w…
2022-07-29 myang6 <myang6@hdfgroup.org>
HYRAX-793, 1. Fixes the bug that the dmrpp cannot retrieve the
data when a variable contains one chunk and that chunk data are filled
values and the chunk is compressed. 2. Adds three tests to ensure all
related cases are covered.
2022-07-25 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #657 from OPENDAP/hyrax-745
Hyrax 745
2022-07-22 ndp-opendap <ndp@opendap.org>
Added DOI to README
Changes for release 3.20.13, Hyrax-1.16.8
Moved the ingest of all_modules.txt into
version_update_modules.sh, thus simplifying its invocation.
Fixings modules list for gdal changes.
## -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
## olfs-1.18.13-21
## hyrax-1.16.8-21
##
2022-09-01 ndp-opendap <ndp@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-51 2022-09-01T16:32:23+0000 - Triggering OLFS build
for snapshots.
2022-09-01 ndp-opendap <ndp@opendap.org>
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 <npotter@opendap.org>
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 <ndp@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-44 2022-08-25T21:54:43+0000 - Triggering OLFS build
for snapshots.
2022-08-22 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-33 2022-08-22T23:42:36+0000 - Triggering OLFS build
for snapshots.
2022-08-19 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-30 2022-08-19T13:54:26+0000 - Triggering OLFS build
for snapshots.
2022-08-18 ndp-opendap <ndp@opendap.org>
Merge branch 'master' of https://github.com/opendap/olfs
Updating github credentials for travis-ci-opendap
2022-08-17 The-Robot-Travis <npotter@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-22 2022-08-15T17:10:20+0000 - Triggering OLFS build
for snapshots.
2022-08-12 The-Robot-Travis <npotter@opendap.org>
bes-3.20.13-19 2022-08-12T19:02:00+0000 - Triggering OLFS build
for snapshots.
2022-08-09 The-Robot-Travis <npotter@opendap.org>
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 <npotter@opendap.org>
bes-3.20.13-10 2022-08-03T16:14:10+0000 - Triggering OLFS build
for snapshots.