Vance Lucas

Results 12 issues of Vance Lucas

Support should be added for retrieving the HTTP auth username and password in the request class, maybe with `$request->user()` and `$request->pass()` or similar. This is because there can be a...

enhancement

### Description Ensure that the minimum Node version is 18. This ensures that globals like `fetch`, `formData`, etc. are always available. [Node 18 - New globally available browser-compatible APIs](https://nodejs.org/ko/blog/announcements/v18-release-announce/#new-globally-available-browser-compatible-apis) ###...

Currently, Hydrogen has 3 different reserved routes: - `__events` - Analytics events - `__health` - Basic health check for deployments - `__rsc` - For React Server Components Instead of many...

framework

I wrote some custom javascript that runs calculations and total from rows that are rendered in sync, and I need to re-run the calculations when anything on the page changes....

enhancement
ready

Currently, there is no way for me to run tests in subdirectories, or to even specify a directory to run tests in. I was expecting to be able to do...

**Is your feature request related to a problem? Please describe.** I want to render content from this editor into an email. Email HTML markup does not support external CSS files,...

enhancement

This is similar to #32, only for enforcing the `length` property instead. We need a more friendly validation error to enforce length constraints, as MySQL will happily truncate the string,...

It would be nice to update and delete intuitively from an existing collection or query. ### Examples Delete all the comments for a post (through a relation) `$post->comments->delete()` Delete all...

Feature Request

The classic N+1 query problem should be solved - specifically, for relations. ``` // Loop and print posts and comments foreach($posts as $post) { echo "" . $post->title . "";...

Feature Request

It would be nice to have a setting for turning on query benchmarking/timing so query execution time can be reported with some sort of method - maybe in `Spot\Log`. This...

Feature Request