forked from mongodb/mongo-php-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE-0
2647 lines (1766 loc) · 80.5 KB
/
RELEASE-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
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
RELEASE 0.6.3
--------------
2015-05-06 Hannes Magnusson <[email protected]>
* prep for 0.6.3
2015-05-06 Hannes Magnusson <[email protected]>
* PHPC-294: Fix path to build directory
2015-05-06 Jeremy Mikola <[email protected]>
* back to -dev
2015-05-06 Jeremy Mikola <[email protected]>
* Add 0.6.2 release notes
RELEASE 0.6.2
--------------
2015-05-06 Jeremy Mikola <[email protected]>
* Bump stability
2015-05-06 Jeremy Mikola <[email protected]>
* back to -dev
2015-05-06 Jeremy Mikola <[email protected]>
* Add 0.6.1 release notes
RELEASE 0.6.1
--------------
2015-05-06 Jeremy Mikola <[email protected]>
* Bump stability
2015-05-05 Hannes Magnusson <[email protected]>
* Fix build outside of srcdir
2015-05-04 Hannes Magnusson <[email protected]>
* back to -dev
2015-05-04 Hannes Magnusson <[email protected]>
* Add 0.6.0 release notes
RELEASE 0.6.0
--------------
2015-05-04 Hannes Magnusson <[email protected]>
* Bump stability
2015-05-04 Hannes Magnusson <[email protected]>
* Exceptions live in their own folder now
2015-05-04 Hannes Magnusson <[email protected]>
* Add coveralls badger
2015-05-04 Hannes Magnusson <[email protected]>
* Use the coveralls token for 10gen-labs/mongo-php-driver-prototype not my personal one
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #45 from jmikola/multiple-toArray
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-282: Test for multiple Cursor::toArray() calls
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #44 from jmikola/phpc-255
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-255: Cursors cannot rewind after starting iteration
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-282: Remove tests for multiple iterators on the same Cursor
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-282: Cursor should not yield multiple iterators
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-284: Create MongoDB\Driver\Exception\LogicException class
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #43 from jmikola/phpc-283
2015-05-04 Jeremy Mikola <[email protected]>
* Use common return for zval_to_bson() bsonSerialize() error path
2015-05-04 Jeremy Mikola <[email protected]>
* PHPC-283: UnexpectedValueException for invalid bsonSerialize() return value
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #42 from jmikola/phpc-179
2015-05-01 Jeremy Mikola <[email protected]>
* PHPC-280: WriteConcern should always set journal/fsync boolean args
2015-05-01 Jeremy Mikola <[email protected]>
* Document WriteConcern $w param as integer|string
2015-05-01 Jeremy Mikola <[email protected]>
* PHPC-179: Show unset journal/fsync as null in WriteConcern debug handler
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #40 from jmikola/phpc-274
2015-04-26 Jeremy Mikola <[email protected]>
* PHPC-274: Regression test for root BSON\Serializable encoding
2015-04-26 Jeremy Mikola <[email protected]>
* PHPC-275: object_to_bson() handling for invalid bsonSerialize() retval
2015-04-24 Jeremy Mikola <[email protected]>
* PHPC-274: Fix zval_to_bson() encoding of BSON\Serializable objects
2015-05-04 Jeremy Mikola <[email protected]>
* Merge pull request #41 from jmikola/phpc-278
2015-04-30 Jeremy Mikola <[email protected]>
* PHPC-278: nModified may be null for legacy writes
2015-04-27 Hannes Magnusson <[email protected]>
* PHPC-269: Travis mojo again
2015-04-24 Hannes Magnusson <[email protected]>
* PHPC-272: Move exceptions into MongoDB\Driver\Exception namespace
2015-04-24 Hannes Magnusson <[email protected]>
* Post-release-bump-version
2015-04-24 Hannes Magnusson <[email protected]>
* Add 0.5.1 release notes
RELEASE 0.5.1
--------------
2015-04-24 Hannes Magnusson <[email protected]>
* Bump version to 0.5.1-alpha
2015-04-24 Hannes Magnusson <[email protected]>
* Include the pre-generated fixtures in the package
2015-04-24 Hannes Magnusson <[email protected]>
* PHPC-241: Don't try to use local timezone
2015-04-24 Hannes Magnusson <[email protected]>
* Fix extension name -- and recommend the developers flags
2015-04-24 Hannes Magnusson <[email protected]>
* PHPC-241: mongodb.debug improvements
2015-04-24 Hannes Magnusson <[email protected]>
* Fix unused result warning - and use the localtime in logs
2015-04-23 Hannes Magnusson <[email protected]>
* Update testing section and add related section
2015-04-23 Hannes Magnusson <[email protected]>
* Fix coveralls build
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-270: Several test fail because of missing enableTestCommands
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-270: add TESTCOMMANDS() skipif to confirm mongod is running with required options
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-269: Fix travis setup
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-268: Update tests to declare which environments they need
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-268: Add NEEDS() function to check if that environment is available
2015-04-23 Hannes Magnusson <[email protected]>
* Object IDs change, fix test
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-247: Remove 'faker' as prerequisite from running our full test suite
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-247: Remove on-the-fly composer generated fixtures
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-247: Use the bundled pregenerated fixtures
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-89: Bundle generated fixtures and make them easily loadable
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-260: Allow/use "object" in setTypeMap() as alias/preferred for "stdclass"
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-267; _id generated on embedded document
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-265: BSON encoding unsupoprted types (Resource) should fail
2015-04-23 Hannes Magnusson <[email protected]>
* PHPC-266: Add MongoDB\Driver\UnexpectedValueException
2015-04-22 Hannes Magnusson <[email protected]>
* Bump copyright -- happy 2015
2015-04-22 Hannes Magnusson <[email protected]>
* PHPC-75: Improve code coverage
2015-04-22 Hannes Magnusson <[email protected]>
* No need for code-coverage for contrib
2015-04-23 Hannes Magnusson <[email protected]>
* Merge pull request #39 from remicollet/issue-phpc258
2015-04-23 Remi Collet <[email protected]>
* PHPC-258: make all filed needed for test as role="test"
2015-04-22 Hannes Magnusson <[email protected]>
* Merge branch 'remicollet-issue-libbson'
2015-04-22 Remi Collet <[email protected]>
* PHPC-259: add --with-libbson option
2015-04-21 Jeremy Mikola <[email protected]>
* Mongo Orchestration now works with PyMongo 3.0
2015-04-21 Hannes Magnusson <[email protected]>
* Back to -dev
2015-04-21 Hannes Magnusson <[email protected]>
* Add 0.5.0 release notes
2015-04-21 Hannes Magnusson <[email protected]>
* Bump stability
RELEASE 0.5.0
--------------
2015-04-21 Hannes Magnusson <[email protected]>
* Bump stability
2015-04-21 Hannes Magnusson <[email protected]>
* Add 0.5.0 release notes
2015-04-21 Hannes Magnusson <[email protected]>
* Fix tests on 5.3 -- and use consistent db/collection
2015-04-21 Hannes Magnusson <[email protected]>
* Fix test - set my favorite ini option: date.timezone
2015-04-21 Hannes Magnusson <[email protected]>
* Fix tests
2015-04-21 Hannes Magnusson <[email protected]>
* PHPC-241: Include lib versions and uri in the logs
2015-04-21 Hannes Magnusson <[email protected]>
* Use the pretty MONGOC macros
2015-04-21 Hannes Magnusson <[email protected]>
* Remove dead code
2015-04-21 Hannes Magnusson <[email protected]>
* Move the init function to where all the others are and add folding markers
2015-04-21 Jeremy Mikola <[email protected]>
* Merge pull request #37
2015-04-17 Jeremy Mikola <[email protected]>
* Current element is already freed in php_phongo_cursor_free()
2015-04-16 Jeremy Mikola <[email protected]>
* Test Cursor iteration handlers and ensure rewind doesn't reset position
2015-04-16 Jeremy Mikola <[email protected]>
* Tests for multiple iterators sharing the same Cursor
2015-04-15 Jeremy Mikola <[email protected]>
* PHPC-240: Rely on libmongoc for command cursor iteration
2015-04-14 Jeremy Mikola <[email protected]>
* PHPC-240: Regression tests for command cursor getmore
2015-04-21 Hannes Magnusson <[email protected]>
* PHPC-254: Remove unused RINIT and RSHUTDOWN handlers
2015-04-21 Hannes Magnusson <[email protected]>
* PHPC-253: bump mongoc after CDRIVER-611 fix
2015-04-16 Hannes Magnusson <[email protected]>
* PHPC-249: empty array should be serialized as array
2015-04-16 Hannes Magnusson <[email protected]>
* PHPC-248: Allow ->setTypeMap() to set 'array' and 'stdclass'
2015-04-15 Hannes Magnusson <[email protected]>
* PHPC-245: Allow embedding objects in updates
2015-04-15 Hannes Magnusson <[email protected]>
* PHPC-245: executeUpdate() converts objects to arrays
2015-04-14 Hannes Magnusson <[email protected]>
* PHPC-244: Cannot use object of type Person as array
2015-04-14 Hannes Magnusson <[email protected]>
* PHPC-243: Manager->executeUpdate() option is supposed to be 'multi'
2015-04-14 Hannes Magnusson <[email protected]>
* Merge pull request #35 from bjori/PHPc-239
2015-04-14 Hannes Magnusson <[email protected]>
* PHPC-239: Cursor refcount issues
2015-04-14 Hannes Magnusson <[email protected]>
* Merge pull request #36 from derickr/align-and-missing-break-comment
2015-04-14 Derick Rethans <[email protected]>
* Align code and added the "break intentionally ommitted" comment
2015-04-13 Hannes Magnusson <[email protected]>
* PHPC-237: Update PHP version requirement in package.xml
2015-04-10 Hannes Magnusson <[email protected]>
* post-release pump
2015-04-10 Hannes Magnusson <[email protected]>
* Add 0.4.1 release notes
RELEASE 0.4.1
--------------
2015-04-10 Jeremy Mikola <[email protected]>
* Prep 0.4.1 release
2015-04-10 Hannes Magnusson <[email protected]>
* PHPC-236: 5.3-zts build broken
2015-04-10 Hannes Magnusson <[email protected]>
* Back to -dev
2015-04-10 Hannes Magnusson <[email protected]>
* prep 0.4.0 release
RELEASE 0.4.0
--------------
2015-04-10 Hannes Magnusson <[email protected]>
* Install ext/zlib so we can pecl install .tgz
2015-04-10 Hannes Magnusson <[email protected]>
* mo will automatically upgrade pymongo -- we need to downgrade
2015-04-10 Hannes Magnusson <[email protected]>
* mongo-orchestration isn't happy about the recent pymongo3.0 release
2015-04-10 Jeremy Mikola <[email protected]>
* Update description for Cursor::getServer()
2015-04-09 Hannes Magnusson <[email protected]>
* PHPC-234: Run test suite automatically on FreeBSD 10.1
2015-04-09 Hannes Magnusson <[email protected]>
* PHPC-235: Fix out-of-src builds on FreeBSD
2015-04-09 Hannes Magnusson <[email protected]>
* Initial script to provision on FreeBSD
2015-04-09 Hannes Magnusson <[email protected]>
* Initial script to provision on Windows
2015-04-09 Hannes Magnusson <[email protected]>
* Fix windows build
2015-04-09 Hannes Magnusson <[email protected]>
* Simplify hash and fix windows build
2015-04-09 Hannes Magnusson <[email protected]>
* Rename the compat header - its much more then PHP5.3 issues now
2015-04-09 Hannes Magnusson <[email protected]>
* Fix build on windows -- no strtoll()
2015-04-09 Hannes Magnusson <[email protected]>
* Fix warning, return in noreturn function
2015-04-09 Hannes Magnusson <[email protected]>
* Fix zts build
2015-04-09 Hannes Magnusson <[email protected]>
* Fix php_flock() warning on windows
2015-04-09 Hannes Magnusson <[email protected]>
* PHPC-213: Disable extra bson type alignment
2015-04-09 Hannes Magnusson <[email protected]>
* Bumpidy bump
2015-04-09 Hannes Magnusson <[email protected]>
* PHPC-233: Mark the ctor as private for internally created value objects
2015-04-08 Hannes Magnusson <[email protected]>
* PHPC-80: Create distcheck target
2015-04-08 Hannes Magnusson <[email protected]>
* Convert int64 that overflow 32bit long to strings
2015-04-08 Hannes Magnusson <[email protected]>
* Convert overflown int64 to strings and print a warning
2015-04-08 Hannes Magnusson <[email protected]>
* Fix path to tests when executed through pecl run-tests
2015-04-08 Hannes Magnusson <[email protected]>
* Ignore untracked files in these repos
2015-04-08 Hannes Magnusson <[email protected]>
* libbson & mongoc seem to have fixed a lot of warnings -- enable all of ours
2015-04-08 Hannes Magnusson <[email protected]>
* Workaround CDRIVER-610
2015-04-08 Hannes Magnusson <[email protected]>
* Apparently there is a function for this!
2015-04-08 Hannes Magnusson <[email protected]>
* Fix zts build.. TSRMLS_FETCH_FROM_CTX declares variables and therefore must come first
2015-04-07 Hannes Magnusson <[email protected]>
* Remove noop log handler
2015-04-07 Hannes Magnusson <[email protected]>
* PHPC-231: Manager instances should not free streams that are still in use
2015-04-07 Hannes Magnusson <[email protected]>
* bump dependencies for PHPC-231 & PHPC-213
2015-04-07 Jeremy Mikola <[email protected]>
* PHPC-232: Fix capitalization for WriteResult::getWriteConcern()
2015-04-07 Jeremy Mikola <[email protected]>
* PHPC-231: Regression test for Manager destruct stream freeing
2015-04-06 Jeremy Mikola <[email protected]>
* Merge pull request #33
2015-04-06 Jeremy Mikola <[email protected]>
* Remove unnecessary php_phongo_cursor_free_current() call
2015-04-06 Jeremy Mikola <[email protected]>
* Re-use cursor_free_current() in cursor_free()
2015-04-06 Jeremy Mikola <[email protected]>
* PHPC-215: Fix Cursor iteration through IteratorIterator
2015-04-03 Jeremy Mikola <[email protected]>
* PHPC-225: Test Cursor::isDead() and kill on destruct
2015-04-03 Jeremy Mikola <[email protected]>
* PHPC-224: Consolidate Result and Cursor classes into one
2015-04-03 Jeremy Mikola <[email protected]>
* PHPC-224: Remove Cursor class, which implements Iterator
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-207: Correct serialized data examples for ODS documentation
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-210 & PHPC-209 & PHPC-207 Fix BSON ODM/ODS
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-208: Restrict ODS to "__pclass" fieldnames
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-194: Implement Manager::selectServer() method to wrap SDAM server selection
2015-04-03 Hannes Magnusson <[email protected]>
* In PHP5.3 we hit the __wakeUp() which has slightly different exception
2015-04-03 Hannes Magnusson <[email protected]>
* Merge pull request #34 from serebro/patch-1
2015-04-03 Sergey <[email protected]>
* Docs small fix
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-190: Provide __wakeUp() to disable unserialize()
2015-04-03 Hannes Magnusson <[email protected]>
* This apt-get update is slow -- no need to execute it all the time
2015-04-03 Hannes Magnusson <[email protected]>
* PHPC-191 && PHPC-192: Add verify_expiry && verify_peer_name certificate verify options
2015-04-02 Hannes Magnusson <[email protected]>
* PHPC-223: Use explicit SSL options rather then stream context
2015-04-02 Hannes Magnusson <[email protected]>
* Fix setting debug logging as part of the driverOptions
2015-04-02 Hannes Magnusson <[email protected]>
* Private Public doesn't exists... This is supposed to be private :D
2015-04-02 Hannes Magnusson <[email protected]>
* Cleanup after test
2015-04-02 Hannes Magnusson <[email protected]>
* Make it possible to cleanup other db and collections used
2015-04-01 Hannes Magnusson <[email protected]>
* Fix tests when executed outside of srcroot
2015-04-01 Hannes Magnusson <[email protected]>
* PHPC-222: WriteConcernError can cause segfaults on Ubuntu Precise 32bit
2015-04-01 Hannes Magnusson <[email protected]>
* PHPC-220: BSON\UTCDatetime broken on 32bit
2015-04-01 Hannes Magnusson <[email protected]>
* Fix compile warning on 32bit
2015-04-01 Hannes Magnusson <[email protected]>
* Fix incompatible pointer type in PHP 5.3
2015-04-01 Hannes Magnusson <[email protected]>
* Include usable gdbinit
2015-04-01 Hannes Magnusson <[email protected]>
* PHPC-221: Add Ubuntu Precise (12.04.5) 32bit image
2015-04-01 Hannes Magnusson <[email protected]>
* PHPC-219 - BSON\Javascript segfaults on Ubuntu Precise 32bit
2015-04-01 Hannes Magnusson <[email protected]>
* PHPC-221: Rename the identifier to precise64 as we'll be adding 32bit soon
2015-03-31 Jeremy Mikola <[email protected]>
* Merge pull request #32
2015-03-31 Jeremy Mikola <[email protected]>
* PHPC-204: Result::toArray() should respect type map configuration
2015-03-31 Jeremy Mikola <[email protected]>
* PHPC-203: Result::toArray() should proxy iterator_to_array($this)
2015-03-31 Hannes Magnusson <[email protected]>
* Make sure we install the latest package in case of multiple rebuilds of same name
2015-03-31 Jeremy Mikola <[email protected]>
* Merge pull request #31
2015-03-30 Jeremy Mikola <[email protected]>
* PHPC-214: Result does not need custom iterator classes
2015-03-30 Hannes Magnusson <[email protected]>
* Forcefully install the new archive, even though it exists
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-216: PHP5.5 change the prototype of get_current_key leading to
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-216: Include our pem files in the pecl archive
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-216: Use array(), not [], for PHP5.3 compatibility
2015-03-30 Hannes Magnusson <[email protected]>
* Split release target into release and packaging
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-218: Provision ubuntu image and install & run the test suite
2015-03-30 Hannes Magnusson <[email protected]>
* No need to sudo, run the scripts as priveleged
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-216: PHP5.3 test suite fixes
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-217: Include the connection tests in pecl package
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-213: Memory alignment issues on FreeBSD
2015-03-30 Hannes Magnusson <[email protected]>
* Fix stability name according to pecl rules
2015-03-30 Hannes Magnusson <[email protected]>
* PHPC-216: PHP5.3 test suite fixes
2015-03-27 Hannes Magnusson <[email protected]>
* Re align
2015-03-27 Hannes Magnusson <[email protected]>
* PHPC-212: undefined symbol: _mongoc_sasl_set_service_host - patch by [email protected]
2015-03-26 Hannes Magnusson <[email protected]>
* Ignore coverage files
2015-03-25 Hannes Magnusson <[email protected]>
* bump version
2015-03-25 Hannes Magnusson <[email protected]>
* Merge pull request #28 from jmikola/phpc-201
2015-03-25 Hannes Magnusson <[email protected]>
* Add 0.3.1 release notes
RELEASE 0.3.1
--------------
2015-03-25 Hannes Magnusson <[email protected]>
* bump version for windows packaging fix
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-211: Windows libbson and mongoc config files missing in release archive
2015-03-25 Hannes Magnusson <[email protected]>
* Link to the docs on php.net
2015-03-25 Hannes Magnusson <[email protected]>
* Use pecl for installing
2015-03-25 Hannes Magnusson <[email protected]>
* Bump version
2015-03-25 Hannes Magnusson <[email protected]>
* Add 0.3.0 release notes
RELEASE 0.3.0
--------------
2015-03-25 Hannes Magnusson <[email protected]>
* Add config.w32 to package.xml
2015-03-25 Hannes Magnusson <[email protected]>
* Use absolute paths in skipifs too
2015-03-25 Hannes Magnusson <[email protected]>
* Update bundles for windows fixes
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-175: Fix header includes on Windows
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-175: Fix build on 32bit
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-175: Windows doesn't have these compiler attributes
2015-03-25 Hannes Magnusson <[email protected]>
* Fix windows bson config
2015-03-25 Hannes Magnusson <[email protected]>
* IPHPC-176: Copy build templates, add missing file & set build flags
2015-03-25 Hannes Magnusson <[email protected]>
* Use absolute paths on in tests so they can run easier on windows
2015-03-25 Hannes Magnusson <[email protected]>
* Absolute path is required to run tests on windows
2015-03-25 Hannes Magnusson <[email protected]>
* Allow mongoc_init() to not use our mm
2015-03-25 Hannes Magnusson <[email protected]>
* bump mongoc with windows fixes
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-200: Don't set stream initiator when creating client fails
2015-03-25 Hannes Magnusson <[email protected]>
* PHPC-199: Missing file from mongoc in config.m4
2015-03-24 Hannes Magnusson <[email protected]>
* Initial win32 attempt
2015-03-24 Hannes Magnusson <[email protected]>
* Bundle windows configs
2015-03-24 Hannes Magnusson <[email protected]>
* Improve code coverage
2015-03-23 Hannes Magnusson <[email protected]>
* Simplify
2015-03-23 Hannes Magnusson <[email protected]>
* Providing higher init size is worse then providing none
2015-03-23 Hannes Magnusson <[email protected]>
* Add raises() helper, similar to throws() except for php warnings/notices/deprecated/...
2015-03-24 Hannes Magnusson <[email protected]>
* ignore mongodb*tgz release files and "failed.txt" from run-tests
2015-03-24 Hannes Magnusson <[email protected]>
* Bump libbson with timeval fix and mongoc with various sdam fixes
2015-03-23 Jeremy Mikola <[email protected]>
* Update PECL install instructions for alpha release
2015-03-23 Hannes Magnusson <[email protected]>
* Include the license file for next release
2015-03-23 Hannes Magnusson <[email protected]>
* Update naming after PHPC-174
2015-03-23 Hannes Magnusson <[email protected]>
* Bump version
2015-03-23 Hannes Magnusson <[email protected]>
* Add 0.2.0 release notes
RELEASE 0.2.0
--------------
2015-03-23 Hannes Magnusson <[email protected]>
* PHPC-174: Rename module registration, constants and so on to mongodb
2015-03-23 Hannes Magnusson <[email protected]>
* Bump release to 0.2.0-alpha
2015-03-23 Hannes Magnusson <[email protected]>
* Include the version and config templates
2015-03-23 Hannes Magnusson <[email protected]>
* Only run our tests as part of release for now
2015-03-23 Hannes Magnusson <[email protected]>
* PHPC-174: Rename phongo to mongodb
2015-03-23 Hannes Magnusson <[email protected]>
* PHPC-174: Use consistent extension names for PHP and HHVM drivers
2015-03-23 Hannes Magnusson <[email protected]>
* PHPC-195: Fix typo and couple of missing incldues
2015-03-23 Hannes Magnusson <[email protected]>
* PHPC-195: Remove mongoc/bson header file workarounds
2015-03-23 Hannes Magnusson <[email protected]>
* Test for PHPC-186
2015-03-23 Hannes Magnusson <[email protected]>
* Remove char * casting, the macro soup leads to incorrect sizeof
2015-03-20 Hannes Magnusson <[email protected]>
* Fix zts
2015-03-20 Hannes Magnusson <[email protected]>
* PHPC-183: Add -Wdeclaration-after-statement to --enable-developers-flags
2015-03-20 Hannes Magnusson <[email protected]>
* PHPC-183: Fix compiler warnings with -Wdeclaration-after-statement
2015-03-20 Hannes Magnusson <[email protected]>
* PHPC-189: Implement Manager->getServers()
2015-03-20 Hannes Magnusson <[email protected]>
* PHPC-188: Populate MongoDB\Driver\Server
2015-03-20 Hannes Magnusson <[email protected]>
* PHPC-24 PHPC-77 PHPC-69 Provide a functioning Server object
2015-03-19 Hannes Magnusson <[email protected]>
* bump submodule to mongoc 1.2.0-dev - includes sdam stuff
2015-03-18 Hannes Magnusson <[email protected]>
* PHPC-106: Comment out var_dump() data for now
2015-03-18 Hannes Magnusson <[email protected]>
* PHPC-106: Enable mongoc SDAM build
2015-03-18 Hannes Magnusson <[email protected]>
* PHPC-106: Connect asynchronouslyish
2015-03-19 Hannes Magnusson <[email protected]>
* PHPC-106: Implement the new poll callback
2015-03-18 Hannes Magnusson <[email protected]>
* In SDAM this is forbidden and throws exception
2015-03-18 Hannes Magnusson <[email protected]>
* Show the response when the test fails
2015-03-18 Hannes Magnusson <[email protected]>
* Store the original mongoc_uri_t not just the options bson
2015-03-18 Hannes Magnusson <[email protected]>
* Add a little tracing love
2015-03-18 Hannes Magnusson <[email protected]>
* Properly block on socket writes
2015-03-18 Hannes Magnusson <[email protected]>
* Fix null pointer exception
2015-03-17 Hannes Magnusson <[email protected]>
* Unhide this
2015-03-17 Jeremy Mikola <[email protected]>
* Merge pull request #27
2015-03-17 Jeremy Mikola <[email protected]>
* Return const struct pointers from zval getters
2015-03-17 Jeremy Mikola <[email protected]>
* PHPC-181: Discard const qualifiers for PHP API
2015-03-17 Jeremy Mikola <[email protected]>
* PHPC-181: Use const for pointer args where applicable
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: Fix limited batch import
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: No need to sleep anything, we get a fresh connection in next test
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: We now load 1024 users
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: We now generate 1024 users, only load the first 100
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: Cache the fixtures
2015-03-16 Hannes Magnusson <[email protected]>
* Surpress timezone warning by adding it to the ini
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: Rename constant and pass the cleanup uri explicitly
2015-03-16 Hannes Magnusson <[email protected]>
* PHPC-180: Replace this Orchestration wrapper with significantly simpler code
2015-03-16 Hannes Magnusson <[email protected]>
* Use underscore for the id so we can declare them as constants in php
2015-03-16 Hannes Magnusson <[email protected]>
* Use readable name for the replicaset nodes
2015-03-16 Hannes Magnusson <[email protected]>
* Minor README updates
2015-03-13 Jeremy Mikola <[email protected]>
* Merge pull request #26
2015-03-12 Jeremy Mikola <[email protected]>
* PHPC-168: Implement WriteResult::isAcknowledged()
2015-03-12 Jeremy Mikola <[email protected]>
* PHPC-170: Don't set write concern on bulk unnecessarily
2015-03-12 Jeremy Mikola <[email protected]>
* PHPC-177: Include all fields in WriteConcern debug output
2015-03-12 Jeremy Mikola <[email protected]>
* Remove unnecessary Manager and apply EXPECTF patterns
2015-03-12 Jeremy Mikola <[email protected]>
* Update Ubuntu's package repository before installing
2015-03-12 Hannes Magnusson <[email protected]>
* Fixed missing type specifier warning
2015-03-12 Hannes Magnusson <[email protected]>
* Fix build on MacOSX
2015-03-11 Hannes Magnusson <[email protected]>
* Its a bulk
2015-03-11 Hannes Magnusson <[email protected]>
* post release bump
2015-03-11 Hannes Magnusson <[email protected]>
* Add 0.1.5 release notes
RELEASE 0.1.5
--------------
2015-03-11 Hannes Magnusson <[email protected]>
* MO now actually creates this initial user, use correct subject to fix the X509 tests
2015-03-11 Hannes Magnusson <[email protected]>
* libbson 1.1.2 & mongoc 1.1.2
2015-03-11 Hannes Magnusson <[email protected]>
* Add "make help" since I always forget the names
2015-03-05 Hannes Magnusson <[email protected]>
* PHP5.6 change serveral TLS verfication defaults
2015-03-05 Hannes Magnusson <[email protected]>
* PHPC-171: SSL Doesn't work in PHP5.6
2015-03-04 Hannes Magnusson <[email protected]>
* Bump submodules
2015-03-04 Hannes Magnusson <[email protected]>
* Bump bundled version
2015-03-04 Hannes Magnusson <[email protected]>
* Fix tests for MongoDB 3.0.0
2015-03-04 Hannes Magnusson <[email protected]>
* PHPC-129: Fix tests for HIPPO can't throw InvalidArgumentException on argument errors
2015-03-03 Hannes Magnusson <[email protected]>
* Bump mongoc for PHPC-167
2015-03-03 Hannes Magnusson <[email protected]>
* Add micro-optimization tip for the future
2015-03-03 Hannes Magnusson <[email protected]>
* PHPC-129: HIPPO can't throw InvalidArgumentException on argument errors
2015-03-03 Hannes Magnusson <[email protected]>
* Simplify debug logging logic when running tests standalone
2015-03-03 Hannes Magnusson <[email protected]>
* PHPC-163: Throw BulkWriteException on BulkWrite failure
2015-02-27 Hannes Magnusson <[email protected]>
* PHPC-166: Disable (un)serializing of phongo objects
2015-02-20 Hannes Magnusson <[email protected]>
* PHPC-165: Rename WriteBatch to BulkWrite
2015-02-19 Hannes Magnusson <[email protected]>
* PHPC-164: Throw MongoDB\Driver\ConnectionTimeoutException
2015-02-19 Hannes Magnusson <[email protected]>
* This is a Manager, not MongoClient
2015-02-19 Hannes Magnusson <[email protected]>
* Ignore me. Trim trailing space
2015-02-19 Hannes Magnusson <[email protected]>
* PHPC-107: Throw ExecutionTimeoutException for maxTimeMs
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-159: memleak on failed path resolving
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-158: Split queryFlags bitmask option into specific options
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-157: Consolidate CommandResult and QueryResult classes
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-157: QueryResult and CommandResult are now Result
2015-02-18 Hannes Magnusson <[email protected]>
* rebase with Result.c
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-157: Renamed getResponseDocument() to toArray()
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-157: Consolidate CommandResult and QueryResult classes
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-157: Remove QueryResult
2015-02-18 Hannes Magnusson <[email protected]>
* bump mongoc
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-155: WriteConcernError->getInfo() can be scalar
2015-02-18 Hannes Magnusson <[email protected]>
* Add a note about PHPC-72
2015-02-18 Hannes Magnusson <[email protected]>
* PHPC-154: WriteError can have info field
2015-02-06 Hannes Magnusson <[email protected]>
* PHPC-153: Rename cursorFlags to queryFlags in Query
2015-02-06 Hannes Magnusson <[email protected]>
* PHPC-152: Throw MongoDB\Driver\InvalidArgumentException on argument errors
2015-02-06 Hannes Magnusson <[email protected]>
* Throw our RuntimeException, not SPL
2015-02-02 Hannes Magnusson <[email protected]>
* post release bump
2015-02-02 Hannes Magnusson <[email protected]>
* Add 0.1.4 release notes
RELEASE 0.1.4
--------------
2015-02-02 Hannes Magnusson <[email protected]>
* prep for 0.1.4 release
2015-02-02 Hannes Magnusson <[email protected]>
* PHPC-151: Bump to libbson-1.1.0 and mongoc-1.1.0 and fix build
2015-02-02 Hannes Magnusson <[email protected]>
* This is a result iterator, not cursor
2015-02-02 Hannes Magnusson <[email protected]>
* PHPC-149: Iterator holding on to dead results