Newer
Older
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
* fixed; memory leak in nested objects #1565 #2211 [devongovett](https://github.com/devongovett)
3.8.14 / 2014-07-26
==================
* fixed; stringifying MongooseArray shows nested arrays #2002
* fixed; use populated doc schema in toObject and toJSON by default #2035
* fixed; dont crash on arrays containing null #2140
* fixed; model.update w/ upsert has same return values on .exec and promise #2143
* fixed; better handling for populate limit with multiple documents #2151
* fixed; dont prevent users from adding weights to text index #2183
* fixed; helper for aggregation cursor #2187
* updated; node-mongodb-native to 1.4.7
3.8.13 / 2014-07-15
==================
* fixed; memory leak with isNew events #2159
* fixed; docs for overwrite option for update() #2144
* fixed; storeShard() handles dates properly #2127
* fixed; sub-doc changes not getting persisted to db after save #2082
* fixed; populate with _id: 0 actually removes _id instead of setting to undefined #2123
* fixed; save versionKey on findOneAndUpdate w/ upsert #2122
* fixed; fix typo in 2.8 docs #2120 [shakirullahi](https://github.com/shakirullahi)
* fixed; support maxTimeMs #2102 [yuukinajima](https://github.com/yuukinajima)
* fixed; support $currentDate #2019
* fixed; $addToSet handles objects without _ids properly #1973
* fixed; dont crash on invalid nearSphere query #1874
3.8.12 / 2014-05-30
==================
* fixed; single-server reconnect event fires #1672
* fixed; sub-docs not saved when pushed into populated array #1794
* fixed; .set() sometimes converts embedded docs to pojos #1954 [archangel-irk](https://github.com/archangel-irk)
* fixed; sub-doc changes not getting persisted to db after save #2082
* fixed; custom getter might cause mongoose to mistakenly think a path is dirty #2100 [pgherveou](https://github.com/pgherveou)
* fixed; chainable helper for allowDiskUse option in aggregation #2114
3.9.0 (unstable) / 2014-05-22
==================
* changed; added `domain` to reserved keywords #1338 #2052 [antoinepairet](https://github.com/antoinepairet)
* added; asynchronous post hooks #1977 #2081 [chopachom](https://github.com/chopachom) [JasonGhent](https://github.com/JasonGhent)
* added; using model for population, cross-db populate [mihai-chiorean](https://github.com/mihai-chiorean)
* added; can define a type for schema validators
* added; `doc.remove()` returns a promise #1619 [refack](https://github.com/refack)
* added; internal promises for hooks, pre-save hooks run in parallel #1732 [refack](https://github.com/refack)
* fixed; geoSearch hanging when no results returned #1846 [ghartnett](https://github.com/ghartnett)
* fixed; do not set .type property on ValidationError, use .kind instead #1323
3.8.11 / 2014-05-22
==================
* updated; node-mongodb-native to 1.4.5
* reverted; #2052, fixes #2097
3.8.10 / 2014-05-20
==================
* updated; node-mongodb-native to 1.4.4
* fixed; _.isEqual false negatives bug in js-bson #2070
* fixed; missing check for schema.options #2014
* fixed; missing support for $position #2024
* fixed; options object corruption #2049
* fixed; improvements to virtuals docs #2055
* fixed; added `domain` to reserved keywords #2052 #1338
3.8.9 / 2014-05-08
==================
* updated; mquery to 0.7.0
* updated; node-mongodb-native to 1.4.3
* fixed; $near failing against MongoDB 2.6
* fixed; relying on .options() to determine if collection exists
* fixed; $out aggregate helper
* fixed; all test failures against MongoDB 2.6.1, with caveat #2065
3.8.8 / 2014-02-22
==================
* fixed; saving Buffers #1914
* updated; expose connection states for user-land #1926 [yorkie](https://github.com/yorkie)
* updated; mquery to 0.5.3
* updated; added get / set to reserved path list #1903 [tstrimple](https://github.com/tstrimple)
* docs; README code highlighting, syntax fixes #1930 [IonicaBizau](https://github.com/IonicaBizau)
* docs; fixes link in the doc at #1925 [kapeels](https://github.com/kapeels)
* docs; add a missed word 'hook' for the description of the post-hook api #1924 [ipoval](https://github.com/ipoval)
3.8.7 / 2014-02-09
==================
* fixed; sending safe/read options in Query#exec #1895
* fixed; findOneAnd..() with sort #1887
3.8.6 / 2014-01-30
==================
* fixed; setting readPreferences #1895
3.8.5 / 2014-01-23
==================
* fixed; ssl setting when using URI #1882
* fixed; findByIdAndUpdate now respects the overwrite option #1809 [owenallenaz](https://github.com/owenallenaz)
3.8.4 / 2014-01-07
==================
* updated; mongodb driver to 1.3.23
* updated; mquery to 0.4.1
* updated; mpromise to 0.4.3
* fixed; discriminators now work when selecting fields #1820 [daemon1981](https://github.com/daemon1981)
* fixed; geoSearch with no results timeout #1846 [ghartnett](https://github.com/ghartnett)
* fixed; infitite recursion in ValidationError #1834 [chetverikov](https://github.com/chetverikov)
3.8.3 / 2013-12-17
==================
* fixed; setting empty array with model.update #1838
* docs; fix url
3.8.2 / 2013-12-14
==================
* fixed; enum validation of multiple values #1778 [heroicyang](https://github.com/heroicyang)
* fixed; global var leak #1803
* fixed; post remove now fires on subdocs #1810
* fixed; no longer set default empty array for geospatial-indexed fields #1668 [shirish87](https://github.com/shirish87)
* fixed; model.stream() not hydrating discriminators correctly #1792 [j](https://github.com/j)
* docs: Stablility -> Stability [nikmartin](https://github.com/nikmartin)
* tests; improve shard error handling
3.8.1 / 2013-11-19
==================
* fixed; mishandling of Dates with minimize/getters #1764
* fixed; Normalize bugs.email, so `npm` will shut up #1769 [refack](https://github.com/refack)
* docs; Improve the grammar where "lets us" was used #1777 [alexyoung](https://github.com/alexyoung)
* docs; Fix some grammatical issues in the documentation #1777 [alexyoung](https://github.com/alexyoung)
* docs; fix Query api exposure
* docs; fix return description
* docs; Added Notes on findAndUpdate() #1750 [sstadelman](https://github.com/sstadelman)
* docs; Update version number in README #1762 [Fodi69](https://github.com/Fodi69)
3.8.0 / 2013-10-31
==================
* updated; warn when using an unstable version
* updated; error message returned in doc.save() #1595
* updated; mongodb driver to 1.3.19 (fix error swallowing behavior)
* updated; mquery to 0.3.2
* updated; mocha to 1.12.0
* updated; mpromise 0.3.0
* updated; sliced 0.0.5
* removed; mongoose.Error.DocumentError (never used)
* removed; namedscope (undocumented and broken) #679 #642 #455 #379
* changed; no longer offically supporting node 0.6.x
* changed; query.within getter is now a method -> query.within()
* changed; query.intersects getter is now a method -> query.intersects()
* added; custom error msgs for built-in validators #747
* added; discriminator support #1647 #1003 [j](https://github.com/j)
* added; support disabled collection name pluralization #1350 #1707 [refack](https://github.com/refack)
* added; support for GeoJSON to Query#near [ebensing](https://github.com/ebensing)
* added; stand-alone base query support - query.toConstructor() [ebensing](https://github.com/ebensing)
* added; promise support to geoSearch #1614 [ebensing](https://github.com/ebensing)
* added; promise support for geoNear #1614 [ebensing](https://github.com/ebensing)
* added; connection.useDb() #1124 [ebensing](https://github.com/ebensing)
* added; promise support to model.mapReduce()
* added; promise support to model.ensureIndexes()
* added; promise support to model.populate()
* added; benchmarks [ebensing](https://github.com/ebensing)
* added; publicly exposed connection states #1585
* added; $geoWithin support #1529 $1455 [ebensing](https://github.com/ebensing)
* added; query method chain validation
* added; model.update `overwrite` option
* added; model.geoNear() support #1563 [ebensing](https://github.com/ebensing)
* added; model.geoSearch() support #1560 [ebensing](https://github.com/ebensing)
* added; MongooseBuffer#subtype()
* added; model.create() now returns a promise #1340
* added; support for `awaitdata` query option
* added; pass the doc to doc.remove() callback #1419 [JoeWagner](https://github.com/JoeWagner)
* added; aggregation query builder #1404 [njoyard](https://github.com/njoyard)
* fixed; document.toObject when using `minimize` and `getters` options #1607 [JedWatson](https://github.com/JedWatson)
* fixed; Mixed types can now be required #1722 [Reggino](https://github.com/Reggino)
* fixed; do not pluralize model names not ending with letters #1703 [refack](https://github.com/refack)
* fixed; repopulating modified populated paths #1697
* fixed; doc.equals() when _id option is set to false #1687
* fixed; strict mode warnings #1686
* fixed; $near GeoJSON casting #1683
* fixed; nearSphere GeoJSON query builder
* fixed; population field selection w/ strings #1669
* fixed; setters not firing on null values #1445 [ebensing](https://github.com/ebensing)
* fixed; handle another versioning edge case #1520
* fixed; excluding subdocument fields #1280 [ebensing](https://github.com/ebensing)
* fixed; allow array properties to be set to null with findOneAndUpdate [aheuermann](https://github.com/aheuermann)
* fixed; subdocuments now use own toJSON opts #1376 [ebensing](https://github.com/ebensing)
* fixed; model#geoNear fulfills promise when results empty #1658 [ebensing](https://github.com/ebensing)
* fixed; utils.merge no longer overrides props and methods #1655 [j](https://github.com/j)
* fixed; subdocuments now use their own transform #1412 [ebensing](https://github.com/ebensing)
* fixed; model.remove() removes only what is necessary #1649
* fixed; update() now only runs with cb or explicit true #1644
* fixed; casting ref docs on creation #1606 [ebensing](https://github.com/ebensing)
* fixed; model.update "overwrite" option works as documented
* fixed; query#remove() works as documented
* fixed; "limit" correctly applies to individual items on population #1490 [ebensing](https://github.com/ebensing)
* fixed; issue with positional operator on ref docs #1572 [ebensing](https://github.com/ebensing)
* fixed; benchmarks to actually output valid json
* deprecated; promise#addBack (use promise#onResolve)
* deprecated; promise#complete (use promise#fulfill)
* deprecated; promise#addCallback (use promise#onFulFill)
* deprecated; promise#addErrback (use promise#onReject)
* deprecated; query.nearSphere() (use query.near)
* deprecated; query.center() (use query.circle)
* deprecated; query.centerSphere() (use query.circle)
* deprecated; query#slaveOk (use query#read)
* docs; custom validator messages
* docs; 10gen -> MongoDB
* docs; add Date method caveats #1598
* docs; more validation details
* docs; state which branch is stable/unstable
* docs; mention that middleware does not run on Models
* docs; promise.fulfill()
* docs; fix readme spelling #1483 [yorchopolis](https://github.com/yorchopolis)
* docs; fixed up the README and examples [ebensing](https://github.com/ebensing)
* website; add "show code" for properties
* website; move "show code" links down
* website; update guide
* website; add unstable docs
* website; many improvements
* website; fix copyright #1439
* website; server.js -> static.js #1546 [nikmartin](https://github.com/nikmartin)
* tests; refactor 1703
* tests; add test generator
* tests; validate formatMessage() throws
* tests; add script for continuously running tests
* tests; fixed versioning tests
* tests; race conditions in tests
* tests; added for nested and/or queries
* tests; close some test connections
* tests; validate db contents
* tests; remove .only
* tests; close some test connections
* tests; validate db contents
* tests; remove .only
* tests; replace deprecated method names
* tests; convert id to string
* tests; fix sharding tests for MongoDB 2.4.5
* tests; now 4-5 seconds faster
* tests; fix race condition
* make; suppress warning msg in test
* benchmarks; updated for pull requests
* examples; improved and expanded [ebensing](https://github.com/ebensing)
3.7.4 (unstable) / 2013-10-01
=============================
* updated; mquery to 0.3.2
* removed; mongoose.Error.DocumentError (never used)
* added; custom error msgs for built-in validators #747
* added; discriminator support #1647 #1003 [j](https://github.com/j)
* added; support disabled collection name pluralization #1350 #1707 [refack](https://github.com/refack)
* fixed; do not pluralize model names not ending with letters #1703 [refack](https://github.com/refack)
* fixed; repopulating modified populated paths #1697
* fixed; doc.equals() when _id option is set to false #1687
* fixed; strict mode warnings #1686
* fixed; $near GeoJSON casting #1683
* fixed; nearSphere GeoJSON query builder
* fixed; population field selection w/ strings #1669
* docs; custom validator messages
* docs; 10gen -> MongoDB
* docs; add Date method caveats #1598
* docs; more validation details
* website; add "show code" for properties
* website; move "show code" links down
* tests; refactor 1703
* tests; add test generator
* tests; validate formatMessage() throws
3.7.3 (unstable) / 2013-08-22
=============================
* updated; warn when using an unstable version
* updated; mquery to 0.3.1
* updated; mocha to 1.12.0
* updated; mongodb driver to 1.3.19 (fix error swallowing behavior)
* changed; no longer offically supporting node 0.6.x
* added; support for GeoJSON to Query#near [ebensing](https://github.com/ebensing)
* added; stand-alone base query support - query.toConstructor() [ebensing](https://github.com/ebensing)
* added; promise support to geoSearch #1614 [ebensing](https://github.com/ebensing)
* added; promise support for geoNear #1614 [ebensing](https://github.com/ebensing)
* fixed; setters not firing on null values #1445 [ebensing](https://github.com/ebensing)
* fixed; handle another versioning edge case #1520
* fixed; excluding subdocument fields #1280 [ebensing](https://github.com/ebensing)
* fixed; allow array properties to be set to null with findOneAndUpdate [aheuermann](https://github.com/aheuermann)
* fixed; subdocuments now use own toJSON opts #1376 [ebensing](https://github.com/ebensing)
* fixed; model#geoNear fulfills promise when results empty #1658 [ebensing](https://github.com/ebensing)
* fixed; utils.merge no longer overrides props and methods #1655 [j](https://github.com/j)
* fixed; subdocuments now use their own transform #1412 [ebensing](https://github.com/ebensing)
* make; suppress warning msg in test
* docs; state which branch is stable/unstable
* docs; mention that middleware does not run on Models
* tests; add script for continuously running tests
* tests; fixed versioning tests
* benchmarks; updated for pull requests
3.7.2 (unstable) / 2013-08-15
==================
* fixed; model.remove() removes only what is necessary #1649
* fixed; update() now only runs with cb or explicit true #1644
* tests; race conditions in tests
* website; update guide
3.7.1 (unstable) / 2013-08-13
=============================
* updated; driver to 1.3.18 (fixes memory leak)
* added; connection.useDb() #1124 [ebensing](https://github.com/ebensing)
* added; promise support to model.mapReduce()
* added; promise support to model.ensureIndexes()
* added; promise support to model.populate()
* fixed; casting ref docs on creation #1606 [ebensing](https://github.com/ebensing)
* fixed; model.update "overwrite" option works as documented
* fixed; query#remove() works as documented
* fixed; "limit" correctly applies to individual items on population #1490 [ebensing](https://github.com/ebensing)
* fixed; issue with positional operator on ref docs #1572 [ebensing](https://github.com/ebensing)
* fixed; benchmarks to actually output valid json
* tests; added for nested and/or queries
* tests; close some test connections
* tests; validate db contents
* tests; remove .only
* tests; close some test connections
* tests; validate db contents
* tests; remove .only
* tests; replace deprecated method names
* tests; convert id to string
* docs; promise.fulfill()
3.7.0 (unstable) / 2013-08-05
===================
* changed; query.within getter is now a method -> query.within()
* changed; query.intersects getter is now a method -> query.intersects()
* deprecated; promise#addBack (use promise#onResolve)
* deprecated; promise#complete (use promise#fulfill)
* deprecated; promise#addCallback (use promise#onFulFill)
* deprecated; promise#addErrback (use promise#onReject)
* deprecated; query.nearSphere() (use query.near)
* deprecated; query.center() (use query.circle)
* deprecated; query.centerSphere() (use query.circle)
* deprecated; query#slaveOk (use query#read)
* removed; namedscope (undocumented and broken) #679 #642 #455 #379
* added; benchmarks [ebensing](https://github.com/ebensing)
* added; publicly exposed connection states #1585
* added; $geoWithin support #1529 $1455 [ebensing](https://github.com/ebensing)
* added; query method chain validation
* added; model.update `overwrite` option
* added; model.geoNear() support #1563 [ebensing](https://github.com/ebensing)
* added; model.geoSearch() support #1560 [ebensing](https://github.com/ebensing)
* added; MongooseBuffer#subtype()
* added; model.create() now returns a promise #1340
* added; support for `awaitdata` query option
* added; pass the doc to doc.remove() callback #1419 [JoeWagner](https://github.com/JoeWagner)
* added; aggregation query builder #1404 [njoyard](https://github.com/njoyard)
* updated; integrate mquery #1562 [ebensing](https://github.com/ebensing)
* updated; error msg in doc.save() #1595
* updated; bump driver to 1.3.15
* updated; mpromise 0.3.0
* updated; sliced 0.0.5
* tests; fix sharding tests for MongoDB 2.4.5
* tests; now 4-5 seconds faster
* tests; fix race condition
* docs; fix readme spelling #1483 [yorchopolis](https://github.com/yorchopolis)
* docs; fixed up the README and examples [ebensing](https://github.com/ebensing)
* website; add unstable docs
* website; many improvements
* website; fix copyright #1439
* website; server.js -> static.js #1546 [nikmartin](https://github.com/nikmartin)
* examples; improved and expanded [ebensing](https://github.com/ebensing)
3.6.20 (stable) / 2013-09-23
===================
* fixed; repopulating modified populated paths #1697
* fixed; doc.equals w/ _id false #1687
* fixed; strict mode warning #1686
* docs; near/nearSphere
3.6.19 (stable) / 2013-09-04
==================
* fixed; population field selection w/ strings #1669
* docs; Date method caveats #1598
3.6.18 (stable) / 2013-08-22
===================
* updated; warn when using an unstable version of mongoose
* updated; mocha to 1.12.0
* updated; mongodb driver to 1.3.19 (fix error swallowing behavior)
* fixed; setters not firing on null values #1445 [ebensing](https://github.com/ebensing)
* fixed; properly exclude subdocument fields #1280 [ebensing](https://github.com/ebensing)
* fixed; cast error in findAndModify #1643 [aheuermann](https://github.com/aheuermann)
* website; update guide
* website; added documentation for safe:false and versioning interaction
* docs; mention that middleware dont run on Models
* docs; fix indexes link
* make; suppress warning msg in test
* tests; moar
3.6.17 / 2013-08-13
===================
* updated; driver to 1.3.18 (fixes memory leak)
* fixed; casting ref docs on creation #1606
* docs; query options
3.6.16 / 2013-08-08
===================
* added; publicly expose connection states #1585
* fixed; limit applies to individual items on population #1490 [ebensing](https://github.com/ebensing)
* fixed; positional operator casting in updates #1572 [ebensing](https://github.com/ebensing)
* updated; MongoDB driver to 1.3.17
* updated; sliced to 0.0.5
* website; tweak homepage
* tests; fixed + added
* docs; fix some examples
* docs; multi-mongos support details
* docs; auto open browser after starting static server
3.6.15 / 2013-07-16
==================
* added; mongos failover support #1037
* updated; make schematype return vals return self #1580
* docs; add note to model.update #571
* docs; document third param to document.save callback #1536
* tests; tweek mongos test timeout
3.6.14 / 2013-07-05
===================
* updated; driver to 1.3.11
* fixed; issue with findOneAndUpdate not returning null on upserts #1533 [ebensing](https://github.com/ebensing)
* fixed; missing return statement in SchemaArray#$geoIntersects() #1498 [bsrykt](https://github.com/bsrykt)
* fixed; wrong isSelected() behavior #1521 [kyano](https://github.com/kyano)
* docs; note about toObject behavior during save()
* docs; add callbacks details #1547 [nikmartin](https://github.com/nikmartin)
3.6.13 / 2013-06-27
===================
* fixed; calling model.distinct without conditions #1541
* fixed; regression in Query#count() #1542
* now working on 3.6.13
3.6.12 / 2013-06-25
===================
* updated; driver to 1.3.10
* updated; clearer capped collection error message #1509 [bitmage](https://github.com/bitmage)
* fixed; MongooseBuffer subtype loss during casting #1517 [zedgu](https://github.com/zedgu)
* fixed; docArray#id when doc.id is disabled #1492
* fixed; docArray#id now supports matches on populated arrays #1492 [pgherveou](https://github.com/pgherveou)
* website; fix example
* website; improve _id disabling example
* website; fix typo #1494 [dejj](https://github.com/dejj)
* docs; added a 'Requesting new features' section #1504 [shovon](https://github.com/shovon)
* docs; improve subtypes description
* docs; clarify _id disabling
* docs: display by alphabetical order the methods list #1508 [nicolasleger](https://github.com/nicolasleger)
* tests; refactor isSelected checks
* tests; remove pointless test
* tests; fixed timeouts
3.6.11 / 2013-05-15
===================
* updated; driver to 1.3.5
* fixed; compat w/ Object.create(null) #1484 #1485
* fixed; cloning objects w/ missing constructors
* fixed; prevent multiple min number validators #1481 [nrako](https://github.com/nrako)
* docs; add doc.increment() example
* docs; add $size example
* docs; add "distinct" example
3.6.10 / 2013-05-09
==================
* update driver to 1.3.3
* fixed; increment() works without other changes #1475
* website; fix links to posterous
* docs; fix link #1472
3.6.9 / 2013-05-02
==================
* fixed; depopulation of mixed documents #1471
* fixed; use of $options in array #1462
* tests; fix race condition
* docs; fix default example
3.6.8 / 2013-04-25
==================
* updated; driver to 1.3.0
* fixed; connection.model should retain options #1458 [vedmalex](https://github.com/vedmalex)
* tests; 4-5 seconds faster
3.6.7 / 2013-04-19
==================
* fixed; population regression in 3.6.6 #1444
3.6.6 / 2013-04-18
==================
* fixed; saving populated new documents #1442
* fixed; population regession in 3.6.5 #1441
* website; fix copyright #1439
3.6.5 / 2013-04-15
==================
* fixed; strict:throw edge case using .set(path, val)
* fixed; schema.pathType() on some numbericAlpha paths
* fixed; numbericAlpha path versioning
* fixed; setting nested mixed paths #1418
* fixed; setting nested objects with null prop #1326
* fixed; regression in v3.6 population performance #1426 [vedmalex](https://github.com/vedmalex)
* fixed; read pref typos #1422 [kyano](https://github.com/kyano)
* docs; fix method example
* website; update faq
* website; add more deep links
* website; update poolSize docs
* website; add 3.6 release notes
* website; note about keepAlive
3.6.4 / 2013-04-03
==================
* fixed; +field conflict with $slice #1370
* fixed; nested deselection conflict #1333
* fixed; RangeError in ValidationError.toString() #1296
* fixed; do not save user defined transforms #1415
* tests; fix race condition
3.6.3 / 2013-04-02
==================
* fixed; setting subdocuments deeply nested fields #1394
* fixed; regression: populated streams #1411
* docs; mention hooks/validation with findAndModify
* docs; mention auth
* docs; add more links
* examples; add document methods example
* website; display "see" links for properties
* website; clean up homepage
3.6.2 / 2013-03-29
==================
* fixed; corrupted sub-doc array #1408
* fixed; document#update returns a Query #1397
* docs; readpref strategy
3.6.1 / 2013-03-27
==================
* added; populate support to findAndModify varients #1395
* added; text index type to schematypes
* expose allowed index types as Schema.indexTypes
* fixed; use of `setMaxListeners` as path
* fixed; regression in node 0.6 on docs with > 10 arrays
* fixed; do not alter schema arguments #1364
* fixed; subdoc#ownerDocument() #1385
* website; change search id
* website; add search from google [jackdbernier](https://github.com/jackdbernier)
* website; fix link
* website; add 3.5.x docs release
* website; fix link
* docs; fix geometry
* docs; hide internal constructor
* docs; aggregation does not cast arguments #1399
* docs; querystream options
* examples; added for population
3.6.0 / 2013-03-18
==================
* changed; cast 'true'/'false' to boolean #1282 [mgrach](https://github.com/mgrach)
* changed; Buffer arrays can now contain nulls
* added; QueryStream transform option
* added; support for authSource driver option
* added; {mongoose,db}.modelNames()
* added; $push w/ $slice,$sort support (MongoDB 2.4)
* added; hashed index type (MongoDB 2.4)
* added; support for mongodb 2.4 geojson (MongoDB 2.4)
* added; value at time of validation error
* added; support for object literal schemas
* added; bufferCommands schema option
* added; allow auth option in connections #1360 [geoah](https://github.com/geoah)
* added; performance improvements to populate() [263ece9](https://github.com/LearnBoost/mongoose/commit/263ece9)
* added; allow adding uncasted docs to populated arrays and properties #570
* added; doc#populated(path) stores original populated _ids
* added; lean population #1260
* added; query.populate() now accepts an options object
* added; document#populate(opts, callback)
* added; Model.populate(docs, opts, callback)
* added; support for rich nested path population
* added; doc.array.remove(value) subdoc with _id value support #1278
* added; optionally allow non-strict sets and updates
* added; promises/A+ comformancy with [mpromise](https://github.com/aheckmann/mpromise)
* added; promise#then
* added; promise#end
* fixed; use of `model` as doc property
* fixed; lean population #1382
* fixed; empty object mixed defaults #1380
* fixed; populate w/ deselected _id using string syntax
* fixed; attempted save of divergent populated arrays #1334 related
* fixed; better error msg when attempting toObject as property name
* fixed; non population buffer casting from doc
* fixed; setting populated paths #570
* fixed; casting when added docs to populated arrays #570
* fixed; prohibit updating arrays selected with $elemMatch #1334
* fixed; pull / set subdoc combination #1303
* fixed; multiple bg index creation #1365
* fixed; manual reconnection to single mongod
* fixed; Constructor / version exposure #1124
* fixed; CastError race condition
* fixed; no longer swallowing misuse of subdoc#invalidate()
* fixed; utils.clone retains RegExp opts
* fixed; population of non-schema property
* fixed; allow updating versionKey #1265
* fixed; add EventEmitter props to reserved paths #1338
* fixed; can now deselect populated doc _ids #1331
* fixed; properly pass subtype to Binary in MongooseBuffer
* fixed; casting _id from document with non-ObjectId _id
* fixed; specifying schema type edge case { path: [{type: "String" }] }
* fixed; typo in schemdate #1329 [jplock](https://github.com/jplock)
* updated; driver to 1.2.14
* updated; muri to 0.3.1
* updated; mpromise to 0.2.1
* updated; mocha 1.8.1
* updated; mpath to 0.1.1
* deprecated; pluralization will die in 4.x
* refactor; rename private methods to something unusable as doc properties
* refactor MongooseArray#remove
* refactor; move expires index to SchemaDate #1328
* refactor; internal document properties #1171 #1184
* tests; added
* docs; indexes
* docs; validation
* docs; populate
* docs; populate
* docs; add note about stream compatibility with node 0.8
* docs; fix for private names
* docs; Buffer -> mongodb.Binary #1363
* docs; auth options
* docs; improved
* website; update FAQ
* website; add more api links
* website; add 3.5.x docs to prior releases
* website; Change mongoose-types to an active repo [jackdbernier](https://github.com/jackdbernier)
* website; compat with node 0.10
* website; add news section
* website; use T for generic type
* benchmark; make adjustable
3.6.0rc1 / 2013-03-12
======================
* refactor; rename private methods to something unusable as doc properties
* added; {mongoose,db}.modelNames()
* added; $push w/ $slice,$sort support (MongoDB 2.4)
* added; hashed index type (MongoDB 2.4)
* added; support for mongodb 2.4 geojson (MongoDB 2.4)
* added; value at time of validation error
* added; support for object literal schemas
* added; bufferCommands schema option
* added; allow auth option in connections #1360 [geoah](https://github.com/geoah)
* fixed; lean population #1382
* fixed; empty object mixed defaults #1380
* fixed; populate w/ deselected _id using string syntax
* fixed; attempted save of divergent populated arrays #1334 related
* fixed; better error msg when attempting toObject as property name
* fixed; non population buffer casting from doc
* fixed; setting populated paths #570
* fixed; casting when added docs to populated arrays #570
* fixed; prohibit updating arrays selected with $elemMatch #1334
* fixed; pull / set subdoc combination #1303
* fixed; multiple bg index creation #1365
* fixed; manual reconnection to single mongod
* fixed; Constructor / version exposure #1124
* fixed; CastError race condition
* fixed; no longer swallowing misuse of subdoc#invalidate()
* fixed; utils.clone retains RegExp opts
* fixed; population of non-schema property
* fixed; allow updating versionKey #1265
* fixed; add EventEmitter props to reserved paths #1338
* fixed; can now deselect populated doc _ids #1331
* updated; muri to 0.3.1
* updated; driver to 1.2.12
* updated; mpromise to 0.2.1
* deprecated; pluralization will die in 4.x
* docs; Buffer -> mongodb.Binary #1363
* docs; auth options
* docs; improved
* website; add news section
* benchmark; make adjustable
3.6.0rc0 / 2013-02-03
======================
* changed; cast 'true'/'false' to boolean #1282 [mgrach](https://github.com/mgrach)
* changed; Buffer arrays can now contain nulls
* fixed; properly pass subtype to Binary in MongooseBuffer
* fixed; casting _id from document with non-ObjectId _id
* fixed; specifying schema type edge case { path: [{type: "String" }] }
* fixed; typo in schemdate #1329 [jplock](https://github.com/jplock)
* refactor; move expires index to SchemaDate #1328
* refactor; internal document properties #1171 #1184
* added; performance improvements to populate() [263ece9](https://github.com/LearnBoost/mongoose/commit/263ece9)
* added; allow adding uncasted docs to populated arrays and properties #570
* added; doc#populated(path) stores original populated _ids
* added; lean population #1260
* added; query.populate() now accepts an options object
* added; document#populate(opts, callback)
* added; Model.populate(docs, opts, callback)
* added; support for rich nested path population
* added; doc.array.remove(value) subdoc with _id value support #1278
* added; optionally allow non-strict sets and updates
* added; promises/A+ comformancy with [mpromise](https://github.com/aheckmann/mpromise)
* added; promise#then
* added; promise#end
* updated; mocha 1.8.1
* updated; muri to 0.3.0
* updated; mpath to 0.1.1
* updated; docs
3.5.16 / 2013-08-13
===================
* updated; driver to 1.3.18
3.5.15 / 2013-07-26
==================
* updated; sliced to 0.0.5
* updated; driver to 1.3.12
* fixed; regression in Query#count() due to driver change
* tests; fixed timeouts
* tests; handle differing test uris
3.5.14 / 2013-05-15
===================
* updated; driver to 1.3.5
* fixed; compat w/ Object.create(null) #1484 #1485
* fixed; cloning objects missing constructors
* fixed; prevent multiple min number validators #1481 [nrako](https://github.com/nrako)
3.5.13 / 2013-05-09
==================
* update driver to 1.3.3
* fixed; use of $options in array #1462
3.5.12 / 2013-04-25
===================
* updated; driver to 1.3.0
* fixed; connection.model should retain options #1458 [vedmalex](https://github.com/vedmalex)
* fixed; read pref typos #1422 [kyano](https://github.com/kyano)
3.5.11 / 2013-04-03
==================
* fixed; +field conflict with $slice #1370
* fixed; RangeError in ValidationError.toString() #1296
* fixed; nested deselection conflict #1333
* remove time from Makefile
3.5.10 / 2013-04-02
==================
* fixed; setting subdocuments deeply nested fields #1394
* fixed; do not alter schema arguments #1364
3.5.9 / 2013-03-15
==================
* updated; driver to 1.2.14
* added; support for authSource driver option (mongodb 2.4)
* added; QueryStream transform option (node 0.10 helper)
* fixed; backport for saving required populated buffers
* fixed; pull / set subdoc combination #1303
* fixed; multiple bg index creation #1365
* test; added for saveable required populated buffers
* test; added for #1365
* test; add authSource test
3.5.8 / 2013-03-12
==================
* added; auth option in connection [geoah](https://github.com/geoah)
* fixed; CastError race condition
* docs; add note about stream compatibility with node 0.8
3.5.7 / 2013-02-22
==================
* updated; driver to 1.2.13
* updated; muri to 0.3.1 #1347
* fixed; utils.clone retains RegExp opts #1355
* fixed; deepEquals RegExp support
* tests; fix a connection test
* website; clean up docs [afshinm](https://github.com/afshinm)
* website; update homepage
* website; migragtion: emphasize impact of strict docs #1264
3.5.6 / 2013-02-14
==================
* updated; driver to 1.2.12
* fixed; properly pass Binary subtype
* fixed; add EventEmitter props to reserved paths #1338
* fixed; use correct node engine version
* fixed; display empty docs as {} in log output #953 follow up
* improved; "bad $within $box argument" error message
* populate; add unscientific benchmark
* website; add stack overflow to help section
* website; use better code font #1336 [risseraka](https://github.com/risseraka)
* website; clarify where help is available
* website; fix source code links #1272 [floatingLomas](https://github.com/floatingLomas)
* docs; be specific about _id schema option #1103
* docs; add ensureIndex error handling example
* docs; README
* docs; CONTRIBUTING.md
3.5.5 / 2013-01-29
==================
* updated; driver to 1.2.11
* removed; old node < 0.6x shims
* fixed; documents with Buffer _ids equality
* fixed; MongooseBuffer properly casts numbers
* fixed; reopening closed connection on alt host/port #1287
* docs; fixed typo in Readme #1298 [rened](https://github.com/rened)
* docs; fixed typo in migration docs [Prinzhorn](https://github.com/Prinzhorn)
* docs; fixed incorrect annotation in SchemaNumber#min [bilalq](https://github.com/bilalq)
* docs; updated
3.5.4 / 2013-01-07
==================
* changed; "_pres" & "_posts" are now reserved pathnames #1261
* updated; driver to 1.2.8
* fixed; exception when reopening a replica set. #1263 [ethankan](https://github.com/ethankan)
* website; updated
3.5.3 / 2012-12-26
==================
* added; support for geo object notation #1257
* fixed; $within query casting with arrays
* fixed; unix domain socket support #1254
* updated; driver to 1.2.7
* updated; muri to 0.0.5
3.5.2 / 2012-12-17
==================
* fixed; using auth with replica sets #1253
3.5.1 / 2012-12-12
==================
* fixed; regression when using subdoc with `path` as pathname #1245 [daeq](https://github.com/daeq)
* fixed; safer db option checks
* updated; driver to 1.2.5
* website; add more examples
* website; clean up old docs
* website; fix prev release urls
* docs; clarify streaming with HTTP responses
3.5.0 / 2012-12-10
==================
* added; paths to CastErrors #1239
* added; support for mongodb connection string spec #1187
* added; post validate event
* added; Schema#get (to retrieve schema options)
* added; VersionError #1071
* added; npmignore [hidekiy](https://github.com/hidekiy)
* update; driver to 1.2.3
* fixed; stackoverflow in setter #1234
* fixed; utils.isObject()
* fixed; do not clobber user specified driver writeConcern #1227
* fixed; always pass current document to post hooks
* fixed; throw error when user attempts to overwrite a model
* fixed; connection.model only caches on connection #1209
* fixed; respect conn.model() creation when matching global model exists #1209
* fixed; passing model name + collection name now always honors collection name
* fixed; setting virtual field to an empty object #1154
* fixed; subclassed MongooseErrors exposure, now available in mongoose.Error.xxxx
* fixed; model.remove() ignoring callback when executed twice [daeq](https://github.com/daeq) #1210
* docs; add collection option to schema api docs #1222
* docs; NOTE about db safe options
* docs; add post hooks docs
* docs; connection string options
* docs; middleware is not executed with Model.remove #1241
* docs; {g,s}etter introspection #777
* docs; update validation docs
* docs; add link to plugins page
* docs; clarify error returned by unique indexes #1225
* docs; more detail about disabling autoIndex behavior
* docs; add homepage section to package (npm docs mongoose)
* docs; more detail around collection name pluralization #1193
* website; add .important css
* website; update models page
* website; update getting started
* website; update quick start
3.4.0 / 2012-11-10
==================
* added; support for generic toJSON/toObject transforms #1160 #1020 #1197
* added; doc.set() merge support #1148 [NuORDER](https://github.com/NuORDER)
* added; query#add support #1188 [aleclofabbro](https://github.com/aleclofabbro)
* changed; adding invalid nested paths to non-objects throws 4216f14
* changed; fixed; stop invalid function cloning (internal fix)
* fixed; add query $and casting support #1180 [anotheri](https://github.com/anotheri)
* fixed; overwriting of query arguments #1176
* docs; fix expires examples
* docs; transforms
* docs; schema `collection` option docs [hermanjunge](https://github.com/hermanjunge)
* website; updated
* tests; added
3.3.1 / 2012-10-11
==================
* fixed; allow goose.connect(uris, dbname, opts) #1144
* docs; persist API private checked state across page loads
3.3.0 / 2012-10-10
==================
* fixed; passing options as 2nd arg to connect() #1144
* fixed; race condition after no-op save #1139
* fixed; schema field selection application in findAndModify #1150
* fixed; directly setting arrays #1126
* updated; driver to 1.1.11
* updated; collection pluralization rules [mrickard](https://github.com/mrickard)
* tests; added
* docs; updated
3.2.2 / 2012-10-08
==================
* updated; driver to 1.1.10 #1143
* updated; use sliced 0.0.3
* fixed; do not recast embedded docs unnecessarily
* fixed; expires schema option helper #1132
* fixed; built in string setters #1131
* fixed; debug output for Dates/ObjectId properties #1129
* docs; fixed Javascript syntax error in example [olalonde](https://github.com/olalonde)
* docs; fix toJSON example #1137
* docs; add ensureIndex production notes
* docs; fix spelling
* docs; add blogposts about v3
* website; updated
* removed; undocumented inGroupsOf util
* tests; added
3.2.1 / 2012-09-28
==================
* fixed; remove query batchSize option default of 1000 https://github.com/learnboost/mongoose/commit/3edaa8651
* docs; updated
* website; updated
3.2.0 / 2012-09-27
==================
* added; direct array index assignment with casting support `doc.array.set(index, value)`
* fixed; QueryStream#resume within same tick as pause() #1116
* fixed; default value validatation #1109
* fixed; array splice() not casting #1123
* fixed; default array construction edge case #1108
* fixed; query casting for inequalities in arrays #1101 [dpatti](https://github.com/dpatti)
* tests; added
* website; more documentation
* website; fixed layout issue #1111 [SlashmanX](https://github.com/SlashmanX)
* website; refactored [guille](https://github.com/guille)
3.1.2 / 2012-09-10
==================
* added; ReadPreferrence schema option #1097
* updated; driver to 1.1.7
* updated; default query batchSize to 1000