forked from mongodb/mongo-php-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE-1.0
901 lines (602 loc) · 28 KB
/
RELEASE-1.0
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
RELEASE 1.0.0
-------------
2015-10-30 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0
2015-10-30 Jeremy Mikola <[email protected]>
* PHPC-475: toJSON and fromJSON should thrown on error
2015-10-28 Jeremy Mikola <[email protected]>
* Tests for fromJSON() and toJSON()
2015-10-26 Jeremy Mikola <[email protected]>
* Back to -dev
2015-10-26 Jeremy Mikola <[email protected]>
* Add 1.0.0RC0 release notes
RELEASE 1.0.0RC0
-------------
2015-10-26 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0RC0
2015-10-26 Jeremy Mikola <[email protected]>
* Revise system libbson version check error message
2015-10-23 Jeremy Mikola <[email protected]>
* Update GitHub URLs for org change and repo rename
2015-10-21 Jeremy Mikola <[email protected]>
* PHPC-465: Remove WriteConcernException and WriteErrorException
2015-10-21 Jeremy Mikola <[email protected]>
* Rename WriteConcernError tests
2015-10-21 Jeremy Mikola <[email protected]>
* PHPC-465: Remove Manager's single write methods
2015-10-20 Jeremy Mikola <[email protected]>
* PHPC-440: WriteErrorException extends abstract WriteException
2015-10-20 Jeremy Mikola <[email protected]>
* PHPC-462: Remove unused DuplicateKeyException
2015-10-19 Jeremy Mikola <[email protected]>
* PHPC-310: Make BSON types final and disable serialization for now
2015-10-19 Jeremy Mikola <[email protected]>
* Make BSON create_object assignments consistent
2015-10-16 Jeremy Mikola <[email protected]>
* PHPC-310: Exception classes need not be final
2015-10-15 Jeremy Mikola <[email protected]>
* PHPC-444: Support options array in BulkWrite and executeInsert()
2015-10-15 Jeremy Mikola <[email protected]>
* Fix indentation
2015-10-14 Jeremy Mikola <[email protected]>
* PHPC-407: Rename X509 error test and fix cert path
2015-10-14 Jeremy Mikola <[email protected]>
* Rename X509 connection tests
2015-10-14 Jeremy Mikola <[email protected]>
* PHPC-454: Remove WriteResult::getInfo() method
2015-10-14 Jeremy Mikola <[email protected]>
* PHPC-441: slaveOk bit is now set on hinted secondary query
2015-10-14 Jeremy Mikola <[email protected]>
* Bump libbson and libmongoc submodules to 1.2.0
2015-10-07 Hannes Magnusson <[email protected]>
* PHPC-256: Productions debug logs
2015-10-07 Hannes Magnusson <[email protected]>
* PHPC-441: Skip (xfail) these tests while the ticket is being worked on
2015-10-07 Hannes Magnusson <[email protected]>
* Make sure we have the X509 declaration we need
2015-10-07 Hannes Magnusson <[email protected]>
* No need for TSRMLS here -- no calls to PHP at all
2015-10-06 Jeremy Mikola <[email protected]>
* Back to -dev
2015-10-06 Jeremy Mikola <[email protected]>
* Update install examples to mongodb-beta
2015-10-06 Jeremy Mikola <[email protected]>
* Add 1.0.0beta2 release notes
RELEASE 1.0.0beta2
-------------
2015-10-06 Jeremy Mikola <[email protected]>
* Avoid nested macros when reporting runtime version in debug mode
2015-10-05 Jeremy Mikola <[email protected]>
* Omit merge commits from release changelog
2015-10-05 Jeremy Mikola <[email protected]>
* Use UTC time when creating package.xml
2015-10-05 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0beta2
2015-10-05 Remi Collet <[email protected]>
* PHPC-442: report PHP version in debug info
2015-10-05 Remi Collet <[email protected]>
* report runtime version in debug mode
2015-10-05 Remi Collet <[email protected]>
* rename macros
2015-10-04 Remi Collet <[email protected]>
* report libraries runtime versions
2015-10-05 Jeremy Mikola <[email protected]>
* Test write and WC error extraction for single write methods
2015-10-02 Jeremy Mikola <[email protected]>
* PHPC-409: $readPreference is no longer sent to non-mongos nodes
2015-10-02 Jeremy Mikola <[email protected]>
* Update filenames for libmongoc and libbson version functions
2015-10-02 Jeremy Mikola <[email protected]>
* PHPC-438: Debug handler should display null for no WC error
2015-10-02 Jeremy Mikola <[email protected]>
* PHPC-436: Handle new writeConcernErrors array in mongoc_write_result_t
2015-10-02 Jeremy Mikola <[email protected]>
* Bump libbson and libmongoc submodules to 1.2.0-rc0
2015-09-11 Hannes Magnusson <[email protected]>
* PHPC-415: Add testcase
2015-09-11 Hannes Magnusson <[email protected]>
* PHPC-415: SSL/TLS already set-up for this stream
2015-09-09 Hannes Magnusson <[email protected]>
* $readPreferences should not be sent to standalone server
2015-09-09 Hannes Magnusson <[email protected]>
* Don't provide server_id when we have none
2015-10-01 Jeremy Mikola <[email protected]>
* Use versioned URI for mongo-orchestration
2015-10-01 Jeremy Mikola <[email protected]>
* Increase mongo-orchestration HTTP timeout
2015-08-20 Jeremy Mikola <[email protected]>
* Empty query results should still pass "find" phase in mo-tests
2015-08-20 Jeremy Mikola <[email protected]>
* Implement "clientHosts" phase for mo-tests
2015-08-19 Jeremy Mikola <[email protected]>
* Support "delete" operation in mo-tests
2015-08-19 Jeremy Mikola <[email protected]>
* Rename "findOne" to "find" in mo-tests
2015-08-19 Jeremy Mikola <[email protected]>
* Fix exception throwing in mo-tests conversion script
2015-09-24 Jeremy Mikola <[email protected]>
* PHPC-393: Ignore non-public properties when encoding BSON
2015-09-24 Jeremy Mikola <[email protected]>
* Previous break statement makes the else condition redundant
2015-09-23 Jeremy Mikola <[email protected]>
* PHPC-430, PHPC-377: Do not convert Query filter arg to an object
2015-08-27 Hannes Magnusson <[email protected]>
* PHPC-377: Eliminate object casting and whole lot of zend hash helpers
2015-08-25 Hannes Magnusson <[email protected]>
* PHPC-373: Get rid of MAKE_STD_ZVAL() and use bson_t instead
2015-09-23 Jeremy Mikola <[email protected]>
* PHPC-430: Regression tests for Query arg corruption
2015-09-23 Jeremy Mikola <[email protected]>
* PHP versions in .travis.yml don't need to be strings
2015-08-27 Hannes Magnusson <[email protected]>
* PHPC-379: I broke PHP5.3 build. Thats OK, since we don't support it.
2015-09-23 Jeremy Mikola <[email protected]>
* PHPC-427: Fix parsing of null WC journal param for PHP 5.4
2015-09-22 Jeremy Mikola <[email protected]>
* PHPC-428: Remove support for WriteConcern fsync option
2015-09-22 Jeremy Mikola <[email protected]>
* Update arg info for WriteConcern $w ctor parameter
2015-09-21 Jeremy Mikola <[email protected]>
* PHPC-427: Do not set WC journal/fsync to false for NULL args
2015-09-18 Jeremy Mikola <[email protected]>
* Additional tests for WriteConcern debug handler
2015-09-18 Jeremy Mikola <[email protected]>
* PHPC-423: WriteConcern should report default "w" option as null
2015-09-17 Jeremy Mikola <[email protected]>
* PHPC-426: WC ctor should throw for invalid $w and $wtimeout args
2015-09-17 Jeremy Mikola <[email protected]>
* PHPC-425: WC ctor should accept int/string $w args w/o casting
2015-09-17 Jeremy Mikola <[email protected]>
* WriteConcern ctor error test doesn't need EXPECTF
2015-09-17 Jeremy Mikola <[email protected]>
* Use throws() helper function in WriteConcern ctor error test
2015-09-18 Derick Rethans <[email protected]>
* Skip logging tests for HHVM, which will use its own method
2015-09-10 Derick Rethans <[email protected]>
* Better messages for when things go wrong with exceptions
2015-09-10 Derick Rethans <[email protected]>
* PHPC-412: HHVM does not do SSL peer verification like PHP
2015-09-18 Jeremy Mikola <[email protected]>
* PHPC-410: Make BSON exception message consistent with HHVM
2015-09-17 Jeremy Mikola <[email protected]>
* Split out UTCDateTime toDateTime and toString tests
2015-09-15 Jeremy Mikola <[email protected]>
* PHPC-410: zval_to_bson() should throw on non-Serializable Type objects
2015-09-15 Jeremy Mikola <[email protected]>
* PHPC-410: object_to_bson() should throw on unsupported BSON\Type objects
2015-09-09 Jeremy Mikola <[email protected]>
* PHPC-410: object_to_bson() should encode non-stdClass objects
2015-09-09 Jeremy Mikola <[email protected]>
* Revise debug messages in object_to_bson()
2015-09-16 Jeremy Mikola <[email protected]>
* PHPC-418: Getters for WriteConcern properties
2015-09-16 Jeremy Mikola <[email protected]>
* Rename WriteConcern tests
2015-09-16 Jeremy Mikola <[email protected]>
* Move PHONGO_WRITE_CONCERN_W_MAJORITY definition to php_phongo.h
2015-09-15 Jeremy Mikola <[email protected]>
* Revise ReadPreference constructor error messages
2015-09-15 Jeremy Mikola <[email protected]>
* Rename first ReadPreference constructor arg to "mode"
2015-09-15 Jeremy Mikola <[email protected]>
* PHPC-418: Getters for ReadPreference properties
2015-09-15 Jeremy Mikola <[email protected]>
* Use valid tag sets in ReadPreference tests
2015-09-15 Jeremy Mikola <[email protected]>
* Rename ReadPreference tests and split constructor error test
2015-09-15 Jeremy Mikola <[email protected]>
* PHPC-417: Return value objects from Manager RP/WC getters
2015-09-15 Jeremy Mikola <[email protected]>
* Declare phongo_cursor_init() statically
2015-09-09 Jeremy Mikola <[email protected]>
* PHPC-408: Ensure object_to_bson() always creates a BSON document
2015-09-09 Jeremy Mikola <[email protected]>
* Refactor bson-utcdatetime-001.phpt
2015-09-10 Jeremy Mikola <[email protected]>
* Back to -dev
2015-09-10 Jeremy Mikola <[email protected]>
* Add 1.0.0beta1 release notes
RELEASE 1.0.0beta1
-------------
2015-09-10 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0beta1
2015-09-09 Jeremy Mikola <[email protected]>
* Merge pull request #98
2015-09-09 Jeremy Mikola <[email protected]>
* PHPC-381: Print whether profile commands were successful
2015-09-02 Jeremy Mikola <[email protected]>
* PHPC-381: Server::executeQuery/Command() should take a read preference
2015-09-04 Jeremy Mikola <[email protected]>
* Include unknown error domain in log messages
2015-09-02 Jeremy Mikola <[email protected]>
* Fall back to driver's RuntimeException instead of SPL
2015-09-04 Hannes Magnusson <[email protected]>
* Merge pull request #100 from bjori/master
2015-09-04 Hannes Magnusson <[email protected]>
* s/10gen-labs/mongodb-labs/g after org changes
2015-09-03 Hannes Magnusson <[email protected]>
* Merge pull request #99 from bjori/master
2015-08-20 Hannes Magnusson <[email protected]>
* Bump libmongoc to 1.2-beta1
2015-09-02 Derick Rethans <[email protected]>
* Merged pull request #95
2015-09-02 Derick Rethans <[email protected]>
* Disable the test for a double wrap with IteratorIterator()
2015-09-02 Derick Rethans <[email protected]>
* Disable test that dumps hex codes for generated BSON
2015-09-02 Derick Rethans <[email protected]>
* Merged pull request #96
2015-09-02 Derick Rethans <[email protected]>
* Fixed getServers test to include milliseconds in UTCDate dumps
2015-09-02 Jeremy Mikola <[email protected]>
* Merge pull request #92
2015-08-30 Jeremy Mikola <[email protected]>
* Clean up BSON error tests
2015-09-01 Jeremy Mikola <[email protected]>
* Merge pull request #80
2015-08-14 Jeremy Mikola <[email protected]>
* PHPC-361: Manager::getServers() should omit unknown servers
2015-09-01 Derick Rethans <[email protected]>
* Merged pull request #91
2015-08-28 Derick Rethans <[email protected]>
* HHVM encodes __pclass last, so disable these tests here.
2015-08-26 Derick Rethans <[email protected]>
* phpinfo() behaves totally different in HHVM
2015-08-28 Derick Rethans <[email protected]>
* Merged pull request #89
2015-08-27 Derick Rethans <[email protected]>
* HHVM does not allow for current() on an object
2015-08-27 Derick Rethans <[email protected]>
* Split tests for invalid arguments out into their own files, and ignore them for HHVM
2015-08-28 Jeremy Mikola <[email protected]>
* Merge pull request #88
2015-08-26 Jeremy Mikola <[email protected]>
* PHPC-337: BSON\Javascript debug handler
2015-08-26 Jeremy Mikola <[email protected]>
* PHPC-339: BSON\Timestamp debug handler
2015-08-26 Jeremy Mikola <[email protected]>
* PHPC-340: BSON\UTCDateTime debug handler
2015-08-26 Jeremy Mikola <[email protected]>
* PHPC-338: BSON\Regex debug handler
2015-08-26 Jeremy Mikola <[email protected]>
* Fix test expectation for builds with top-level BSON namespace
2015-08-21 Jeremy Mikola <[email protected]>
* Merge pull request #85
2015-08-21 Hannes Magnusson <[email protected]>
* Don't be printing out these commands during execution
2015-08-21 Hannes Magnusson <[email protected]>
* Back to -dev
2015-08-21 Hannes Magnusson <[email protected]>
* PHPC-366: Update release script to use RELEASE-x.y file
2015-08-21 Hannes Magnusson <[email protected]>
* PHPC-366: Merge 1.0.x release notes into RELEASE-1.0
2015-08-21 Hannes Magnusson <[email protected]>
* PHPC-366: Merge RELEASE-0.* release notes into RELEASE-0
2015-08-20 Jeremy Mikola <[email protected]>
* Add 1.0.0alpha2 release notes
RELEASE 1.0.0alpha2
--------------
2015-08-20 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0alpha2
2015-08-20 Jeremy Mikola <[email protected]>
* Merge pull request #84
2015-08-20 Jeremy Mikola <[email protected]>
* PHPC-365: Add src/contrib to Windows build includes
2015-08-20 Jeremy Mikola <[email protected]>
* Merge pull request #81
RELEASE 1.0.0alpha1
--------------
2015-08-18 Jeremy Mikola <[email protected]>
* Bump extension version to 1.0.0alpha1
2015-08-18 Jeremy Mikola <[email protected]>
* Bump minimum PHP version requirement to 5.4
2015-08-18 Jeremy Mikola <[email protected]>
* Use php.net email addresses for authors
2015-08-20 Hannes Magnusson <[email protected]>
* Link to the HHVM project
2015-08-20 Hannes Magnusson <[email protected]>
* Test running belongs to CONTRIBUTING.md
2015-08-20 Hannes Magnusson <[email protected]>
* Add docs for the new PHONGO_SERVERS environment variable
2015-08-20 Hannes Magnusson <[email protected]>
* We don't tail master
2015-08-20 Hannes Magnusson <[email protected]>
* Merge pull request #82 from derickr/test-name-and-servers
2015-08-20 Derick Rethans <[email protected]>
* Do this with an env var instead
2015-08-19 Jeremy Mikola <[email protected]>
* Fix str_replace() newline replacement
2015-08-19 Derick Rethans <[email protected]>
* Allow for PHONGO-SERVERS.json in ~ (and fix a test case name)
2015-08-14 Jeremy Mikola <[email protected]>
* Merge pull request #76
2015-08-14 Jeremy Mikola <[email protected]>
* Strip newlines from exception messages for more concise failures
2015-08-05 Derick Rethans <[email protected]>
* Added the error message to the failure cases.
2015-08-14 Jeremy Mikola <[email protected]>
* Merge pull request #70
2015-08-14 Jeremy Mikola <[email protected]>
* Add mongoc-host-list.c to config sources
2015-08-14 Jeremy Mikola <[email protected]>
* Fix indentation in config.m4 sources
2015-08-14 Jeremy Mikola <[email protected]>
* Bump libmongoc submodule to 1.2.0-beta
2015-07-30 Jeremy Mikola <[email protected]>
* Restore -Werror compile flag for 5.4+ developer builds
2015-08-14 Jeremy Mikola <[email protected]>
* Merge pull request #78
2015-08-07 Jeremy Mikola <[email protected]>
* PHPC-271: Server::executeBulkWrite() should take a write concern
2015-08-13 Jeremy Mikola <[email protected]>
* Merge pull request #77
2015-08-05 Jeremy Mikola <[email protected]>
* Split out Manager constructor error tests
2015-08-05 Jeremy Mikola <[email protected]>
* Manager should check client pointer before destroying it
2015-08-03 Jeremy Mikola <[email protected]>
* PHPC-196: Implement Manager getters for WC and RP
2015-08-05 Jeremy Mikola <[email protected]>
* PHPC-353: Return early when there are no options to apply
2015-08-05 Jeremy Mikola <[email protected]>
* PHPC-353: Support RP and WC in Manager options array
2015-08-05 Jeremy Mikola <[email protected]>
* Manager constructor should check if URI or client creation fails
2015-07-31 Jeremy Mikola <[email protected]>
* Fix memory leak in _phongo_debug_bson()
2015-08-13 Jeremy Mikola <[email protected]>
* Merge pull request #79
2015-08-13 Jeremy Mikola <[email protected]>
* Trim #includes, since src/contrib is already an include path
2015-08-05 Jeremy Mikola <[email protected]>
* Merge pull request #75
2015-08-05 Jeremy Mikola <[email protected]>
* PHPC-357: Revise test and relocate to standalone group
2015-08-04 Derick Rethans <[email protected]>
* PHPC-357: "invalid namespace" exception should report the namespace
2015-08-05 Jeremy Mikola <[email protected]>
* Merge pull request #74
2015-08-04 Derick Rethans <[email protected]>
* PHPC-129: Split out WriteConcern constructor error test
2015-08-04 Derick Rethans <[email protected]>
* Merged pull request #73
2015-08-03 Derick Rethans <[email protected]>
* Rename BSON\Binary's subType field and getSubType() method to type and getType()
2015-08-04 Derick Rethans <[email protected]>
* Merged pull request #72
2015-07-31 Derick Rethans <[email protected]>
* Temporary fix for the NULL vs null issue
2015-08-03 Hannes Magnusson <[email protected]>
* Make the relative path work
2015-08-03 Hannes Magnusson <[email protected]>
* Skip test when not using the test vms
2015-07-30 Jeremy Mikola <[email protected]>
* Merge pull request #69
2015-07-30 Jeremy Mikola <[email protected]>
* PHPC-350: Bump libmongoc submodule for updated headers
2015-07-30 Jeremy Mikola <[email protected]>
* Merge pull request #68
2015-07-30 Jeremy Mikola <[email protected]>
* bson_to_zval() should always initialize state->zchild
2015-07-29 Jeremy Mikola <[email protected]>
* Update extension filename in Travis scripts
2015-07-29 Jeremy Mikola <[email protected]>
* PHPC-347: bson_to_zval() leaks when buffer contains no documents
2015-07-29 Jeremy Mikola <[email protected]>
* PHPC-345: bson_to_zval() should throw exceptions instead of warnings
2015-07-29 Jeremy Mikola <[email protected]>
* Merge pull request #67
2015-07-28 Jeremy Mikola <[email protected]>
* PHPC-334: Split hex_dump() test case
2015-07-29 Jeremy Mikola <[email protected]>
* Merge pull request #64
2015-07-27 Jeremy Mikola <[email protected]>
* PHP 5.3 compatibility for tools.php
2015-07-27 Jeremy Mikola <[email protected]>
* Define str_efree() macro for PHP 5.3 compatibility
2015-07-27 Jeremy Mikola <[email protected]>
* Compile with no-cast-qual for PHP 5.3
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-344: Allow non-root Serializable to encode as BSON array
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-343: Allow bsonSerialize() to return a stdClass
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-331: Tests for BSON deserialization errors
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-329: bson_to_zval() serialization spec compatibility
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-329: __pclass must be both instantiatable and Persistable
2015-07-27 Jeremy Mikola <[email protected]>
* PHPC-329: Apply more validation to type map class
2015-07-24 Jeremy Mikola <[email protected]>
* PHPC-336: BSON\Binary debug handler
2015-07-28 Jeremy Mikola <[email protected]>
* Merge pull request #66
2015-07-28 Derick Rethans <[email protected]>
* Assert what the tests want, and not more
2015-07-28 Derick Rethans <[email protected]>
* HHVM does not include the function name, and has two lines of extra stack trace
2015-07-24 Jeremy Mikola <[email protected]>
* Merge pull request #63
2015-07-24 Jeremy Mikola <[email protected]>
* PHPC-341: Ensure bson_t is freed after decoding JSON
2015-07-22 Jeremy Mikola <[email protected]>
* Merge pull request #62
2015-07-22 Jeremy Mikola <[email protected]>
* PHPC-333: Implement MongoDB\BSON\Binary::getData()
2015-07-22 Jeremy Mikola <[email protected]>
* Fix proto for Binary::getSubType()
2015-07-22 Jeremy Mikola <[email protected]>
* Merge pull request #59
2015-07-15 Hannes Magnusson <[email protected]>
* bump debug tests after slight tracing changes
2015-07-15 Hannes Magnusson <[email protected]>
* PHPC-229: Support options array in second parameter of Manager ctor
2015-07-22 Jeremy Mikola <[email protected]>
* Merge pull request #61
2015-07-21 Jeremy Mikola <[email protected]>
* PHPC-334: Don't produce BSON with multiple __pclass fields
2015-07-21 Jeremy Mikola <[email protected]>
* Merge pull request #60
2015-07-21 Jeremy Mikola <[email protected]>
* Don't build with -Werror until CDRIVER-757 is resolved
2015-07-20 Jeremy Mikola <[email protected]>
* PHPC-330: Always include __pclass property when unserializing BSON
2015-07-15 Hannes Magnusson <[email protected]>
* Add -Werror into --enable-developer-flags
2015-07-15 Hannes Magnusson <[email protected]>
* Move the php_array to contrib/ and rename to _api
2015-07-14 Hannes Magnusson <[email protected]>
* We are tracking 1.2.0-dev, not master!
2015-07-15 Jeremy Mikola <[email protected]>
* Merge pull request #56
2015-07-11 Jeremy Mikola <[email protected]>
* Use namespace-agnostic BSON (de)serialization functions
2015-07-11 Jeremy Mikola <[email protected]>
* Fix from/toJSON() protos
2015-07-11 Jeremy Mikola <[email protected]>
* PHPC-311: Rename from/toArray() functions to from/toPHP()
2015-07-10 Jeremy Mikola <[email protected]>
* PHPC-315: Support "root" type mapping for top-level documents
2015-07-06 Jeremy Mikola <[email protected]>
* PHPC-319: Convert top-level documents to stdClass by default
2015-07-07 Jeremy Mikola <[email protected]>
* Relax expected class instance in Manager: getServers() test
2015-07-07 Jeremy Mikola <[email protected]>
* Use plural property name to store list of Address objects
2015-07-07 Jeremy Mikola <[email protected]>
* Fix WriteResult::getWriteConcernError() proto
2015-07-08 Hannes Magnusson <[email protected]>
* Force 'E' to be present in php.ini so environment variables are picked up
2015-07-07 Hannes Magnusson <[email protected]>
* The MongoDB 3.0 repo was moved.
2015-07-07 Hannes Magnusson <[email protected]>
* Don't start/stop servers on travis. We don't use MO here yet
2015-07-07 Hannes Magnusson <[email protected]>
* PHPC-304: Enable the test again -- and fix typo in the clean section!
2015-07-07 Hannes Magnusson <[email protected]>
* Add the START() servers to PHONGO-SERVERS, and remove it with DELETE()
2015-07-07 Hannes Magnusson <[email protected]>
* PHPC-303: Cannot connect to healthy Replica Set if seedlist only contains a secondary
2015-07-07 Jeremy Mikola <[email protected]>
* Merge pull request #57
2015-07-06 Jeremy Mikola <[email protected]>
* PHPC-325: bson_to_zval() leaks when buffer contains multiple documents
2015-07-06 Jeremy Mikola <[email protected]>
* Merge pull request #55
2015-06-17 Jeremy Mikola <[email protected]>
* PHPC-306: Check for sasl_client_done in config.m4
2015-07-01 Jeremy Mikola <[email protected]>
* Update expected float output after libbson bump
2015-07-01 Jeremy Mikola <[email protected]>
* Bump libbson and libmongoc submodules
2015-07-06 Jeremy Mikola <[email protected]>
* Merge pull request #51
2015-07-06 Jeremy Mikola <[email protected]>
* Remove redundant array conversions in phongo_query_init()
2015-07-06 Jeremy Mikola <[email protected]>
* PHPC-317: Ensure "sort" query option serializes as BSON object
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-323: The check for system mongoc checks system bson, not mongoc
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-322: Wrong bugtracker URL in configure output
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-321: UTCDatetime -> UTCDateTime
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-321: UTCDatetime -> UTCDateTime
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-309: Bump tests
2015-06-30 Hannes Magnusson <[email protected]>
* PHPC-309: Move the BSON namespace under MongoDB\ namespace
2015-06-30 Jeremy Mikola <[email protected]>
* Merge pull request #50 from 10gen-labs/jmikola-patch-1
2015-06-29 Jeremy Mikola <[email protected]>
* Merge pull request #49
2015-06-21 Jeremy Mikola <[email protected]>
* LDAP VM does not require python-pip (or epel)
2015-06-29 Jeremy Mikola <[email protected]>
* Merge pull request #53
2015-06-29 Jeremy Mikola <[email protected]>
* PHPC-308: Skip getmore test until libmongoc issues are resolved
2015-06-21 Jeremy Mikola <[email protected]>
* Update install docs, since we now have a PECL package
2015-06-09 Hannes Magnusson <[email protected]>
* bump submodule, hopfully fixing build
2015-06-09 Hannes Magnusson <[email protected]>
* Fix build after some SDAM changes
2015-06-09 Hannes Magnusson <[email protected]>
* install mongo-c-driver required building blocks
2015-06-09 Hannes Magnusson <[email protected]>
* PHPC-308: Failed getmore should throw exception
2015-05-22 Hannes Magnusson <[email protected]>
* There is no need for these tests to be this slow -- safes 2seconds now
2015-05-22 Hannes Magnusson <[email protected]>
* Cluster tests are slow
2015-05-20 Hannes Magnusson <[email protected]>
* Fix test -- this isn't a hardcoded ID
2015-05-20 Hannes Magnusson <[email protected]>
* Move MO host resolving to tools
2015-05-20 Hannes Magnusson <[email protected]>
* PHPC-304: Add a failGetMore trigger
2015-05-20 Hannes Magnusson <[email protected]>
* PHPC-291: New cluster/socket/connection tests
2015-05-20 Hannes Magnusson <[email protected]>
* PHPC-291: Add a script to convert mo-tests (JSON) to PHPT
2015-05-20 Hannes Magnusson <[email protected]>
* These are no longer used
2015-05-18 Hannes Magnusson <[email protected]>
* Organize cursor tests
2015-05-20 Hannes Magnusson <[email protected]>
* Merge pull request #46 from remicollet/issue-driver
2015-05-20 Remi Collet <[email protected]>
* PHPC-305: add --with-libmongo option
2015-05-18 Hannes Magnusson <[email protected]>
* Add a helper to know if we are in predictable (vagrant) env or not
2015-05-18 Hannes Magnusson <[email protected]>
* Fix server IDs
2015-05-13 Hannes Magnusson <[email protected]>
* Improve code coverage for the WriteException
2015-05-13 Hannes Magnusson <[email protected]>
* Add test for the info/ini section
2015-05-13 Hannes Magnusson <[email protected]>
* Improve code covergae
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-75: Improve debug output coverage
2015-05-13 Hannes Magnusson <[email protected]>
* Use the defines
2015-05-13 Hannes Magnusson <[email protected]>
* fix test after moving it around
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-75: Improve coverage
2015-05-13 Hannes Magnusson <[email protected]>
* improve code coverage
2015-05-13 Hannes Magnusson <[email protected]>
* Improve test organization
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-75: Server error code coverage
2015-05-13 Hannes Magnusson <[email protected]>
* Fix test on travis
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-301: var_dump()ing Manager should show debug info
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-300: Add var_dump() debug info for Server
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-75: Improve coverage for the Manager
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-277: Ensure Query always serializes $query as a BSON object
2015-05-13 Hannes Magnusson <[email protected]>
* Split the test into success/failure
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-299: Annoying compiler warning
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-298: Coalesce small writes
2015-05-13 Hannes Magnusson <[email protected]>
* PHPC-284: Fix LogicException declaration
2015-05-12 Hannes Magnusson <[email protected]>
* bump submodules
2015-05-12 Hannes Magnusson <[email protected]>
* PHPC-279: Add 2.4 (and 2.6) to build matrix and ensure test suite compatibility
2015-05-06 Hannes Magnusson <[email protected]>
* PHPC-296: phongo.debug created for empty values
2015-05-06 Hannes Magnusson <[email protected]>
* Bump version