Newer
Older
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
* fix(aggregate): allow passing obj to .unwind() #4239
* docs(document): add return statements to transform examples #1963
4.5.3 / 2016-06-30
==================
* fix(query): pass correct options to QueryCursor #4277 #4266
* fix(querycursor): handle lean option correctly #4276 [gchudnov](https://github.com/gchudnov)
* fix(document): fix error handling when no error occurred #4275
* fix(error): use strict mode for version error #4272
* docs(populate): fix crashing compilation for populate.jade #4267
* fix(populate): support `justOne` option for populate virtuals #4263
* fix(populate): ensure model param gets used for populate virtuals #4261 #4243
* fix(querycursor): add ability to properly close the cursor #4258
* docs(model): correct link to Document #4250
* docs(populate): correct path for refPath populate #4240
* fix(document): support validator.isEmail as validator #4064
4.5.2 / 2016-06-24
==================
* fix(connection): add checks for collection presence for `onOpen` and `onClose` #4259 [nodkz](https://github.com/nodkz)
* fix(cast): allow strings for $type operator #4256
* fix(querycursor): support lean() #4255 [pyramation](https://github.com/pyramation)
* fix(aggregate): allow setting noCursorTimeout option #4241
* fix(document): handle undefined for Array.pull #4222 [Sebmaster](https://github.com/Sebmaster)
* fix(connection): ensure promise.catch() catches initial connection error #4135
* fix(document): show additional context for VersionError #2633
4.5.1 / 2016-06-18
==================
* fix(model): ensure wrapped insertMany() returns a promise #4237
* fix(populate): dont overwrite populateVirtuals when populating multiple paths #4234
* docs(model): clarify relationship between create() and save() #4233
* fix(types): handle option param in subdoc remove() #4231 [tdebarochez](https://github.com/tdebarochez)
* fix(document): dedupe modified paths #4226 #4223 [adambuczynski](https://github.com/adambuczynski)
* fix(model): don't modify user-provided options object #4221
* fix(document): handle setting nested path to empty object #4218 #4182
* fix(document): clean subpaths when removing single nested #4216
* fix(document): don't force transform on subdocs with inspect #4213
* fix(error): allow setting .messages object #4207
4.5.0 / 2016-06-13
==================
* feat(query): added Query.prototype.catch() #4215 #4173 [adambuczynski](https://github.com/adambuczynski)
* feat(query): add Query.prototype.cursor() as a .stream() alternative #4117 #3637 #1907
* feat(document): add markUnmodified() function #4092 [vincentcr](https://github.com/vincentcr)
* feat(aggregate): convert aggregate object to a thenable #3995 #3946 [megagon](https://github.com/megagon)
* perf(types): remove defineProperties call for array (**Note:** Because of this, a mongoose array will no longer `assert.deepEqual()` a plain old JS array) #3886
* feat(model): add hooks for insertMany() #3846
* feat(schema): add support for custom query methods #3740 #2372
* feat(drivers): emit error on 'serverClosed' because that means that reconnect failed #3615
* feat(model): emit error event when callback throws exception #3499
* feat(model): inherit options from discriminator base schema #3414 #1818
* feat(populate): expose mongoose-populate-virtuals inspired populate API #2562
* feat(document): trigger remove hooks on subdocs when removing parent #2348
* feat(schema): add support for express-style error handling middleware #2284
* fix(model): disallow setting discriminator key #2041
* feat(schema): add support for nested arrays #1361
4.4.20 / 2016-06-05
===================
* docs: clarify command buffering when using driver directly #4195
* fix(promise): correct broken mpromise .catch() #4189
* fix(document): clean modified subpaths when set path to empty obj #4182
* fix(query): support minDistance with query casting and `.near()` #4179
* fix(model): remove unnecessary .save() promise #4177
* fix(schema): cast all valid ObjectId strings to object ids #3365
* docs: remove unclear "unsafe" term in query docs #3282
4.4.19 / 2016-05-21
===================
* fix(model): handle insertMany if timestamps not set #4171
4.4.18 / 2016-05-21
===================
* docs: add missing period #4170 [gitname](https://github.com/gitname)
* docs: change build badge to svg #4158 [a0viedo](https://github.com/a0viedo)
* fix(model): update timestamps when setting `createdAt` #4155
* fix(utils): make sure to require in document properly #4152
* fix(model): throw overwrite error when discriminator name conflicts #4148
4.4.17 / 2016-05-13
===================
* docs: remove repetition in QueryStream docs #4147 [hugoabonizio](https://github.com/hugoabonizio)
* fix(document): dont double-validate doc array elements #4145
* fix(document): call required function with correct scope #4142 [JedWatson](https://github.com/JedWatson)
4.4.16 / 2016-05-09
===================
* refactor(document): use function reference #4133 [dciccale](https://github.com/dciccale)
* docs(querystream): clarify `destroy()` and close event #4126 [AnthonyCC](https://github.com/AnthonyCC)
* test: make before hook fail fast if it can't connect #4121
* docs: add description of CastError constructor params #4120
* fix(schematype): ensure single embedded defaults have $parent #4115
* fix(document): mark nested paths for validation #4111
* fix(schema): make sure element is always a subdoc in doc array validation #3816
4.4.15 / 2016-05-06
===================
* fix(schema): support overwriting array default #4109
* fix(populate): assign values when resolving each populate #4104
* fix(aggregate): dont send async option to server #4101
* fix(model): ensure isNew set to false after insertMany #4099
* fix(connection): emit on error if listeners and no callback #4098
* fix(document): treat required fn that returns false as required: false #4094
4.4.14 / 2016-04-27
===================
* fix: upgrade mongodb -> 2.1.18 #4102
* feat(connection): allow setting mongos as a uri query param #4093 #4035 [burtonjc](https://github.com/burtonjc)
* fix(populate): make sure to use correct assignment order for each model #4073
* fix(schema): add complete set of geospatial operators for single embedded subdocs #4014
3.8.40 / 2016-04-24
===================
* upgraded; mquery -> 1.10.0 #3989
4.4.13 / 2016-04-21
===================
* docs: add docs favicons #4082 [robertjustjones](https://github.com/robertjustjones)
* docs(model): correct Model.remove() return value #4075 [Jokero](https://github.com/Jokero)
* fix(query): add $geoWithin query casting for single embedded docs #4044
* fix(schema): handle setting trim option to falsy #4042
* fix(query): handle setDefaultsOnInsert with empty update #3835
4.4.12 / 2016-04-08
===================
* docs(query): document context option for update and findOneAndUpdate #4055
* docs(query): correct link to $geoWithin docs #4050
* fix(project): upgrade to mongodb driver 2.1.16 #4048 [schmalliso](https://github.com/schmalliso)
* docs(validation): fix validation docs #4028
* fix(types): improve .id() check for document arrays #4011
* fix(query): remove premature return when using $rename #3171
* docs(connection): clarify relationship between models and connections #2157
4.4.11 / 2016-04-03
===================
* fix: upgrade to mongodb driver 2.1.14 #4036 #4030 #3945
* fix(connection): allow connecting with { mongos: true } to handle query params #4032 [burtonjc](https://github.com/burtonjc)
* docs(connection): add autoIndex example #4026 [tilleps](https://github.com/tilleps)
* fix(query): handle passRawResult option when zero results #4023
* fix(populate): clone options before modifying #4022
* docs: add missing whitespace #4019 [chenxsan](https://github.com/chenxsan)
* chore: upgrade to ESLint 2.4.0 #4015 [ChristianMurphy](https://github.com/ChristianMurphy)
* fix(types): single nested subdocs get ids by default #4008
* chore(project): add dependency status badge #4007 [Maheshkumar-Kakade](http://github.com/Maheshkumar-Kakade)
* fix: make sure timestamps don't trigger unnecessary updates #4005 #3991 [tommarien](https://github.com/tommarien)
* fix(document): inspect inherits schema options #4001
* fix(populate): don't mark populated path as modified if setting to object w/ same id #3992
* fix(document): support kind argument to invalidate #3965
4.4.10 / 2016-03-24
===================
* fix(document): copy isNew when copying a document #3982
* fix(document): don't override defaults with undefined keys #3981
* fix(populate): merge multiple deep populate options for the same path #3974
4.4.9 / 2016-03-22
==================
* fix: upgrade mongodb -> 2.1.10 re https://jira.mongodb.org/browse/NODE-679 #4010
* docs: add syntax highlighting for acquit examples #3975
4.4.8 / 2016-03-18
==================
* docs(aggregate): clarify promises #3990 [megagon](https://github.com/megagon)
* fix: upgrade mquery -> 1.10 #3988 [matskiv](https://github.com/matskiv)
* feat(connection): 'all' event for repl sets #3986 [xizhibei](https://github.com/xizhibei)
* docs(types): clarify Array.pull #3985 [seriousManual](https://github.com/seriousManual)
* feat(query): support array syntax for .sort() via mquery 1.9 #3980
* fix(populate): support > 3 level nested populate #3973
* fix: MongooseThenable exposes connection correctly #3972
* docs(connection): add note about reconnectTries and reconnectInterval #3969
* feat(document): invalidate returns the new validationError #3964
* fix(query): .eq() as shorthand for .equals #3953 [Fonger](https://github.com/Fonger)
* docs(connection): clarify connection string vs passed options #3941
* docs(query): select option for findOneAndUpdate #3933
* fix(error): ValidationError.properties no longer enumerable #3925
* docs(validation): clarify how required validators work with nested schemas #3915
* fix: upgrade mongodb driver -> 2.1.8 to make partial index errors more sane #3864
4.4.7 / 2016-03-11
==================
* fix(query): stop infinite recursion caused by merging a mongoose buffer #3961
* fix(populate): handle deep populate array -> array #3954
* fix(schema): allow setting timestamps with .set() #3952 #3951 #3907 [Fonger](https://github.com/Fonger)
* fix: MongooseThenable doesn't overwrite constructors #3940
* fix(schema): don't cast boolean to date #3935
* fix(drivers): support sslValidate in connection string #3929
* fix(types): correct markModified() for single nested subdocs #3910
* fix(drivers): catch and report any errors that occur in driver methods #3906
* fix(populate): get subpopulate model correctly when array under nested #3904
* fix(document): allow fields named 'pre' and 'post' #3902
* docs(query): clarify runValidators and setDefaultsOnInsert options #3892
* docs(validation): show how to use custom required messages in schema #2616
4.4.6 / 2016-03-02
==================
* fix: upgrade mongodb driver to 2.1.7 #3938
* docs: fix plugins link #3917 #3909 [fbertone](https://github.com/fbertone)
* fix(query): sort+select with count works #3914
* fix(query): improve mergeUpdate's ability to handle nested docs #3890
4.4.5 / 2016-02-24
==================
* fix(query): ability to select a length field (upgrade to mquery 1.7.0) #3903
* fix: include nested CastError as reason for array CastError #3897 [kotarou3](https://github.com/kotarou3)
* fix(schema): check for doc existence before taking fields #3889
* feat(schema): useNestedStrict option to take nested strict mode for update #3883
* docs(validation): clarify relationship between required and checkRequired #3822
* docs(populate): dynamic reference docs #3809
* docs: expand dropdown when clicking on file name #3807
* docs: plugins.mongoosejs.io is up #3127
* fix(schema): ability to add a virtual with same name as removed path #2398
4.4.4 / 2016-02-17
==================
* fix(schema): handle field selection when casting single nested subdocs #3880
* fix(populate): populating using base model with multiple child models in result #3878
* fix: ability to properly use return value of `mongoose.connect()` #3874
* fix(populate): dont hydrate populated subdoc if lean option set #3873
* fix(connection): dont re-auth if already connected with useDb #3871
* docs: cover how to set underlying driver's promise lib #3869
* fix(document): handle conflicting names in validation errors with subdocs #3867
* fix(populate): set undefined instead of null consistently when populate couldn't find results #3859
* docs: link to `execPopulate()` in `doc.populate()` docs #3836
* docs(plugin): link to the `mongoose.plugin()` function #3732
4.4.3 / 2016-02-09
==================
* fix: upgrade to mongodb 2.1.6 to remove kerberos log output #3861 #3860 [cartuchogl](https://github.com/cartuchogl)
* fix: require('mongoose') is no longer a pseudo-promise #3856
* fix(query): update casting for single nested docs #3820
* fix(populate): deep populating multiple paths with same options #3808
* docs(middleware): clarify save/validate hook order #1149
4.4.2 / 2016-02-05
==================
* fix(aggregate): handle calling .cursor() with no options #3855
* fix: upgrade mongodb driver to 2.1.5 for GridFS memory leak fix #3854
* docs: fix schematype.html conflict #3853 #3850 #3843
* fix(model): bluebird unhandled rejection with ensureIndexes() on init #3837
* docs: autoIndex option for createConnection #3805
4.4.1 / 2016-02-03
==================
* fix: linting broke some cases where we use `== null` as shorthand #3852
* docs: fix up schematype.html conflict #3848 #3843 [mynameiscoffey](https://github.com/mynameiscoffey)
* fix: backwards breaking change with `.connect()` return value #3847
* docs: downgrade dox and highlight.js to fix docs build #3845
* docs: clean up typo #3842 [Flash-](https://github.com/Flash-)
* fix(document): storeShard handles undefined values #3841
* chore: more linting #3838 [TrejGun](https://github.com/TrejGun)
* fix(schema): handle `text: true` as a way to declare a text index #3824
4.4.0 / 2016-02-02
==================
* docs: fix expireAfterSeconds index option name #3831 [Flash-](https://github.com/Flash-)
* chore: run lint after test #3829 [ChristianMurphy](https://github.com/ChristianMurphy)
* chore: use power-assert instead of assert #3828 [TrejGun](https://github.com/TrejGun)
* chore: stricter lint #3827 [TrejGun](https://github.com/TrejGun)
* feat(types): casting moment to date #3813 [TrejGun](https://github.com/TrejGun)
* chore: comma-last lint for test folder #3810 [ChristianMurphy](https://github.com/ChristianMurphy)
* fix: upgrade async mpath, mpromise, muri, and sliced #3801 [TrejGun](https://github.com/TrejGun)
* fix(query): geo queries now return proper ES2015 promises #3800 [TrejGun](https://github.com/TrejGun)
* perf(types): use `Object.defineProperties()` for array #3799 [TrejGun](https://github.com/TrejGun)
* fix(model): mapReduce, ensureIndexes, remove, and save properly return ES2015 promises #3795 #3628 #3595 [TrejGun](https://github.com/TrejGun)
* docs: fixed dates in History.md #3791 [Jokero](https://github.com/Jokero)
* feat: connect, open, openSet, and disconnect return ES2015 promises #3790 #3622 [TrejGun](https://github.com/TrejGun)
* feat: custom type for int32 via mongoose-int32 npm package #3652 #3102
* feat: basic custom schema type API #995
* feat(model): `insertMany()` for more performant bulk inserts #723
4.3.7 / 2016-01-23
==================
* docs: grammar fix in timestamps docs #3786 [zclancy](https://github.com/zclancy)
* fix(document): setting nested populated docs #3783 [slamuu](https://github.com/slamuu)
* fix(document): don't call post save hooks twice for pushed docs #3780
* fix(model): handle `_id=0` correctly #3776
* docs(middleware): async post hooks #3770
* docs: remove confusing sentence #3765 [marcusmellis89](https://github.com/marcusmellis89)
3.8.39 / 2016-01-15
===================
* fixed; casting a number to a buffer #3764
* fixed; enumerating virtual property with nested objects #3743 [kusold](https://github.com/kusold)
4.3.6 / 2016-01-15
==================
* fix(types): casting a number to a buffer #3764
* fix: add "listener" to reserved keywords #3759
* chore: upgrade uglify #3757 [ChristianMurphy](https://github.com/ChristianMurphy)
* fix: broken execPopulate() in 4.3.5 #3755 #3753
* fix: ability to remove() a single embedded doc #3754
* style: comma-last in test folder #3751 [ChristianMurphy](https://github.com/ChristianMurphy)
* docs: clarify versionKey option #3747
* fix: improve colorization for arrays #3744 [TrejGun](https://github.com/TrejGun)
* fix: webpack build #3713
4.3.5 / 2016-01-09
==================
* fix(query): throw when 4th parameter to update not a function #3741 [kasselTrankos](https://github.com/kasselTrankos)
* fix(document): separate error type for setting an object to a primitive #3735
* fix(populate): Model.populate returns ES6 promise #3734
* fix(drivers): re-register event handlers after manual reconnect #3729
* docs: broken links #3727
* fix(validation): update validators run array validation #3724
* docs: clarify the need to use markModified with in-place date ops #3722
* fix(document): mark correct path as populated when manually populating array #3721
* fix(aggregate): support for array pipeline argument to append #3718 [dbkup](https://github.com/dbkup)
* docs: clarify `.connect()` callback #3705
* fix(schema): properly validate nested single nested docs #3702
* fix(types): handle setting documentarray of wrong type #3701
* docs: broken links #3700
* fix(drivers): debug output properly displays '0' #3689
3.8.38 / 2016-01-07
===================
* fixed; aggregate.append an array #3730 [dbkup](https://github.com/dbkup)
4.3.4 / 2015-12-23
==================
* fix: upgrade mongodb driver to 2.1.2 for repl set error #3712 [sansmischevia](https://github.com/sansmischevia)
* docs: validation docs typo #3709 [ivanmaeder](https://github.com/ivanmaeder)
* style: remove unused variables #3708 [ChristianMurphy](https://github.com/ChristianMurphy)
* fix(schema): duck-typing for schemas #3703 [mgcrea](https://github.com/mgcrea)
* docs: connection sample code issue #3697
* fix(schema): duck-typing for schemas #3693 [mgcrea](https://github.com/mgcrea)
* docs: clarify id schema option #3638
4.3.3 / 2015-12-18
==================
* fix(connection): properly support 'replSet' as well as 'replset' #3688 [taxilian](https://github.com/taxilian)
* fix(document): single nested doc pre hooks called before nested doc array #3687 [aliatsis](https://github.com/aliatsis)
4.3.2 / 2015-12-17
==================
* fix(document): .set() into single nested schemas #3686
* fix(connection): support 'replSet' as well as 'replset' option #3685
* fix(document): bluebird unhandled rejection when validating doc arrays #3681
* fix(document): hooks for doc arrays in single nested schemas #3680
* fix(document): post hooks for single nested schemas #3679
* fix: remove unused npm module #3674 [sybarite](https://github.com/sybarite)
* fix(model): don't swallow exceptions in nested doc save callback #3671
* docs: update keepAlive info #3667 [ChrisZieba](https://github.com/ChrisZieba)
* fix(document): strict 'throw' throws a specific mongoose error #3662
* fix: flakey test #3332
* fix(query): more robust check for RegExp #2969
4.3.1 / 2015-12-11
==================
* feat(aggregate): `.sample()` helper #3665
* fix(query): bitwise query operators with buffers #3663
* docs(migration): clarify `new` option and findByIdAndUpdate #3661
4.3.0 / 2015-12-09
==================
* feat(query): support for mongodb 3.2 bitwise query operators #3660
* style: use comma-last style consistently #3657 [ChristianMurphy](https://github.com/ChristianMurphy)
* feat: upgrade mongodb driver to 2.1.0 for full MongoDB 3.2 support #3656
* feat(aggregate): `.lookup()` helper #3532
4.2.10 / 2015-12-08
===================
* fixed; upgraded marked #3653 [ChristianMurphy](https://github.com/ChristianMurphy)
* docs; cross-db populate #3648
* docs; update mocha URL #3646 [ojhaujjwal](https://github.com/ojhaujjwal)
* fixed; call close callback asynchronously #3645
* docs; virtuals.html issue #3644 [Psarna94](https://github.com/Psarna94)
* fixed; single embedded doc casting on init #3642
* docs; validation docs improvements #3640
4.2.9 / 2015-12-02
==================
* docs; defaults docs #3625
* fix; nested numeric keys causing an embedded document crash #3623
* fix; apply path getters before virtual getters #3618
* fix; casting for arrays in single nested schemas #3616
4.2.8 / 2015-11-25
==================
* docs; clean up README links #3612 [ReadmeCritic](https://github.com/ReadmeCritic)
* fix; ESLint improvements #3605 [ChristianMurphy](https://github.com/ChristianMurphy)
* fix; assigning single nested subdocs #3601
* docs; describe custom logging functions in `mongoose.set()` docs #3557
4.2.7 / 2015-11-20
==================
* fixed; readPreference connection string option #3600
* fixed; pulling from manually populated arrays #3598 #3579
* docs; FAQ about OverwriteModelError #3597 [stcruy](https://github.com/stcruy)
* fixed; setting single embedded schemas to null #3596
* fixed; indexes for single embedded schemas #3594
* docs; clarify projection for `findOne()` #3593 [gunar](https://github.com/gunar)
* fixed; .ownerDocument() method on single embedded schemas #3589
* fixed; properly throw casterror for query on single embedded schema #3580
* upgraded; mongodb driver -> 2.0.49 for reconnect issue fix #3481
4.2.6 / 2015-11-16
==================
* fixed; ability to manually populate an array #3575
* docs; clarify `isAsync` parameter to hooks #3573
* fixed; use captureStackTrace if possible instead #3571
* fixed; crash with buffer and update validators #3565 [johnpeb](https://github.com/johnpeb)
* fixed; update casting with operators overwrite: true #3564
* fixed; validation with single embedded docs #3562
* fixed; inline docs inherit parents $type key #3560
* docs; bad grammar in populate docs #3559 [amaurymedeiros](https://github.com/amaurymedeiros)
* fixed; properly handle populate option for find() #2321
3.8.37 / 2015-11-16
===================
* fixed; use retainKeyOrder for cloning update op #3572
4.2.5 / 2015-11-09
==================
* fixed; handle setting fields in pre update hooks with exec #3549
* upgraded; ESLint #3547 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; bluebird unhandled rejections with cast errors and .exec #3543
* fixed; min/max validators handling undefined #3539
* fixed; standalone mongos connections #3537
* fixed; call `.toObject()` when setting a single nested doc #3535
* fixed; single nested docs now have methods #3534
* fixed; single nested docs with .create() #3533 #3521 [tusbar](https://github.com/tusbar)
* docs; deep populate docs #3528
* fixed; deep populate schema ref handling #3507
* upgraded; mongodb driver -> 2.0.48 for sort overflow issue #3493
* docs; clarify default ids for discriminators #3482
* fixed; properly support .update(doc) #3221
4.2.4 / 2015-11-02
==================
* fixed; upgraded `ms` package for security vulnerability #3524 [fhemberger](https://github.com/fhemberger)
* fixed; ESlint rules #3517 [ChristianMurphy](https://github.com/ChristianMurphy)
* docs; typo in aggregation docs #3513 [rafakato](https://github.com/rafakato)
* fixed; add `dontThrowCastError` option to .update() for promises #3512
* fixed; don't double-cast buffers in node 4.x #3510 #3496
* fixed; population with single embedded schemas #3501
* fixed; pre('set') hooks work properly #3479
* docs; promises guide #3441
4.2.3 / 2015-10-26
==================
* docs; remove unreferenced function in middleware.jade #3506
* fixed; handling auth with no username/password #3500 #3498 #3484 [mleanos](https://github.com/mleanos)
* fixed; more ESlint rules #3491 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; swallowing exceptions in save callback #3478
* docs; fixed broken links in subdocs guide #3477
* fixed; casting booleans to numbers #3475
* fixed; report CastError for subdoc arrays in findOneAndUpdate #3468
* fixed; geoNear returns ES6 promise #3458
4.2.2 / 2015-10-22
==================
* fixed; go back to old pluralization code #3490
4.2.1 / 2015-10-22
==================
* fixed; pluralization issues #3492 [ChristianMurphy](https://github.com/ChristianMurphy)
4.2.0 / 2015-10-22
==================
* added; support for skipVersioning for document arrays #3467 [chazmo03](https://github.com/chazmo03)
* added; ability to customize schema 'type' key #3459 #3245
* fixed; writeConcern for index builds #3455
* added; emit event when individual index build starts #3440 [objectiveSee](https://github.com/objectiveSee)
* added; 'context' option for update validators #3430
* refactor; pluralization now in separate pluralize-mongoose npm module #3415 [ChristianMurphy](https://github.com/ChristianMurphy)
* added; customizable error validation messages #3406 [geronime](https://github.com/geronime)
* added; support for passing 'minimize' option to update #3381
* added; ability to customize debug logging format #3261
* added; baseModelName property for discriminator models #3202
* added; 'emitIndexErrors' option #3174
* added; 'async' option for aggregation cursor to support buffering #3160
* added; ability to skip validation for individual save() calls #2981
* added; single embedded schema support #2689 #585
* added; depopulate function #2509
4.1.12 / 2015-10-19
===================
* docs; use readPreference instead of slaveOk for Query.setOptions docs #3471 [buunguyen](https://github.com/buunguyen)
* fixed; more helpful error when regexp contains null bytes #3456
* fixed; x509 auth issue #3454 [NoxHarmonium](https://github.com/NoxHarmonium)
3.8.36 / 2015-10-18
===================
* fixed; Make array props non-enumerable #3461 [boblauer](https://github.com/boblauer)
4.1.11 / 2015-10-12
===================
* fixed; update timestamps for update() if they're enabled #3450 [isayme](https://github.com/isayme)
* fixed; unit test error on node 0.10 #3449 [isayme](https://github.com/isayme)
* docs; timestamp option docs #3448 [isayme](https://github.com/isayme)
* docs; fix unexpected indent #3443 [isayme](https://github.com/isayme)
* fixed; use ES6 promises for Model.prototype.remove() #3442
* fixed; don't use unused 'safe' option for index builds #3439
* fixed; elemMatch casting bug #3437 #3435 [DefinitelyCarter](https://github.com/DefinitelyCarter)
* docs; schema.index docs #3434
* fixed; exceptions in save() callback getting swallowed on mongodb 2.4 #3371
4.1.10 / 2015-10-05
===================
* docs; improve virtuals docs to explain virtuals schema option #3433 [zoyaH](https://github.com/zoyaH)
* docs; MongoDB server version compatibility guide #3427
* docs; clarify that findById and findByIdAndUpdate fire hooks #3422
* docs; clean up Model.save() docs #3420
* fixed; properly handle projection with just id #3407 #3412
* fixed; infinite loop when database document is corrupted #3405
* docs; clarify remove middleware #3388
4.1.9 / 2015-09-28
==================
* docs; minlength and maxlength string validation docs #3368 #3413 [cosmosgenius](https://github.com/cosmosgenius)
* fixed; linting for infix operators #3397 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; proper casting for $all #3394
* fixed; unhandled rejection warnings with .create() #3391
* docs; clarify update validators on paths that aren't explicitly set #3386
* docs; custom validator examples #2778
4.1.8 / 2015-09-21
==================
* docs; fixed typo in example #3390 [kmctown](https://github.com/kmctown)
* fixed; error in toObject() #3387 [guumaster](https://github.com/guumaster)
* fixed; handling for casting null dates #3383 [alexmingoia](https://github.com/alexmingoia)
* fixed; passing composite ids to `findByIdAndUpdate` #3380
* fixed; linting #3376 #3375 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; added NodeJS v4 to Travis #3374 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; casting $elemMatch inside of $not #3373 [gaguirre](https://github.com/gaguirre)
* fixed; handle case where $slice is 0 #3369
* fixed; avoid running getters if path is populated #3357
* fixed; cast documents to objects when setting to a nested path #3346
4.1.7 / 2015-09-14
==================
* docs; typos in SchemaType documentation #3367 [jasson15](https://github.com/jasson15)
* fixed; MONGOOSE_DRIVER_PATH env variable again #3360
* docs; added validateSync docs #3353
* fixed; set findOne op synchronously in query #3344
* fixed; handling for `.pull()` on a documentarray without an id #3341
* fixed; use natural order for cloning update conditions #3338
* fixed; issue with strict mode casting for mixed type updates #3337
4.1.6 / 2015-09-08
==================
* fixed; MONGOOSE_DRIVER_PATH env variable #3345 [g13013](https://github.com/g13013)
* docs; global autoIndex option #3335 [albertorestifo](https://github.com/albertorestifo)
* docs; model documentation typos #3330
* fixed; report reason for CastError #3320
* fixed; .populate() no longer returns true after re-assigning #3308
* fixed; discriminators with aggregation geoNear #3304
* docs; discriminator docs #2743
4.1.5 / 2015-09-01
==================
* fixed; document.remove() removing all docs #3326 #3325
* fixed; connect() checks for rs_name in options #3299
* docs; examples for schema.set() #3288
* fixed; checkKeys issue with bluebird #3286 [gregthegeek](https://github.com/gregthegeek)
4.1.4 / 2015-08-31
==================
* fixed; ability to set strict: false for update #3305
* fixed; .create() properly uses ES6 promises #3297
* fixed; pre hooks on nested subdocs #3291 #3284 [aliatsis](https://github.com/aliatsis)
* docs; remove unclear text in .remove() docs #3282
* fixed; pre hooks called twice for 3rd-level nested doc #3281
* fixed; nested transforms #3279
* upgraded; mquery -> 1.6.3 #3278 #3272
* fixed; don't swallow callback errors by default #3273 #3222
* fixed; properly get nested paths from nested schemas #3265
* fixed; remove() with id undefined deleting all docs #3260 [thanpolas](https://github.com/thanpolas)
* fixed; handling for non-numeric projections #3256
* fixed; findById with id undefined returning first doc #3255
* fixed; use retainKeyOrder for update #3215
* added; passRawResult option to findOneAndUpdate for backwards compat #3173
4.1.3 / 2015-08-16
==================
* fixed; getUpdate() in pre update hooks #3520 [gregthegeek](https://github.com/gregthegeek)
* fixed; handleArray() ensures arg is an array #3238 [jloveridge](https://github.com/jloveridge)
* fixed; refresh required path cache when recreating docs #3199
* fixed; $ operator on unwind aggregation helper #3197
* fixed; findOneAndUpdate() properly returns raw result as third arg to callback #3173
* fixed; querystream with dynamic refs #3108
3.8.35 / 2015-08-14
===================
* fixed; handling for minimize on nested objects #2930
* fixed; don't crash when schema.path.options undefined #1824
4.1.2 / 2015-08-10
==================
* fixed; better handling for Jade templates #3241 [kbadk](https://github.com/kbadk)
* added; ESlint trailing spaces #3234 [ChristianMurphy](https://github.com/ChristianMurphy)
* added; ESlint #3191 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; properly emit event on disconnect #3183
* fixed; copy options properly using Query.toConstructor() #3176
* fixed; setMaxListeners() issue in browser build #3170
* fixed; node driver -> 2.0.40 to not store undefined keys as null #3169
* fixed; update validators handle positional operator #3167
* fixed; handle $all + $elemMatch query casting #3163
* fixed; post save hooks don't swallow extra args #3155
* docs; spelling mistake in index.jade #3154
* fixed; don't crash when toObject() has no fields #3130
* fixed; apply toObject() recursively for find and update queries #3086 [naoina](https://github.com/naoina)
4.1.1 / 2015-08-03
==================
* fixed; aggregate exec() crash with no callback #3212 #3198 [jpgarcia](https://github.com/jpgarcia)
* fixed; pre init hooks now properly synchronous #3207 [burtonjc](https://github.com/burtonjc)
* fixed; updateValidators doesn't flatten dates #3206 #3194 [victorkohl](https://github.com/victorkohl)
* fixed; default fields don't make document dirty between saves #3205 [burtonjc](https://github.com/burtonjc)
* fixed; save passes 0 as numAffected rather than undefined when no change #3195 [burtonjc](https://github.com/burtonjc)
* fixed; better handling for positional operator in update #3185
* fixed; use Travis containers #3181 [ChristianMurphy](https://github.com/ChristianMurphy)
* fixed; leaked variable #3180 [ChristianMurphy](https://github.com/ChristianMurphy)
4.1.0 / 2015-07-24
==================
* added; `schema.queue()` now public #3193
* added; raw result as third parameter to findOneAndX callback #3173
* added; ability to run validateSync() on only certain fields #3153
* added; subPopulate #3103 [timbur](https://github.com/timbur)
* added; $isDefault function on documents #3077
* added; additional properties for built-in validator messages #3063 [KLicheR](https://github.com/KLicheR)
* added; getQuery() and getUpdate() functions for Query #3013
* added; export DocumentProvider #2996
* added; ability to remove path from schema #2993 [JohnnyEstilles](https://github.com/JohnnyEstilles)
* added; .explain() helper for aggregate #2714
* added; ability to specify which ES6-compatible promises library mongoose uses #2688
* added; export Aggregate #1910
4.0.8 / 2015-07-20
==================
* fixed; assignment with document arrays #3178 [rosston](https://github.com/rosston)
* docs; remove duplicate paragraph #3164 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* docs; improve findOneAndXYZ parameter descriptions #3159 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* docs; add findOneAndRemove to list of supported middleware #3158
* docs; clarify ensureIndex #3156
* fixed; refuse to save/remove document without id #3118
* fixed; hooks next() no longer accidentally returns promise #3104
* fixed; strict mode for findOneAndUpdate #2947
* added; .min.js.gz file for browser component #2806
3.8.34 / 2015-07-20
===================
* fixed; allow using $rename #3171
* fixed; no longer modifies update arguments #3008
4.0.7 / 2015-07-11
==================
* fixed; documentarray id method when using object id #3157 [siboulet](https://github.com/siboulet)
* docs; improve findById docs #3147
* fixed; update validators handle null properly #3136 [odeke-em](https://github.com/odeke-em)
* docs; jsdoc syntax errors #3128 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* docs; fix typo #3126 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* docs; proper formatting in queries.jade #3121 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* docs; correct example for string maxlength validator #3111 [rhmeeuwisse](https://github.com/rhmeeuwisse)
* fixed; setDefaultsOnInsert with arrays #3107
* docs; LearnBoost -> Automattic in package.json #3099
* docs; pre update hook example #3094 [danpe](https://github.com/danpe)
* docs; clarify query middleware example #3051
* fixed; ValidationErrors in strict mode #3046
* fixed; set findOneAndUpdate properties before hooks run #3024
3.8.33 / 2015-07-10
===================
* upgraded; node driver -> 1.4.38
* fixed; dont crash when `match` validator undefined
4.0.6 / 2015-06-21
==================
* upgraded; node driver -> 2.0.34 #3087
* fixed; apply setters on addToSet, etc #3067 [victorkohl](https://github.com/victorkohl)
* fixed; missing semicolons #3065 [sokolikp](https://github.com/sokolikp)
* fixed; proper handling for async doc hooks #3062 [gregthegeek](https://github.com/gregthegeek)
* fixed; dont set failed populate field to null if other docs are successfully populated #3055 [eloytoro](https://github.com/eloytoro)
* fixed; setDefaultsOnInsert with document arrays #3034 [taxilian](https://github.com/taxilian)
* fixed; setters fired on array items #3032
* fixed; stop validateSync() on first error #3025 [victorkohl](https://github.com/victorkohl)
* docs; improve query docs #3016
* fixed; always exclude _id when its deselected #3010
* fixed; enum validator kind property #3009
* fixed; mquery collection names #3005
* docs; clarify mongos option #3000
* docs; clarify that query builder has a .then() #2995
* fixed; race condition in dynamic ref #2992
3.8.31 / 2015-06-20
===================
* fixed; properly handle text search with discriminators and $meta #2166
4.0.5 / 2015-06-05
==================
* fixed; ObjectIds and buffers when mongodb driver is a sibling dependency #3050 #3048 #3040 #3031 #3020 #2988 #2951
* fixed; warn user when 'increment' is used in schema #3039
* fixed; setDefaultsOnInsert with array in schema #3035
* fixed; dont use default Object toString to cast to string #3030
* added; npm badge #3020 [odeke-em](https://github.com/odeke-em)
* fixed; proper handling for calling .set() with a subdoc #2782
* fixed; dont throw cast error when using $rename on non-string path #1845
3.8.30 / 2015-06-05
===================
* fixed; enable users to set all options with tailable() #2883
4.0.4 / 2015-05-28
==================
* docs; findAndModify new parameter correct default value #3012 [JonForest](https://github.com/JonForest)
* docs; clarify pluralization rules #2999 [anonmily](https://github.com/anonmily)
* fix; discriminators with schema methods #2978
* fix; make `isModified` a schema reserved keyword #2975
* fix; properly fire setters when initializing path with object #2943
* fix; can use `setDefaultsOnInsert` without specifying `runValidators` #2938
* fix; always set validation errors `kind` property #2885
* upgraded; node driver -> 2.0.33 #2865
3.8.29 / 2015-05-27
===================
* fixed; Handle JSON.stringify properly for nested docs #2990
4.0.3 / 2015-05-13
==================
* upgraded; mquery -> 1.5.1 #2983
* docs; clarify context for query middleware #2974
* docs; fix missing type -> kind rename in History.md #2961
* fixed; broken ReadPreference include on Heroku #2957
* docs; correct form for cursor aggregate option #2955
* fixed; sync post hooks now properly called after function #2949 #2925
* fixed; fix sub-doc validate() function #2929
* upgraded; node driver -> 2.0.30 #2926
* docs; retainKeyOrder for save() #2924
* docs; fix broken class names #2913
* fixed; error when using node-clone on a doc #2909
* fixed; no more hard references to bson #2908 #2906
* fixed; dont overwrite array values #2907 [naoina](https://github.com/naoina)
* fixed; use readPreference=primary for findOneAndUpdate #2899 #2823
* docs; clarify that update validators only run on $set and $unset #2889
* fixed; set kind consistently for built-in validators #2885
* docs; single field populated documents #2884
* fixed; nested objects are now enumerable #2880 [toblerpwn](https://github.com/toblerpwn)
* fixed; properly populate field when ref, lean, stream used together #2841
* docs; fixed migration guide jade error #2807
3.8.28 / 2015-05-12
===================
* fixed; proper handling for toJSON options #2910
* fixed; dont attach virtuals to embedded docs in update() #2046
4.0.2 / 2015-04-23
==================
* fixed; error thrown when calling .validate() on subdoc not in an array #2902
* fixed; rename define() to play nice with webpack #2900 [jspears](https://github.com/jspears)
* fixed; pre validate called twice with discriminators #2892
* fixed; .inspect() on mongoose.Types #2875
* docs; correct callback params for Model.update #2872
* fixed; setDefaultsOnInsert now works when runValidators not specified #2870
* fixed; Document now wraps EventEmitter.addListener #2867
* fixed; call non-hook functions in schema queue #2856
* fixed; statics can be mocked out for tests #2848 [ninelb](https://github.com/ninelb)
* upgraded; mquery 1.4.0 for bluebird bug fix #2846
* fixed; required validators run first #2843
* docs; improved docs for new option to findAndMody #2838
* docs; populate example now uses correct field #2837 [swilliams](https://github.com/swilliams)
* fixed; pre validate changes causing VersionError #2835
* fixed; get path from correct place when setting CastError #2832
* docs; improve docs for Model.update() function signature #2827 [irnc](https://github.com/irnc)
* fixed; populating discriminators #2825 [chetverikov](https://github.com/chetverikov)
* fixed; discriminators with nested schemas #2821
* fixed; CastErrors with embedded docs #2819
* fixed; post save hook context #2816
* docs; 3.8.x -> 4.x migration guide #2807
* fixed; proper _distinct copying for query #2765 [cdelauder](https://github.com/cdelauder)
3.8.27 / 2015-04-22
===================
* fixed; dont duplicate db calls on Q.ninvoke() #2864
* fixed; Model.find arguments naming in docs #2828
* fixed; Support ipv6 in connection strings #2298
3.8.26 / 2015-04-07
===================
* fixed; TypeError when setting date to undefined #2833
* fixed; handle CastError properly in distinct() with no callback #2786
* fixed; broken links in queries docs #2779
* fixed; dont mark buffer as modified when setting type initially #2738
* fixed; dont crash when using slice with populate #1934
4.0.1 / 2015-03-28
==================
* fixed; properly handle empty cast doc in update() with promises #2796
* fixed; unstable warning #2794
* fixed; findAndModify docs now show new option is false by default #2793
4.0.0 / 2015-03-25
==================
* fixed; on-the-fly schema docs typo #2783 [artiifix](https://github.com/artiifix)
* fixed; cast error validation handling #2775 #2766 #2678
* fixed; discriminators with populate() #2773 #2719 [chetverikov](https://github.com/chetverikov)
* fixed; increment now a reserved path #2709
* fixed; avoid sending duplicate object ids in populate() #2683
* upgraded; mongodb to 2.0.24 to properly emit reconnect event multiple times #2656
4.0.0-rc4 / 2015-03-14
======================
* fixed; toObject virtuals schema option handled properly #2751
* fixed; update validators work on document arrays #2733
* fixed; check for cast errors on $set #2729
* fixed; instance field set for all schema types #2727 [csdco](https://github.com/csdco)
* fixed; dont run other validators if required fails #2725
* fixed; custom getters execute on ref paths #2610
* fixed; save defaults if they were set when doc was loaded from db #2558
* fixed; pre validate now runs before pre save #2462
* fixed; no longer throws errors with --use_strict #2281
3.8.25 / 2015-03-13
===================
* fixed; debug output reverses order of aggregation keys #2759
* fixed; $eq is a valid query selector in 3.0 #2752
* fixed; upgraded node driver to 1.4.32 for handling non-numeric poolSize #2682
* fixed; update() with overwrite sets _id for nested docs #2658
* fixed; casting for operators in $elemMatch #2199
4.0.0-rc3 / 2015-02-28
======================
* fixed; update() pre hooks run before validators #2706
* fixed; setters not called on arrays of refs #2698 [brandom](https://github.com/brandom)
* fixed; use node driver 2.0.18 for nodejs 0.12 support #2685
* fixed; comments reference file that no longer exists #2681
* fixed; populated() returns _id of manually populated doc #2678
* added; ability to exclude version key in toObject() #2675
* fixed; dont allow setting nested path to a string #2592
* fixed; can cast objects with _id field to ObjectIds #2581
* fixed; on-the-fly schema getters #2360
* added; strict option for findOneAndUpdate() #1967
3.8.24 / 2015-02-25
===================
* fixed; properly apply child schema transforms #2691
* fixed; make copy of findOneAndUpdate options before modifying #2687
* fixed; apply defaults when parent path is selected #2670 #2629
* fixed; properly get ref property for nested paths #2665
* fixed; node driver makes copy of authenticate options before modifying them #2619
* fixed; dont block process exit when auth fails #2599
* fixed; remove redundant clone in update() #2537
4.0.0-rc2 / 2015-02-10
======================
* added; io.js to travis build
* removed; browser build dependencies not installed by default
* added; dynamic refpaths #2640 [chetverikov](https://github.com/chetverikov)
* fixed; dont call child schema transforms on parent #2639 [chetverikov](https://github.com/chetverikov)
* fixed; get rid of remove option if new is set in findAndModify #2598
* fixed; aggregate all document array validation errors #2589
* fixed; custom setters called when setting value to undefined #1892
3.8.23 / 2015-02-06
===================
* fixed; unset opts.remove when upsert is true #2519
* fixed; array saved as object when path is object in array #2442
* fixed; inline transforms #2440
* fixed; check for callback in count() #2204
* fixed; documentation for selecting fields #1534
4.0.0-rc1 / 2015-02-01
======================
* fixed; use driver 2.0.14
* changed; use transform: true by default #2245
4.0.0-rc0 / 2015-01-31
===================
* fixed; wrong order for distinct() params #2628
* fixed; handling no query argument to remove() #2627
* fixed; createModel and discriminators #2623 [ashaffer](https://github.com/ashaffer)
* added; pre('count') middleware #2621
* fixed; double validation calls on document arrays #2618
* added; validate() catches cast errors #2611
* fixed; respect replicaSet parameter in connection string #2609
* added; can explicitly exclude paths from versioning #2576 [csabapalfi](https://github.com/csabapalfi)
* upgraded; driver to 2.0.15 #2552
* fixed; save() handles errors more gracefully in ES6 #2371
* fixed; undefined is now a valid argument to findOneAndUpdate #2272
* changed; `new` option to findAndModify ops is false by default #2262
3.8.22 / 2015-01-24
===================
* upgraded; node-mongodb-native to 1.4.28 #2587 [Climax777](https://github.com/Climax777)
* added; additional documentation for validators #2449
* fixed; stack overflow when creating massive arrays #2423
* fixed; undefined is a valid id for queries #2411
* fixed; properly create nested schema index when same schema used twice #2322
* added; link to plugin generator in docs #2085 [huei90](https://github.com/huei90)
* fixed; optional arguments documentation for findOne() #1971 [nachinius](https://github.com/nachinius)
3.9.7 / 2014-12-19
===================
* added; proper cursors for aggregate #2539 [changyy](https://github.com/changyy)
* added; min/max built-in validators for dates #2531 [bshamblen](https://github.com/bshamblen)
* fixed; save and validate are now reserved keywords #2380
* added; basic documentation for browser component #2256
* added; find and findOne hooks (query middleware) #2138
* fixed; throw a DivergentArrayError when saving positional operator queries #2031
* added; ability to use options as a document property #1416
* fixed; document no longer inherits from event emitter and so domain and _events are no longer reserved #1351
* removed; setProfiling #1349
3.8.21 / 2014-12-18
===================
* fixed; syntax in index.jade #2517 [elderbas](https://github.com/elderbas)
* fixed; writable statics #2510 #2528
* fixed; overwrite and explicit $set casting #2515
3.9.6 / 2014-12-05
===================
* added; correctly run validators on each element of array when entire array is modified #661 #1227
* added; castErrors in validation #1013 [jondavidjohn](https://github.com/jondavidjohn)
* added; specify text indexes in schema fields #1401 [sr527](https://github.com/sr527)
* added; ability to set field with validators to undefined #1594 [alabid](https://github.com/alabid)
* added; .create() returns an array when passed an array #1746 [alabid](https://github.com/alabid)
* added; test suite and docs for use with co and yield #2177 #2474
* fixed; subdocument toObject() transforms #2447 [chmanie](https://github.com/chmanie)
* fixed; Model.create() with save errors #2484
* added; pass options to .save() and .remove() #2494 [jondavidjohn](https://github.com/jondavidjohn)
3.8.20 / 2014-12-01
===================
* fixed; recursive readPref #2490 [kjvalencik](https://github.com/kjvalencik)
* fixed; make sure to copy parameters to update() before modifying #2406 [alabid](https://github.com/alabid)
* fixed; unclear documentation about query callbacks #2319
* fixed; setting a schema-less field to an empty object #2314 [alabid](https://github.com/alabid)
* fixed; registering statics and methods for discriminators #2167 [alabid](https://github.com/alabid)
3.9.5 / 2014-11-10
===================
* added; ability to disable autoIndex on a per-connection basis #1875 [sr527](https://github.com/sr527)
* fixed; `geoNear()` no longer enforces legacy coordinate pairs - supports GeoJSON #1987 [alabid](https://github.com/alabid)
* fixed; browser component works when minified with mangled variable names #2302
* fixed; `doc.errors` now cleared before `validate()` called #2302
* added; `execPopulate()` function to make `doc.populate()` compatible with promises #2317
* fixed; `count()` no longer throws an error when used with `sort()` #2374
* fixed; `save()` no longer recursively calls `save()` on populated fields #2418
3.8.19 / 2014-11-09
===================
* fixed; make sure to not override subdoc _ids on find #2276 [alabid](https://github.com/alabid)
* fixed; exception when comparing two documents when one lacks _id #2333 [slawo](https://github.com/slawo)
* fixed; getters for properties with non-strict schemas #2439 [alabid](https://github.com/alabid)
* fixed; inconsistent URI format in docs #2414 [sr527](https://github.com/sr527)
3.9.4 / 2014-10-25
==================
* fixed; statics no longer can be overwritten #2343 [nkcmr](https://github.com/chetverikov)
* added; ability to set single populated paths to documents #1530
* added; setDefaultsOnInsert and runValidator options for findOneAndUpdate() #860
3.8.18 / 2014-10-22
==================
* fixed; Dont use all toObject options in save #2340 [chetverikov](https://github.com/chetverikov)
3.9.3 / 2014-10-01
=================
* added; support for virtuals that return objects #2294
* added; ability to manually hydrate POJOs into mongoose objects #2292
* added; setDefaultsOnInsert and runValidator options for update() #860
3.8.17 / 2014-09-29
==================
* fixed; use schema options retainKeyOrder in save() #2274
* fixed; fix skip in populate when limit is set #2252
* fixed; fix stack overflow when passing MongooseArray to findAndModify #2214
* fixed; optimize .length usage in populate #2289
3.9.2 / 2014-09-08
==================
* added; test coverage for browser component #2255
* added; in-order execution of validators #2243
* added; custom fields for validators #2132
* removed; exception thrown when find() used with count() #1950
3.8.16 / 2014-09-08
==================
* fixed; properly remove modified array paths if array has been overwritten #1638
* fixed; key check errors #1884
* fixed; make sure populate on an array always returns a Mongoose array #2214
* fixed; SSL connections with node 0.11 #2234
* fixed; return sensible strings for promise errors #2239
3.9.1 / 2014-08-17
==================
* added; alpha version of browser-side schema validation #2254
* added; support passing a function to schemas `required` field #2247
* added; support for setting updatedAt and createdAt timestamps #2227
* added; document.validate() returns a promise #2131
3.8.15 / 2014-08-17
==================
* fixed; Replica set connection string example in docs #2246
* fixed; bubble up parseError event #2229
* fixed; removed buggy populate cache #2176
* fixed; dont $inc versionKey if its being $set #1933
* fixed; cast $or and $and in $pull #1932
* fixed; properly cast to schema in stream() #1862