Skip to content

Tags: jaleelzhang/laravel-mongodb-1

Tags

v3.3.0-alpha

Toggle v3.3.0-alpha's commit message
Merge pull request mongodb#1300 from MCMatters/master

Add L5.5 support

v3.2.3

Toggle v3.2.3's commit message
Merge pull request mongodb#1289 from jenssegers/analysis-XaN2L7

Apply fixes from StyleCI

v3.2.2

Toggle v3.2.2's commit message

v3.2.1

Toggle v3.2.1's commit message
Fixed 32-bit integer overflow by allowing UTCDateTime() to get it's o…

…wn current time (mongodb#1127)

v3.2.0

Toggle v3.2.0's commit message
Fix compatiblity with 5.3

v3.1.4

Toggle v3.1.4's commit message
Remove php cs cache file

v3.1.3

Toggle v3.1.3's commit message

v3.1.2

Toggle v3.1.2's commit message
Ditch extract, update tests and fixes mongodb#1012

v3.1.1

Toggle v3.1.1's commit message
Aggregate subdocument arrays (mongodb#918)

* add sub document aggregation array functionality

example:
    Model::sum('subarray.*.price');

this method is much simpler as to use as complex raw aggregations

for this function a $unwind directive will be pushed in pipeline before $group

* change testSubdocumentArrayAggregate

change test for different scenarios

* rebase to latest master and fix style ci issues

v3.1.0

Toggle v3.1.0's commit message
Filling with Dot-Notation (mongodb#926)

* Filling with Dot-Notation Keys

Simply override `removeTableFromKey($key)` method and  just return original keys in order to support dot-notation when calling `fill` on model.

* Style CI

* Dot-Notation Fill Tests