Releases: leroy-merlin-br/mongolid
Mongolid v3.8.1
Mongolid v3.8
Adds support to MongoDB 7.0.
Mongolid v3.7
- Add support for DateTime casts
- Add
fresh()method to reload instances from database
Mongolid v3.6
Add soft delete feature.
Mongolid v3.5
Add support to PHP 8.0, Illuminate 9.x and 10.x and MongoDB 5.0. Drop support to PHP 7.x, Illuminate 5.x, 6.x, 7.x and 8.x, and MongoDB 3.6.
Mongolid v3.4
Adds support to PHP 8.1.
Mongolid v3.3-beta2
Attempts to get the document from cache on the referenced objects only if the cacheable parameter is true.
Mongolid v3.2.0
Adds support to PHP versions: 7.3, 7.4, 8.0 and 8.1.
What's Changed
- chore(ci): add php versions 8.0 and 8.1 #179
Mongolid v3.1.1 - fix
This release fixes a bug on setup configuration Connection/Manager.
What's Changed
- fix: setup connection on connection manager by @ezandonai in #176
Full Changelog: v3.1.0...v3.1.1
Mongolid v3.1.0
About the new release
In this release we've made some upgrades in order to provide some improvements such as better usability, better implementation and a clearer and better documentation of this ODM.
Please find below a brief summary of the main change in this release
In case you have doubts or you just want to know more details, check the documentation
Fill method
Now you can mass assign attributes using the fill static method:
$post = new Post();
$post = $post->fill(['title' => 'Bacon'], $post);
// or
$post = Post::fill(['title' => 'Bacon'], $post);