Skip to content

Commit 98e14e8

Browse files
committed
Add 0.2.0 release notes
1 parent acd7c43 commit 98e14e8

File tree

1 file changed

+398
-0
lines changed

1 file changed

+398
-0
lines changed

RELEASE-0.2.0

+398
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,398 @@
1+
2015-05-12 Jeremy Mikola <[email protected]>
2+
* Revert to more traditional error reporting in Makefile
3+
4+
2015-05-12 Jeremy Mikola <[email protected]>
5+
* Add note that docs may require a manual gh-pages push
6+
7+
2015-05-12 Jeremy Mikola <[email protected]>
8+
* Use Makefile error reporting for missing binaries
9+
10+
2015-05-12 Jeremy Mikola <[email protected]>
11+
* Don't clean site/ directory on gh-pages deploy
12+
13+
2015-05-12 Jeremy Mikola <[email protected]>
14+
* Fix trailing semicolons for some Makefile commands
15+
16+
2015-05-12 Jeremy Mikola <[email protected]>
17+
* Consolidate building of API and book docs
18+
19+
2015-05-12 Jeremy Mikola <[email protected]>
20+
* Exclude merges from generated release log
21+
22+
2015-05-12 Jeremy Mikola <[email protected]>
23+
* Use dynamic release/VERSION make target
24+
25+
2015-05-12 Jeremy Mikola <[email protected]>
26+
* Fix Makefile indentation
27+
28+
2015-05-12 Jeremy Mikola <[email protected]>
29+
* Update docs for 0.2
30+
31+
2015-05-12 Jeremy Mikola <[email protected]>
32+
* Update code examples for 0.2
33+
34+
2015-05-12 Jeremy Mikola <[email protected]>
35+
* PHPLIB-105: Remove Collection::VERSION constant
36+
37+
2015-05-12 Jeremy Mikola <[email protected]>
38+
* PHPLIB-83: Extend driver exceptions
39+
40+
2015-05-12 Jeremy Mikola <[email protected]>
41+
* PHPLIB-87: Remove manual bsonSerialize() call
42+
43+
2015-05-05 Jeremy Mikola <[email protected]>
44+
* Do not iterate on CollectionInfoIterator multiple times
45+
46+
2015-05-05 Jeremy Mikola <[email protected]>
47+
* Bump ext-mongodb dependency to 0.6.0
48+
49+
2015-05-05 Jeremy Mikola <[email protected]>
50+
* Remove Faker test dependency
51+
52+
2015-05-03 Jeremy Mikola <[email protected]>
53+
* PHPLIB-94: Functional tests for bulkWrite() and BulkWriteResult
54+
55+
2015-05-03 Jeremy Mikola <[email protected]>
56+
* PHPLIB-103: bulkWrite() updateMany should require update operators
57+
58+
2015-05-03 Jeremy Mikola <[email protected]>
59+
* PHPLIB-94: BulkWriteResult and collect inserted IDs in bulkWrite()
60+
61+
2015-05-03 Jeremy Mikola <[email protected]>
62+
* InsertManyResult should require $insertedIds array
63+
64+
2015-05-03 Jeremy Mikola <[email protected]>
65+
* UpdateResult::getUpsertedId() may return any value
66+
67+
2015-05-03 Jeremy Mikola <[email protected]>
68+
* PHPLIB-102: Implement UpdateResult::getUpsertedCount()
69+
70+
2015-05-03 Jeremy Mikola <[email protected]>
71+
* Revise InsertManyResult::getInsertedIds() documentation
72+
73+
2015-05-03 Jeremy Mikola <[email protected]>
74+
* Fix iteration on operations in bulkWrite()
75+
76+
2015-05-03 Jeremy Mikola <[email protected]>
77+
* PHPLIB-92: bulkWrite() updates should use "multi" option
78+
79+
2015-04-30 Jeremy Mikola <[email protected]>
80+
* Note that UpdateResult::getModifiedCount() is undefined for legacy ops
81+
82+
2015-04-30 Jeremy Mikola <[email protected]>
83+
* Fix documentation for getInsertedId(s) methods on insert results
84+
85+
2015-04-30 Jeremy Mikola <[email protected]>
86+
* PHPLIB-89: String getters for Database and Collection classes
87+
88+
2015-04-30 Jeremy Mikola <[email protected]>
89+
* Reduce default server selection timeout for tests
90+
91+
2015-04-30 Jeremy Mikola <[email protected]>
92+
* PHPLIB-98: Ensure mongod service is started for all versions
93+
94+
2015-04-30 Jeremy Mikola <[email protected]>
95+
* Do not check modifiedCount for updates on 2.4
96+
97+
2015-04-29 Jeremy Mikola <[email protected]>
98+
* Skip $out aggregation test for MongoDB 2.4
99+
100+
2015-04-29 Jeremy Mikola <[email protected]>
101+
* PHPLIB-86: Fix aggregate() useCursor default and 2.4 compatibility
102+
103+
2015-04-29 Jeremy Mikola <[email protected]>
104+
* PHPLIB-98: Add multiple server versions to Travis CI
105+
106+
2015-04-29 Jeremy Mikola <[email protected]>
107+
* PHPLIB-95: Massage findAndModify null results before 3.0
108+
109+
2015-04-29 Jeremy Mikola <[email protected]>
110+
* PHPLIB-97: Cast count() results to integers
111+
112+
2015-04-29 Jeremy Mikola <[email protected]>
113+
* PHPLIB-96: Fix replacement/upsert test failures for 2.4
114+
115+
2015-04-29 Jeremy Mikola <[email protected]>
116+
* PHPLIB-58: Functional tests for CRUD spec write methods
117+
118+
2015-04-29 Jeremy Mikola <[email protected]>
119+
* Hash test case names to avoid hitting namespace limits
120+
121+
2015-04-29 Jeremy Mikola <[email protected]>
122+
* Clean up after passing Collection functional tests
123+
124+
2015-04-29 Jeremy Mikola <[email protected]>
125+
* Return findAndModify result document as an array
126+
127+
2015-04-29 Jeremy Mikola <[email protected]>
128+
* Restore Collection::_massageFindAndModifyOptions()
129+
130+
2015-04-29 Jeremy Mikola <[email protected]>
131+
* PHPLIB-93: Insert result classes should always track IDs
132+
133+
2015-04-29 Jeremy Mikola <[email protected]>
134+
* PHPLIB-92: Update methods should use "multi" option
135+
136+
2015-03-17 Jeremy Mikola <[email protected]>
137+
* PHPLIB-58: Functional tests for CRUD spec read methods
138+
139+
2015-04-28 Jeremy Mikola <[email protected]>
140+
* PHPLIB-91: Ensure count/distinct filters serialize as BSON objects
141+
142+
2015-04-27 Jeremy Mikola <[email protected]>
143+
* Split Database and Collection functional tests
144+
145+
2015-04-27 Jeremy Mikola <[email protected]>
146+
* Reorder methods in CollectionInfo
147+
148+
2015-04-27 Jeremy Mikola <[email protected]>
149+
* Pedantic method declaration test should ignore inherited methods
150+
151+
2015-04-27 Jeremy Mikola <[email protected]>
152+
* Reorder methods for reasons of pedantry
153+
154+
2015-03-18 Jeremy Mikola <[email protected]>
155+
* Move pedantic method declaration test to its own file
156+
157+
2015-04-26 Jeremy Mikola <[email protected]>
158+
* PHPLIB-79: Add __debugInfo() handlers for info classes
159+
160+
2015-04-26 Jeremy Mikola <[email protected]>
161+
* PHPLIB-75: Unit tests for database, collection, and index models
162+
163+
2015-04-26 Jeremy Mikola <[email protected]>
164+
* PHPLIB-88: Rename IndexInfo::getKeys() to getKey()
165+
166+
2015-04-26 Jeremy Mikola <[email protected]>
167+
* PHPLIB-77: Use namespaced exceptions
168+
169+
2015-04-26 Jeremy Mikola <[email protected]>
170+
* PHPLIB-63: Fix index creation for legacy servers
171+
172+
2015-04-24 Jeremy Mikola <[email protected]>
173+
* Bump ext-mongodb dependency to 0.5.1
174+
175+
2015-04-24 Jeremy Mikola <[email protected]>
176+
* Use wire protocol version constants for feature detection
177+
178+
2015-04-24 Jeremy Mikola <[email protected]>
179+
* PHPLIB-63: Refactor to avoid else condition and void methods
180+
181+
2015-04-24 Jeremy Mikola <[email protected]>
182+
* PHPLIB-63: Test custom name for index creation
183+
184+
2015-04-24 Jeremy Mikola <[email protected]>
185+
* PHPLIB-69: Do not allow empty index name for dropIndex()
186+
187+
2015-04-24 Jeremy Mikola <[email protected]>
188+
* PHPLIB-75: Use package BadMethodCallException for IndexInfo
189+
190+
2015-04-24 Jeremy Mikola <[email protected]>
191+
* PHPLIB-63: Empty input to createIndexes() is a NOP
192+
193+
2015-04-24 Jeremy Mikola <[email protected]>
194+
* PHPLIB-63: Use model class to validate index creation args
195+
196+
2015-04-24 Jeremy Mikola <[email protected]>
197+
* PHPLIB-46, PHPLIB-63, PHPLIB-69: Functional tests for index methods
198+
199+
2015-04-24 Jeremy Mikola <[email protected]>
200+
* PHPLIB-63: Index creation methods
201+
202+
2015-04-24 Jeremy Mikola <[email protected]>
203+
* PHPLIB-46: Index enumeration methods
204+
205+
2015-04-22 Jeremy Mikola <[email protected]>
206+
* PHPLIB-46: Index info and corresponding iterator class
207+
208+
2015-04-22 Jeremy Mikola <[email protected]>
209+
* PHPLIB-75: Refactor model classes and add class-level docs
210+
211+
2015-04-22 Jeremy Mikola <[email protected]>
212+
* PHPLIB-70: Add class-level docs to model iterators
213+
214+
2015-04-22 Jeremy Mikola <[email protected]>
215+
* Use type map for database and collection enumeration
216+
217+
2015-04-22 Jeremy Mikola <[email protected]>
218+
* Fix word wrap in documentation
219+
220+
2015-04-21 Jeremy Mikola <[email protected]>
221+
* PHPLIB-69: Index drop methods
222+
223+
2015-04-13 Jeremy Mikola <[email protected]>
224+
* Link to interface docs from implementations
225+
226+
2015-04-13 Jeremy Mikola <[email protected]>
227+
* PHPLIB-72: Use model class when listing databases
228+
229+
2015-04-13 Jeremy Mikola <[email protected]>
230+
* Link to canonical documentation URL
231+
232+
2015-04-10 Jeremy Mikola <[email protected]>
233+
* Don't be quiet when compiling the extension
234+
235+
2015-04-10 Jeremy Mikola <[email protected]>
236+
* Install latest PECL extension when testing
237+
238+
2015-04-10 Jeremy Mikola <[email protected]>
239+
* PHPLIB-45: Test listCollections with filter option
240+
241+
2015-04-10 Jeremy Mikola <[email protected]>
242+
* PHPLIB-45: Support stdClass listCollections() filter option
243+
244+
2015-04-10 Jeremy Mikola <[email protected]>
245+
* PHPLIB-45: List collections according to wire protocol version
246+
247+
2015-04-10 Jeremy Mikola <[email protected]>
248+
* PHPLIB-45: Construct CollectionInfoLegacyIterator from Traversable
249+
250+
2015-04-06 Jeremy Mikola <[email protected]>
251+
* Allow any extension version for development
252+
253+
2015-04-06 Jeremy Mikola <[email protected]>
254+
* PHPLIB-64: Collection creation method
255+
256+
2015-04-06 Jeremy Mikola <[email protected]>
257+
* Handle new Cursor and toArray() API in extension
258+
259+
2015-03-27 Jeremy Mikola <[email protected]>
260+
* PHPLIB-45: Collection enumeration methods
261+
262+
2015-03-27 Jeremy Mikola <[email protected]>
263+
* Setup Database object in DatabaseFunctionalTest
264+
265+
2015-03-26 Jeremy Mikola <[email protected]>
266+
* PHPLIB-71: Collection drop methods
267+
268+
2015-03-26 Jeremy Mikola <[email protected]>
269+
* PHPLIB-72: Database enumeration method
270+
271+
2015-03-25 Jeremy Mikola <[email protected]>
272+
* Restructure CollectionTest and fixture generation functions
273+
274+
2015-03-25 Jeremy Mikola <[email protected]>
275+
* Use 127.0.0.1 instead of localhost for default URI
276+
277+
2015-03-25 Jeremy Mikola <[email protected]>
278+
* Dump server buildInfo before running tests on Travis CI
279+
280+
2015-03-23 Jeremy Mikola <[email protected]>
281+
* Cast expected string arguments
282+
283+
2015-03-23 Jeremy Mikola <[email protected]>
284+
* PHPLIB-65: Database drop methods
285+
286+
2015-03-23 Jeremy Mikola <[email protected]>
287+
* PHPLIB-73: Inherit default write concern and read preferences
288+
289+
2015-03-17 Jeremy Mikola <[email protected]>
290+
* Create base classes for unit and functional tests
291+
292+
2015-03-17 Jeremy Mikola <[email protected]>
293+
* Create test bootstrap for autoloading
294+
295+
2015-04-10 Jeremy Mikola <[email protected]>
296+
* Link to the HHVM driver alongside PHP
297+
298+
2015-03-23 Jeremy Mikola <[email protected]>
299+
* Remove unsupported options in ApiGen config
300+
301+
2015-03-23 Jeremy Mikola <[email protected]>
302+
* Rename version variable in Makefile
303+
304+
2015-03-23 Jeremy Mikola <[email protected]>
305+
* Fix typos in Makefile
306+
307+
2015-03-23 Jeremy Mikola <[email protected]>
308+
* Fix database name in example docs
309+
310+
2015-03-23 Jeremy Mikola <[email protected]>
311+
* Update documentation for PECL mongodb-0.2.0
312+
313+
2015-03-23 Jeremy Mikola <[email protected]>
314+
* Fix function array dereferencing syntax for PHP 5.3
315+
316+
2015-03-23 Jeremy Mikola <[email protected]>
317+
* PHPLIB-56: Travis CI configuration
318+
319+
2015-03-23 Jeremy Mikola <[email protected]>
320+
* Update readme and composer.json for PECL mongodb-0.2.0
321+
322+
2015-03-17 Jeremy Mikola <[email protected]>
323+
* PHPLIB-45: Prototype for collection enumeration method
324+
325+
2015-03-17 Jeremy Mikola <[email protected]>
326+
* PHPLIB-46: Prototypes for index enumeration method
327+
328+
2015-03-17 Jeremy Mikola <[email protected]>
329+
* Declare Collection methods alphabetically by visibility
330+
331+
2015-03-17 Jeremy Mikola <[email protected]>
332+
* PHPLIB-71: Prototypes for collection drop methods
333+
334+
2015-03-17 Jeremy Mikola <[email protected]>
335+
* PHPLIB-65: Prototypes for database drop methods
336+
337+
2015-03-17 Jeremy Mikola <[email protected]>
338+
* PHPLIB-64: Prototype for collection create method
339+
340+
2015-03-17 Jeremy Mikola <[email protected]>
341+
* PHPLIB-63: Prototypes for index creation methods
342+
343+
2015-03-17 Jeremy Mikola <[email protected]>
344+
* PHPLIB-69: Prototypes for index drop methods
345+
346+
2015-03-16 Jeremy Mikola <[email protected]>
347+
* PHPLIB-59: Implement insertMany() and InsertManyResult
348+
349+
2015-03-16 Jeremy Mikola <[email protected]>
350+
* PHPLIB-60: Create result classes for CRUD methods
351+
352+
2015-03-16 Hannes Magnusson <[email protected]>
353+
* Bump phongo version and link to jira
354+
355+
2015-03-12 Hannes Magnusson <[email protected]>
356+
* Add MongoClient and Database objects
357+
358+
2015-03-12 Hannes Magnusson <[email protected]>
359+
* missing argument doc
360+
361+
2015-03-12 Hannes Magnusson <[email protected]>
362+
* PHPLIB-62: Its called BulkWrite now
363+
364+
2015-02-19 Jeremy Mikola <[email protected]>
365+
* PHPLIB-54: Update references to driver classes
366+
367+
2015-02-19 Jeremy Mikola <[email protected]>
368+
* PHPLIB-44: php-cs-fixer fix src/ --level=psr2
369+
370+
2014-12-19 Jeremy Mikola <[email protected]>
371+
* Rename package to mongodb/mongodb and update metadata
372+
373+
2014-12-19 Jeremy Mikola <[email protected]>
374+
* Add @jmikola and @derickr to Composer author list
375+
376+
2014-12-19 Jeremy Mikola <[email protected]>
377+
* Add @jmikola to author list
378+
379+
2014-12-19 Jeremy Mikola <[email protected]>
380+
* Specify Apache 2 license
381+
382+
2014-12-12 Jeremy Mikola <[email protected]>
383+
* Reformat composer.json
384+
385+
2014-12-12 Jeremy Mikola <[email protected]>
386+
* Fix package name in composer.json
387+
388+
2014-12-12 Hannes Magnusson <[email protected]>
389+
* Update links after moving the repo from bjori to 10gen-labs
390+
391+
2014-12-12 Hannes Magnusson <[email protected]>
392+
* README updates
393+
394+
2014-12-11 Hannes Magnusson <[email protected]>
395+
* Improve steps needed
396+
397+
2014-12-11 Hannes Magnusson <[email protected]>
398+
* Add 0.1.0 release notes

0 commit comments

Comments
 (0)