forked from eddelbuettel/rprotobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2920 lines (2075 loc) · 104 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-11-07 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Authors@R): Added
2024-07-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro version and date
2024-07-02 Matteo Gianella <[email protected]>
* src/RWarningErrorCollector.h: Code update also in case of protobuf
version >= 26.x
* src/RWarningErrorCollector.cpp: Idem
* src/wrapper_Message: Idem
2024-05-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro version and date
2024-05-28 Michael Chirico <[email protected]>
* R/extensions.R: Build error strings with stop(), avoiding paste()
* src/init.c: Remove placeholders for unimplemented methods
* R/00classes.R: Idem
* R/field_count.R: Idem
* R/wrapper_ServiceDescriptor.R: Idem
2024-05-24 Dirk Eddelbuettel <[email protected]>
* README.md: Use tinyverse.netlify.app for dependency badge
2024-04-23 Dirk Eddelbuettel <[email protected]>
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v4,
add r-ci-setup actions
2024-03-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro version and date
2024-03-20 Xufei Tan <[email protected]>
* inst/tinytest/test_addressbook.R: use `toTextFormat()` in tests
2024-01-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.22
* configure.ac: Idem
* configure: Idem
2024-01-19 Dirk Eddelbuettel <[email protected]>
* src/Makevars.ucrt: Apply patch emailed by Tomas Kalibera to support
pkg-config if present (as e.g. under upcoming Rtools)
2023-12-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.21
* configure.ac: Idem
* configure: Idem
2023-12-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll micro version and date
* R/00classes.R: Tweak .Call() update some more
* R/field_count.R: Idem
* R/wrapper_ServiceDescriptor.R: Idem
* README.md: Update / remove stale references to old ProtoBuf doc site
* man/ArrayInputStream-class.Rd: Idem
* man/ArrayOutputStream-class.Rd: Idem
* man/Descriptor-class.Rd: Idem
* man/EnumValueDescriptor-class.Rd: Idem
* man/FileDescriptor-class.Rd: Idem
* man/FileInputStream-class.Rd: Idem
* man/FileOutputStream-class.Rd: Idem
* man/Message-class.Rd: Idem
* man/ZeroCopyInputStream-class.Rd: Idem
* man/ZeroCopyOutputStream-class.Rd: Idem
* man/swap.Rd: Idem
* inst/tinytest/data/encoding.proto: Idem
* inst/tinytest/test_serialize.R: Idem
* vignettes/rmd/RProtoBuf-intro.Rmd: Idem
* vignettes/rmd/RProtoBuf-quickref.Rmd: Idem
2023-12-09 Dirk Eddelbuettel <[email protected]>
* .github/workflows/alpine.yaml: Add container-based continuous
integration test to permit test under newer Protocol Buffers
* R/*.R: Update numerous .Call() to switch to unquoted expression
given symbol registration of the compiled functions
2023-07-12 Matteo Gianella <[email protected]>
* src/RSourceTree.h: Code update also in case of protobuf version >= 22.x
* src/RSourceTree.cpp: Idem
* src/wrapper_Descriptor: Idem
* src/wrapper_Message: Idem
2023-03-11 Dirk Eddelbuettel <[email protected]>
* src/Makevars.ucrt (CXX_STD): Also set C++17 here
2022-11-04 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml (jobs): Update different actions
2022-11-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.20
* configure.ac: Idem
* configure: Idem
* src/init.c: Add two 'void' for proper prototypes pleasing clang-15
* .github/workflows/ci.yaml (jobs): Update to actions/checkout@v3
* .github/workflows/docker.yaml (name): Idem
* inst/NEWS.Rd: Update on http:// to https://
* src/Makevars.in (CXX_STD): The compilation standard is now C++17
* src/Makevars.win (CXX_STD): Idem
* DESCRIPTION (SystemRequirements): Stated updated requirement
2022-05-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.19
* configure.ac: Idem
* configure: Idem
2022-05-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* src/mutators.cpp: Change seven string to std::string
2022-04-06 Michael Chirico <[email protected]>
* R/00classes.R: Additional tests and updated changes
* R/debug_string.R: Idem
* R/text_format.R: Idem
* man/Message-class.Rd: Idem
* inst/tinytest/test_message.R: Idem
2022-04-04 Dirk Eddelbuettel <[email protected]>
* src/wrapper_Message.cpp: Correct minor issue, reenable compilation
* inst/tinytest/test_message.R: Park one test temporarily
2022-04-04 Michael Chirico <[email protected]>
* R/00classes.R: Expose TextFormat for Message->character conversion
* R/debug_string.R: Idem
* R/text_format.R: Idem
* src/wrapper_Message.cpp: Idem
* src/init.c: Idem
* man/Message-class.Rd: Idem
* inst/tinytest/test_message.R: Idem
2022-03-23 Dirk Eddelbuettel <[email protected]>
* R/internals.R (getProtobufLibVersion): If formatted result, return
as 'package_version()' rather than just string; update .Call()
* R/zzz.R (.onAttach): In interactive mode disply package and
underlying library version on startup
2022-01-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Description, SystemRequirements): Updated to state that
version 3.3.0 from March 2017 or later is now needed
2021-12-27 Dirk Eddelbuettel <[email protected]>
* README.md: Remove unused continuous integration artifact and badge
2021-12-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.18
* man/*Rd: Update a number of URLs
2021-12-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version and date
* src/Makevars.ucrt: Applied patch by Tomas Kalibera that is part of
his changes for the Windows utf8-enhabced ucrt3 builds of R 4.2.0
2021-10-10 Dirk Eddelbuettel <[email protected]>
* README.md: Update JSS article url to doi form per JSS request,
switch to shorter https://doi.org/ base
2021-10-01 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml (on): Restrict Docker rebuilds to
pushes to master branch
2021-09-26 Dirk Eddelbuettel <[email protected]>
* .github/workflows/docker.yaml: Add action to build and push
containers with cron set to monthly schedule
2021-06-27 Jeroen Ooms <[email protected]>
* src/Makevars.win: Support UCRT build
* src/Makevars.ucrt: Idem
2021-06-11 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* .editorconfig: Added
2021-06-10 Vitalie Spinu <[email protected]>
* R/debug_string.R: Support extra toJSON format arguments
* R/00classes.R: Idem
* src/wrapper_Message.cpp: Idem
* src/init.c: Idem
* man/Message-class.Rd: Document new parameters
2021-06-01 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (URL): Add package page to URL field
2021-01-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version and date
* DESCRIPTION (Imports): Remove RCurl used for rpc
* NAMESPACE: Remove 'rpc' class and 'invoke' method
* R/00classes.R: Comment-out removed class and method
* deprecated/R/http.handler.R: Moved from R/
* deprecated/R/rpc.R: Idem
* deprecated/man/RpcHTTP-class.Rd: Moved from man/
* deprecated/man/invokeLocally.Rd: Idem
* .Rbuildignore: Added deprecated/
* .github/workflows/ci.yaml: Add CI runner using r-ci
* README.md: Add new badge
2020-08-16 Dirk Eddelbuettel <[email protected]>
* README.md: Added JSS badge
2020-06-15 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Switch to bionic, change to derive package and version
2020-05-28 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
2020-05-28 Adam Cozzette <[email protected]>
* src/wrapper_ServiceDescriptor.cpp: Support FindMethodByName() taking
std::string_view
* src/RcppMacros.h: Idem
2020-03-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.17
* README.md: Add a last-commit badge
2020-03-21 Dirk Eddelbuettel <[email protected]>
* src/wrapper_Message.cpp: Condition use of ByteSizeLong on ProtoBuf
version 3.6.0 or later to permit compilation on older systems
* inst/tinytest/test_addressbook.R: Skip JSON tests if ProtoBuf 2.*
* configure.ac: Extract version from DESCRIPTION via awk
* configure: Regenerated
2020-03-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.16
* src/wrapper_Message.cpp: Switch to ByteSizeLong() to appease a
clang warning on deprecated declarations
* man/bytesize.Rd: Relax a comparison from identical() to all.equal()
2020-03-18 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* R/debug_string.R: Correct method argument
* man/Message-class.Rd: Alias toJSON
2020-03-16 Siddhartha Bagaria <[email protected]>
* NAMESPACE: Add JSON parsing and printing support
* R/00classes.R: Idem
* R/completion.R: Idem
* R/debug_string.R: Idem
* R/read.R: Idem
* inst/tinytest/test_addressbook.R: Idem
* man/Message-class.Rd: Idem
* man/readJSON.Rd: Idem
* src/init.c: Idem
* src/rprotobuf.h: Idem
* src/wrapper_Descriptor.cpp: Idem
* src/wrapper_Message.cpp: Idem
2020-02-08 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.15
2020-02-07 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-intro.Rnw: Wrapper around pre-made vignette
* vignettes/RProtoBuf-paper.Rnw: Idem
* vignettes/RProtoBuf-quickref.Rnw: Idem
* DESCRIPTION (Suggests): Remove Suggests for RUnit, rmarkdown,
knitr, pinp; (VignetteBuilder): Removed
* docker/ci/Dockerfile: No longer install r-cran-runit
* R/read.R: Always close connection in readASCII
2020-02-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Suggests): Add tinytest
* inst/tinytest/*: Converted from RUnit to tinytest
* inst/unitTests/*: Idem
* tests/tinytest.R: Idem
* tests/doRUnit.R: Idem
* docker/ci/Dockerfile: Add tinytest
2020-02-04 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
2020-02-03 Dirk Eddelbuettel <[email protected]>
* src/wrapper_Message.cpp: Correct indexing for Message and Group
2019-06-30 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.14
* src/wrapper_Message.cpp: Add extra parens [g++ warning]
2019-06-27 Jeroen Ooms <[email protected]>
* Windows: Update to protobuf 3.8.0, add support for GCC 8+.
2018-11-30 Jarod G.R. Meng <[email protected]>
* src/wrapper_Message.cpp: Protect identical() against recursive
messages
2018-11-26 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
2018-11-26 Jarod G.R. Meng <[email protected]>
* R/identical.R: Add 'add.equal.Message' for Protocol Buffer message
types to avoid the default method being called by unit test runners
* NAMESPACE: Add S3 registration for new method
2018-11-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.13
2018-11-02 Dirk Eddelbuettel <[email protected]>
* tests/runUnitTests.R: Rewritten matching other packages
* man/readASCII.Rd: Set examples to \dontrun{} as occasional error
from a remaining open connection seen
2018-09-08 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Rewritten to use rprotobuf/ci Docker container
* docker/run/Dockerfile: Correction to Dockerfile
2018-09-07 Dirk Eddelbuettel <[email protected]>
* docker/run/Dockerfile: Added Dockerfile for deployment
2018-09-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* .Rbuildignore: Ignore GTAGS, GRTAGS, GPATH from GNU global
* .gitignore: Idem
* docker/ci/Dockerfile: Added Dockerfile for CI use
2018-09-06 Jeffrey Shen <[email protected]>
* R/rexp_obj.R: Refinement for POSIXlt treatment
2018-09-05 Jeffrey Shen <[email protected]>
* R/rexp_obj.R: Unclass POSIXlt before converting them
* inst/unitTests/runit.serialize_pb.R: Unit test
2018-09-02 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Enforce R version 3.4 for now as the PPA we need for
the Protocol Buffers library has r-cran-* packages built for R 3.4
2018-07-25 Dirk Eddelbuettel <[email protected]>
* configure.ac: Set CXX and CXXFLAGS values by calling R to reflect
values in Makeconf used by R [CRAN request]
* configure: Idem
2018-07-11 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.12
2018-07-08 Dirk Eddelbuettel <[email protected]>
* src/wrapper_Message.cpp (rprotobuf): Properly reference std::vector
(as noticed by Brian Ripley with protobuf 3.6)
2018-06-25 Jeroen Ooms <[email protected]>
* src/Makevars.win: update Windows build to protobuf v3.5.1 to
support upcoming gcc-8 toolchain.
2018-05-21 Siddhartha Bagaria <[email protected]>
* src/DescriptorPoolLookup.cpp: New reset() function
* src/DescriptorPoolLookup.h: Idem
* src/RSourceTree.cpp: New directory removal function
* src/RSourceTree.h: Idem
* src/init.c: Register new resetDescriptorPool_cpp functions
* src/rprotobuf.cpp: callable resetDescriptorPool_cpp() function
* man/readProtoFiles.Rd: Added documentation
* R/internals.R: Add R-callable resetDescriptorPool()
* NAMESPACE: Corresponding export
* inst/unitTests/data/cyclical/*: Unit test infrastructure
* inst/unitTests/data/recursive/*: Idem
* inst/unitTests/data/subdir/*: Idem
* inst/unitTests/data/unittest.proto: Added proto definition
* inst/unitTests/runit.import.R: New tests
2018-05-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* man/readProtoFiles.Rd: One minor correction, and some whitespace
and indentation cleanups
2018-04-18 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-paper.Rnw: Two updates for OpenCPU
2018-01-19 Siddhartha Bagaria <[email protected]>
* R/internals.R: New function readProtoFiles2 to use directory
argument along with pattern similar to protoc behavior; also
add recursive argument to readProtoFiles
* man/readProtoFiles.Rd: Documentation for readProtoFiles2
2017-11-20 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* inst/unitTests/runit.serialize_pb.R: Added unit test
2017-11-20 Jeffrey Shen <[email protected]>
* R/rexp_obj.R: Added test to avoid infinite recursion if sub
indexing list returns the list
2017-10-03 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.11
2017-10-02 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Minor edit to suppress another NOTE from R CMD check
* README.md: Idem
2017-10-01 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-intro.Rmd: Renamed, now uses Rmd via pinp
* vignettes/RProtoBuf-quickref.Rmd: Idem
* DESCRIPTION: Added pinp package, rolled minor version, use doi
in Description
* cleanup: Adjusted and updated
* .travis.yml (install): Add r-cran-pinp
2017-08-26 Dirk Eddelbuettel <[email protected]>
* .travis.yml (before_install): Use https for curl fetch
2017-08-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version
* src/S4_classes.h: Initialize S4 base class in copy constructor
for S4_ArrayOutputStream class
2017-08-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.10
* R/00classes.R: Correct one package= arg in .Call to PACKAGE as
requested by CRAN
* src/init.c: Corresponding change in Descriptor_getField registration
* inst/unitTests/runit.import.R (test.import): Test failing import on
package's own DESCRIPTION file rather than /etc/hosts
2017-08-01 Jeffrey Shen <[email protected]>
* R/rexp_obj.R: Check in deserializer if invalid class is set
2017-03-06 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.9
2017-03-05 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* src/init.c (R_init_RProtoBuf): Call R_registerRoutines()
and R_useDynamicSymbols()
* NAMESPACE: Use .registration=TRUE on useDynLib
* src/extensions.cpp (rprotobuf): Rename getExtension to
getExtension_cpp to disambiguate from R function
* src/rprotobuf.cpp (rprotobuf): Idem for readProtoFiles_cpp
* R/00classes.R (.icall): Comment-out unused function
(setMethod): Remove erroneous extra '...' from Message_clone arguments
* R/clone.R (._clone.message): Add missing PACKAGE= argument to .Call
* R/extensions.R: Idem
* R/has.R (._has_enum_name): Idem
* R/internals.R (readProtoFiles): Idem
* R/merge.R: Idem
* R/with.R (generateActiveBindings): Idem
* R/has.R (._has_enum_name): Use PACKAGE= in .Call()
2017-02-26 David Kretch <[email protected]>
* vignettes/RProtoBuf-intro.Rnw: Several small corrections
2017-01-19 Dirk Eddelbuettel <[email protected]>
* configure.ac: Renamed from configure.in, minor edit
2017-01-18 Dirk Eddelbuettel <[email protected]>
* configure.in: Updated and simplified in a few places as
we no longer need m4 macros for C++0x or Rscript for Rcpp library query
* configure: Re-generated accordingly
* src/Makevars.in: Set CXX_STD=CXX11
* m4/m4-ax_cxx_compile_stdcxx_0x.m4: Removed
* cleanup: remove autoconf cache
2017-01-17 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Relase 0.4.8
2017-01-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* tools/winlibs.R: Use proto3 library from rwinlib repo
* src/Makevars.win: Update to proto 3.0.0 paths
* inst/unitTests/runit.proto3.R: New test file
* inst/unitTests/data/proto3.proto: Support for new test file
2016-10-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.4.7
2016-10-24 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Roll minor version and date
* src/lookup.cpp: Replace omegahat.org with omagehat.net
* vignettes/RProtoBuf-paper.bib: Ditto
2016-09-09 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.6
* README.md: Expanded, added three short sections
2016-09-08 Dirk Eddelbuettel <[email protected]>
* inst/NEWS.Rd: Ditto, also replace \cpkg{} with \CRANpkg{}
* README.md: Use https for CRAN URL
2016-09-06 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-paper.Rnw: Comment-out the use of the \DOI
macro from (updated) jss.cls: cannot ship jss.cls (or R will warn)
and cannot use \DOI as (as R-release and older do not know \DOI)
2016-09-01 Dirk Eddelbuettel <[email protected]>
[ Entry for anonymous PR #18 by 'oliverbock' ]
* R/rexp_obj.R (unrexp_string): Ensure zero-length strings can be
serialized; special case of native encoding for S4 objects
* inst/unitTests/runit.serialize_pb.R: New tests
2016-08-29 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): New release 0.4.5
2016-08-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (SystemRequirements): Add explicit note that Protocol
Buffers 3.0.0 are supported as well
2016-08-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Rolling minor version
* inst/proto/addressbook.proto: Added 'syntax = "proto2";'
* inst/proto/helloworld.proto: Idem
* inst/proto/rexp.proto: Idem
* inst/unitTests/data/bytes.proto: Idem
* inst/unitTests/data/encoding.proto: Idem
* inst/unitTests/data/nested.proto: Idem
* inst/unitTests/data/unittest.proto: Idem
* inst/unitTests/data/unittest_import.proto: Idem
* vignettes/proto/int64.proto: Idem
* inst/unitTests/runit.addressbook.R (test.ascii): Comment-out one
sub-test concerned with access under bad file modes
2016-08-13 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Switch to using run.sh for Travis CI, also switch to
using a build matrix across ProtoBuf versions 2 and 3
2016-07-19 Craig Radcliffe <[email protected]>
* configure.in: Make sure that CXXFLAGS is from the environment
when writing to src/Makevars
2016-07-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Release 0.4.4
* vignettes/RProtoBuf-paper.Rnw: Added, based on pending JSS publication
* vignettes/RProtoBuf-paper.bib: Ditto
* vignettes/figures/*: Ditto
* vignettes/proto/*: Ditto
* vignettes/jss.cls: Ditto
* vignettes/jss.bst: Ditto
* inst/CITATION: Update to version provided by JSS
* README.md: Updated to use of canonical URLs for CRAN
2016-05-19 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-unitTests.Rnw: Do not write unit test results to
/tmp per request from CRAN to not write outside test directories
2016-04-26 Dirk Eddelbuettel <[email protected]>
* CONTRIBUTING.md: New workflow document
2016-04-25 Jeroen Ooms <[email protected]>
* R/rexp_obj.R: Fix zero-length edge case
* R/serialize_pb.R: Improved documentation
* man/serialize_pb.Rd: Ditto
2016-04-21 Jeroen Ooms <[email protected]>
* src/Makevars.win: Accomodate new Windows toolchain
2016-04-21 Jonathon Love <[email protected]>
* inst/unitTests/runit.addressbook.R: Set to mode 0644
* inst/unitTests/runit.bytes.R: Ditto
2016-02-11 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (License): Set to GPL (>= 2) which is what the code
files with actual copyright and license headers had all along
* README.md: Idem
2015-08-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Release 0.4.3
2015-08-24 Dirk Eddelbuettel <[email protected]>
* README.md: Additional badges
* inst/unitTests/runit.FieldDescriptor.R: Added msg field
2015-08-23 Dirk Eddelbuettel <[email protected]>
* tools/winlibs.R: Actually tests against R 3.3.0
2015-08-23 Jeroen Ooms <[email protected]>
* tools/winlibs.R: Test for R 3.3.0 on Windows
2015-08-23 Dirk Eddelbuettel <[email protected]>
* NAMESPACE: Added imports for as and is from methods
* DESCRIPTION: Removed several of the (largely redundant) URLs, and
minor edits in Description: to update to current standard
* man/RProtoBuf-package.Rd: Updated, removed old URLs.
* .travis.yml: Accelerate by installing dependencies via apt-get
2015-08-05 Balasubramanian Narasimhan <[email protected]>
* NAMESPACE: Added import for show from methods package
2015-07-08 Jeroen Ooms <[email protected]>
* tools/winlibs.R: Update URL to windows build of the required
ProtoBuf library
2015-01-16 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Minor edits
2015-01-16 Jeroen Ooms <[email protected]>
* DESCRIPTION: Make SystemRequirements: more explicit
2014-12-11 Jeroen Ooms <[email protected]>
* DESCRIPTION: Update URLs
2014-12-10 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Release 0.4.2
2014-12-10 Jeroen Ooms <[email protected]>
* src/Makevars.win: Use new ProtoBuf 2.6.1 builds on Windows
* tools/winlibs.R: Helper function used for Windows build
* inst/unitTests/runit.int64.R: Fixed a windows bug
2014-12-08 Jeroen Ooms <[email protected]>
* inst/proto/rexp.proto: Add a new type 'native'
* R/rexp_obj.R: Modify (un)serialize_pb to serialize() non-data types
as 'native' types
2014-12-04 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Added after move to GitHub
* README.md: Added minimal first version with Travis badge
2014-12-04 Murray Stokely <[email protected]>
* inst/unitTests/runit.int64.R: restore options on exit from this
function to make the test indempotent.
2014-12-01 Dirk Eddelbuettel <[email protected]>
* man/Message-class.Rd: Completed documentation
* man/Descriptor-class.Rd: Ditto
* man/EnumDescriptor-class.Rd: Ditto
2014-12-01 Murray Stokely <[email protected]>
* R/wrapper_ZeroCopyInputStream.R: Avoid file.create for getting
absolute path of a temporary file name (JSS reviewer feedback)
* R/serialize.R: Idem.
2014-11-26 Murray Stokely <[email protected]>
Address feedback from anonymous reviewer for JSS to make this
package more complete:
* inst/unitTests/runit.serialize_pb.R: Add a test to verify that
we can serialize all 100+ built-in datasets with R and get an
identical object to the original once unserialized.
* R/rexp_obj.R: Serialize function, language, and environment
objects by just falling back to R's native serialization and using
raw bytes to store them. This at least lets us round-trip encode
all native R types, even though these three only make sense in the
context of R. Greatly simplify the can_serialize_pb function.
* inst/proto/rexp.proto: Add support for function, language, and
environment objects.
2014-11-25 Dirk Eddelbuettel <[email protected]>
* vignettes/RProtoBuf-intro.Rnw: Applied a few corrections spotted by
Tim Hesterberg and communicated in email.
2014-11-24 Murray Stokely <[email protected]>
* inst/unitTests/runit.golden.message.R: remove trailing
whitespace.
* man/P.Rd: Improve output of example.
2014-09-15 Murray Stokely <[email protected]>
Address feedback from anonymous reviewers for our Journal of
Statistical Software submission:
* src/wrapper_EnumDescriptor.cpp (rprotobuf): Correct the
definition of as.list for EnumDescriptors to return a proper list
instead of a named vector.
* man/aslist.Rd: clarify order of returned list for descriptor
objects.
* NAMESPACE: add names as exported method.
* R/00classes.R (show): Update the default print methods to use
cat() with fill=TRUE instead of show() to eliminate the confusing
[1] since the classes in RProtoBuf are not vectorized.
* Make Descriptor and EnumDescriptor objects subsettable with
"[[".
* Add length() method for Descriptor objects.
* Add names() method for Message, Descriptor, and EnumDescriptor
objects.
* inst/unitTests/runit.enums.R (test.enums): Add test of
subsetting an EnumDescriptor object.
* inst/unitTests/runit.descriptors.R (test.descriptor): Add test
for subsetting of descriptor objects.
* DESCRIPTION (Version): Increment.
2014-04-02 Murray Stokely <[email protected]>
Two patches from Karl Millar <[email protected]>:
* src/S4_classes.h (rprotobuf): Change handling of
S4_EnumDescriptor when passed a NULL pointer to just create empty
object with empty name and full_name rather than setting to
R_NilValue.
* src/wrapper_EnumDescriptor.cpp (rprotobuf): Change return value
of getValue* functions on EnumDescriptor and return an
EnumValueDescriptor or R_NilValue on failure.
2014-04-01 Murray Stokely <[email protected]>
* tests/runUnitTests.R: Add improved checks to ensure R CMD CHECK
fails if there are any errors in the tests, not just failures.
2014-03-25 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version): Release 0.4.1
2014-03-24 Murray Stokely <[email protected]>
* inst/unitTests/runit.int64.R (test.int64): Check
Rcpp:::capabilities() to ensure we have long long support in Rcpp
before trying to run the 64-bit integer tests.
* inst/unitTests/data/unittest.proto: Comment out
TestEnumWithDupValue. This causes problems with the newest
libprotobuf-2.5 which now wants an option to be specified to
enable enum aliasing like this.
* configure.in: if we can't find the libproto headers with the
default CPPFLAGS/CXXFLAGS, manually add /usr/local/include and try
again.
2014-03-10 Murray Stokely <[email protected]>
* src/DescriptorPoolLookup.cpp (rprotobuf): Import all top-level
enums defined in an imported .proto file.
* src/rprotobuf.cpp (rprotobuf): Add a function to get the enum
descriptor associated with a named enum.
* inst/unitTests/runit.enums.R (test.enums): Test that we import
top-level enums from .proto files correctly.
* R/00classes.R (P): Correct a bug in the show() method for
EnumDescriptor that prevented useful output in some contexts.
2014-02-21 Murray Stokely <[email protected]>
* inst/unitTests/runit.messages.R (test.message): Add a test for
the deprecated group feature which works fine with RProtoBuf.
The type is converted to lower case, which users often forget.
* vignettes/RProtoBuf-intro.Rnw (subsection{Deprecated Feature:
Protocol Buffer Groups}): document groups.
* inst/CITATION: Add a manual CITATION file pointing to the preprint
on arxiv.org in addition to the normal auto-generated citation().
2014-01-19 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION: Finalize release 0.4.0 with initial Windows support
* src/S4_classes.h: Adapt to S4 access function renaming in Rcpp
0.10.7 and later, with special thanks to Kevin Ushey
2014-01-13 Murray Stokely <[email protected]>
* inst/unitTests/runit.int64.R (test.int64): Skip this test with a
warning if running on a machine with sizeof(long long) < 8.
* vignettes/RProtoBuf-intro.Rnw (subsection{64-bit integer
issues}): Hide 64-bit field accesses with if conditional to
avoid running code that won't work on platforms without 64-bit
long longs.
* DESCRIPTION (Version): Increment to 0.4.0
2014-01-09 Murray Stokely <[email protected]>
* R/read.R: Add a logical argument 'partial' to readASCII that
accepts uninitialized message fragments.
* src/wrapper_Descriptor.cpp (rprotobuf): Idem
* inst/unitTests/runit.addressbook.R (test.ascii): Add tests for above.
2014-01-04 Murray Stokely <[email protected]>
* R/wrapper_CodedInputStream.R: Accept numeric size arguments for
ReadRaw and ReadString to make this more user friendly for
interactive use by calling as.integer() as needed.
* R/00classes.R (P): Add missing object prameters in
ZeroCopyInputStream calls to ReadRaw and ReadString.
* inst/unitTests/data/encoding.proto: Add example messages used in
the encoding documentation.
* inst/unitTests/runit.serialize.R (test.encoding): Add tests
verifying the exact byte serialization as described in the
encoding documentation.
(test.arrayinputstream): Add new test of ArrayInputStreams.
* src/wrapper_ZeroCopyInputStream.cpp (rprotobuf): Add
BEGIN/END_RCPP macros to gracefully catch exceptions and return
them as R language errors.
* src/streams.cpp (rprotobuf): Idem.
* man/ArrayInputStream-class.Rd: Add some examples of using
ArrayInputStream.
2014-01-04 Dirk Eddelbuettel <[email protected]>
* src: Deprecate files SocketCopyingInputStream.{cpp,h}, sisocks.h as
the current RProtoBuf design does not provide networking capabilities
2013-12-31 Murray Stokely <[email protected]>
* src/wrapper_Message.cpp: Fix type coercion bug in add() method
for uint32s and add a missing break statement that erroneously
raised an error when setting some int64 fields. Make more
function arguments const and remove a superfluous
BEGIN_RCPP/END_RCPP. Also add comment about long-vector
support. All of these fixes were highlighted by Flexelint.
* inst/unitTests/runit.int64.R (test.int64): Add tests for above.
* inst/unitTests/runit.extremevalues.R (test.uint32): Idem.
* src/wrapper_FieldDescriptor.cpp (RPB_HANDLE_CASE): Remove
unreachable statement in a macro.
* src/wrapper_Descriptor.cpp (rprotobuf): Remove unused variable,
rename another variable for clarity, and add some TODOs.
* src/wrapper_FileDescriptor.cpp (rprotobuf): Idem.
* src/DescriptorPoolLookup.cpp (rprotobuf): Remove unreachable
statement.
* src/extensions.cpp: Remove unused header.
* src/mutators.cpp (rprotobuf): Update code to check for Long
vectors and use the safer R_xlen_t type everywhere. Protocol
Buffers repeated fields seem to be limited to int size indices
as with normal R vectors.
* src/rprotobuf.h: Idem
2013-12-30 Murray Stokely <[email protected]>
* inst/unitTests/runit.extremevalues.R (test.uint32): Add test
verifying that we can store 2^32 - 1 properly in repeated or
optional protobuf fields.
* src/extractors.cpp (rprotobuf): Correct handling of uint32 for
repeated fields.
* src/wrapper_Message.cpp (rprotobuf): Remove Rf_error in favor of
Rcpp_error so that we throw an exception and unwind the stack to
deallocate objects before jumping to R's error.
* src/DescriptorPoolLookup.cpp (rprotobuf): Idem.
* R/size.R: Correct an incorrect method name that prevented size<-
from working.
* man/size.Rd: Document the behavior of size<-
* (C++): Ran all the C++ files and most of the headers through
clang-format as described in the STYLE file on R-Forge.
Basically, we now use 4-char indents and 100-char limit for line
wrap.
2013-12-28 Murray Stokely <[email protected]>
* src/extractors.cpp (rprotobuf): Correct handling of uint32 for
single values greater than 2^31 by returning as R numeric types
to avoid losing precision since R doesn't have unsigned int
types but C++ does. Works around an Rcpp bug