Releases: wieni/wmmodel
Releases · wieni/wmmodel
2.2.2
Tip
Please migrate to drupal/entity_model.
See the upgrade guide for help.
What's Changed
- Drupal 10 support by @DieterHolvoet in #27
Full Changelog: 2.2.1...2.2.2
2.2.1
What's Changed
- Fix EntityTranslatorTrait not returning non-translatable entities by @RobinHoutevelts in #26
Full Changelog: 2.2.0...2.2.1
2.0.0
This release is compatible with Drupal 9.3.
We no longer need a patch 🎉
1.3.2
1.1.1
Argument resolve snake_case
0.3.7
Argument resolve snake_case
0.3.3
Update Drush8Io.php
0.3.1
Before falling back to the default value we check if it's a model first.
// controller.php
public function show(Foobar $foo = null) {
var_dump(is_null($foo));
}
Before:
GET /show : true
GET /show/5 : true
😓
Now:
GET /show : true
GET /show/5 : false
🎉
0.3.0
Use state instead of cache A cache clear during deployment made sites crash while deploying. Using State should prevent this.
0.2.7
Merge pull request #6 from wieni/feature/account-proxy-getaccount AccountProxy->getAccount() now returns a fully loaded user model