Andrej Adamcik
Andrej Adamcik
### Environment - Operating System: Linux - Node Version: v18.18.0 - Nuxt Version: 3.10.1 - CLI Version: 3.10.0 - Nitro Version: 2.8.1 - Package Manager: [email protected] - Builder: - -...
### 🔗 Linked issue #1018 ### ❓ Type of change - [x] 🐞 Bug fix (a non-breaking change that fixes an issue) ### 📚 Description Resolves #1018 Fixes bug in...
### Package version 20.4.0 ### Describe the bug Methods updateOrCreateMany, fetchOrCreateMany and fetchOrNewUpMany use newUpIfMissing function, where it does not compare DateTime values correctly and therefore creates duplicate rows. https://github.com/adonisjs/lucid/blob/develop/src/orm/base_model/index.ts#L212...
### 🔗 Linked issue #1016 ### ❓ Type of change - [x] 🐞 Bug fix (a non-breaking change that fixes an issue) ### 📚 Description Resolves #1016 ### 📝 Checklist...
### Package version 20.4.0 ### Describe the bug The previous version of Lucid used in AdonisJS 5 exported utils so you use methods like `managedTransaction` in your code base. This...
I miss support for Ctrl+A+D, e.g. in screen.
### 🔗 Linked issue #1036 ### ❓ Type of change - [x] 🐞 Bug fix (a non-breaking change that fixes an issue) ### 📚 Description Resolves #1036 ### 📝 Checklist...
### Package version 20.6.0 ### Describe the bug When using relationship sub query in `whereIn()` condition, the constraints are not being applied. For example: ```ts Post.query().whereIn('id', user.related('posts').query().select('id')) ``` The `user_id...