Skip to content

Commit 39cb5bf

Browse files
committed
Add 1.0.0-alpha1 release notes
1 parent 05fdc04 commit 39cb5bf

File tree

1 file changed

+224
-0
lines changed

1 file changed

+224
-0
lines changed

Diff for: RELEASE-1.0.0-alpha1

+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
2015-10-06 Jeremy Mikola <[email protected]>
2+
* Use "autoload-dev" for loading test classes
3+
4+
2015-09-28 Jeremy Mikola <[email protected]>
5+
* Replace magic string with a private constant and comments
6+
7+
2015-09-28 Jeremy Mikola <[email protected]>
8+
* ListCollections functional tests
9+
10+
2015-09-28 Jeremy Mikola <[email protected]>
11+
* PHPLIB-123: Do not throw when listing indexes on nonexistent collection
12+
13+
2015-09-28 Jeremy Mikola <[email protected]>
14+
* PHPLIB-107: Fix return statement when dropping nonexistent collection
15+
16+
2015-09-27 Jeremy Mikola <[email protected]>
17+
* DropDatabase functional tests
18+
19+
2015-09-27 Jeremy Mikola <[email protected]>
20+
* PHPLIB-107: Do not throw when dropping nonexistent collection
21+
22+
2015-09-24 Jeremy Mikola <[email protected]>
23+
* Revise docs and exception message for assertDatabaseExists()
24+
25+
2015-09-14 Jeremy Mikola <[email protected]>
26+
* Trust that Collection's writeConcern is always set
27+
28+
2015-09-14 Jeremy Mikola <[email protected]>
29+
* Relax writeConcern option checks in operation classes
30+
31+
2015-09-14 Jeremy Mikola <[email protected]>
32+
* PHPLIB-111: Ensure read ops use appropriate read preference
33+
34+
2015-09-14 Jeremy Mikola <[email protected]>
35+
* PHPLIB-73: Database and Collection can inherit RP/WC from Manager
36+
37+
2015-09-12 Jeremy Mikola <[email protected]>
38+
* Bump extension version to beta
39+
40+
2015-09-24 Jeremy Mikola <[email protected]>
41+
* PHPLIB-120: Require PHP 5.4+
42+
43+
2015-09-18 Daniel Kozak <[email protected]>
44+
* fix doc url
45+
46+
2015-09-03 Jeremy Mikola <[email protected]>
47+
* Validate Database $databaseName and test getters
48+
49+
2015-09-03 Jeremy Mikola <[email protected]>
50+
* Validate Collection $namespace and test getters
51+
52+
2015-09-03 Jeremy Mikola <[email protected]>
53+
* Rename Collection class properties
54+
55+
2015-09-03 Jeremy Mikola <[email protected]>
56+
* Fix type documentation for Count and Distinct $filter arg
57+
58+
2015-09-03 Jeremy Mikola <[email protected]>
59+
* Disable xdebug extension on Travis
60+
61+
2015-09-03 Jeremy Mikola <[email protected]>
62+
* Unit tests for Find operation
63+
64+
2015-09-03 Jeremy Mikola <[email protected]>
65+
* Unit tests for Aggregate operation
66+
67+
2015-09-03 Jeremy Mikola <[email protected]>
68+
* Unit tests for Distinct operation and allow array/object $filter
69+
70+
2015-09-03 Jeremy Mikola <[email protected]>
71+
* Unit tests for Count operation and allow array/object $filter
72+
73+
2015-09-03 Jeremy Mikola <[email protected]>
74+
* Validate Aggregation $pipeline before $options
75+
76+
2015-09-03 Jeremy Mikola <[email protected]>
77+
* Allow array/object for Collection::find() and findOne() $filter
78+
79+
2015-09-03 Jeremy Mikola <[email protected]>
80+
* Test type checking for BulkWrite constructor options
81+
82+
2015-09-03 Jeremy Mikola <[email protected]>
83+
* Refactor unit tests for write operations
84+
85+
2015-09-02 Jeremy Mikola <[email protected]>
86+
* Rely on default type map conversion
87+
88+
2015-09-02 Jeremy Mikola <[email protected]>
89+
* PHPLIB-73: Database and Collection should inherit Manager's WC and RP
90+
91+
2015-08-30 Jeremy Mikola <[email protected]>
92+
* Print core dumps for segfaults on Travis
93+
94+
2015-08-31 Jeremy Mikola <[email protected]>
95+
* Remove copypasta in CreateCollection
96+
97+
2015-08-31 Jeremy Mikola <[email protected]>
98+
* PHPLIB-109: Extract BulkWrite operation class
99+
100+
2015-08-27 Jeremy Mikola <[email protected]>
101+
* PHPLIB-109: Extract ReplaceOne, UpdateOne, and UpdateMany operation classes
102+
103+
2015-08-27 Jeremy Mikola <[email protected]>
104+
* PHPLIB-109: Extract DeleteOne and DeleteMany operation classes
105+
106+
2015-08-27 Jeremy Mikola <[email protected]>
107+
* PHPLIB-109: Extract InsertOne and InsertMany operation classes
108+
109+
2015-08-27 Jeremy Mikola <[email protected]>
110+
* Refer to findAndModify docs in related Collection methods
111+
112+
2015-07-27 Derick Rethans <[email protected]>
113+
* PHPC-118: Expect documents as objects (new default type)
114+
115+
2015-07-27 Derick Rethans <[email protected]>
116+
* PHPLIB-118: Specify "root" option in typemap, as it's separate from "document"
117+
118+
2015-08-26 Jeremy Mikola <[email protected]>
119+
* Require ext-mongodb ^1.0.0
120+
121+
2015-08-26 Jeremy Mikola <[email protected]>
122+
* Bump dev-master to 0.3.x-dev
123+
124+
2015-06-18 Jeremy Mikola <[email protected]>
125+
* PHPLIB-110: Extract Find and FindOne operation classes
126+
127+
2015-06-30 Derick Rethans <[email protected]>
128+
* PHPLIB-108: Use MongoDB\BSON namespace prefix
129+
130+
2015-06-19 Jeremy Mikola <[email protected]>
131+
* Make expected document assertions more flexible
132+
133+
2015-06-19 Jeremy Mikola <[email protected]>
134+
* Ensure operations return documents as objects by default
135+
136+
2015-06-18 Derick Rethans <[email protected]>
137+
* Because the typemap says 'document as array', we now need to change the return value with a cast to 'object'
138+
139+
2015-06-18 Derick Rethans <[email protected]>
140+
* Compare all arrays of documents by setting the typemap for documents to 'array'.
141+
142+
2015-06-18 Derick Rethans <[email protected]>
143+
* Use type map to force arrays instead of objects.
144+
145+
2015-06-17 Jeremy Mikola <[email protected]>
146+
* Aggregate should check server support before returning a cursor
147+
148+
2015-06-17 Jeremy Mikola <[email protected]>
149+
* Relax assertion in AggregateFunctionalTest
150+
151+
2015-06-17 Jeremy Mikola <[email protected]>
152+
* Older servers may return count "n" as a float
153+
154+
2015-06-17 Jeremy Mikola <[email protected]>
155+
* Don't assume document PHP type mapping in FunctionalTestCase
156+
157+
2015-06-16 Jeremy Mikola <[email protected]>
158+
* Remove unused Collection constants and methods
159+
160+
2015-06-16 Jeremy Mikola <[email protected]>
161+
* FeatureDetection utility class is obsolete
162+
163+
2015-06-16 Jeremy Mikola <[email protected]>
164+
* assertCommandSucceeded() now accepts a result document
165+
166+
2015-06-16 Jeremy Mikola <[email protected]>
167+
* Extract DropIndexes operation class
168+
169+
2015-06-16 Jeremy Mikola <[email protected]>
170+
* Extract Database::createCollection() to an operation class
171+
172+
2015-06-16 Jeremy Mikola <[email protected]>
173+
* Extra DropCollection operation class
174+
175+
2015-06-16 Jeremy Mikola <[email protected]>
176+
* Extract DropDatabase operation class
177+
178+
2015-06-16 Jeremy Mikola <[email protected]>
179+
* Extract Collection::listIndexes() to an operation class
180+
181+
2015-06-16 Jeremy Mikola <[email protected]>
182+
* Extract Database::listCollections() to an operation class
183+
184+
2015-06-16 Jeremy Mikola <[email protected]>
185+
* Extract Client::listDatabases() to an operation class
186+
187+
2015-06-14 Jeremy Mikola <[email protected]>
188+
* Replace private methods with generate_index_name() function
189+
190+
2015-06-14 Jeremy Mikola <[email protected]>
191+
* Return documents as objects from Collection findAndModify methods
192+
193+
2015-06-14 Jeremy Mikola <[email protected]>
194+
* Extract Collection findAndModify methods to operation classes
195+
196+
2015-06-11 Jeremy Mikola <[email protected]>
197+
* Extract Collection::count() to an operation class
198+
199+
2015-06-10 Jeremy Mikola <[email protected]>
200+
* Extract Collection::createIndexes() to an operation class
201+
202+
2015-06-10 Jeremy Mikola <[email protected]>
203+
* Extract Collection::distinct() to an operation class
204+
205+
2015-06-10 Jeremy Mikola <[email protected]>
206+
* Extract Collection::aggregate() to an operation class
207+
208+
2015-06-10 Jeremy Mikola <[email protected]>
209+
* Executable interface for operations
210+
211+
2015-06-14 Jeremy Mikola <[email protected]>
212+
* Create functions.php file for utility functions
213+
214+
2015-05-06 Jeremy Mikola <[email protected]>
215+
* Split UnexpectedTypeException for logic and runtime errors
216+
217+
2015-05-14 Sergey <[email protected]>
218+
* Update data.md
219+
220+
2015-05-12 Jeremy Mikola <[email protected]>
221+
* Reminder to push current branch (not just tags) for release
222+
223+
2015-05-12 Jeremy Mikola <[email protected]>
224+
* Add 0.2.0 release notes

0 commit comments

Comments
 (0)