The schema attached to a route looks like a description for humans. Core uses it to validate and sanitise the request before the callback runs, which means an…
5.4 removed the string-based model events fired through the event dispatcher — eloquent.saved: AppOrder and its relatives — in favour of an $dispatchesEvents map to real classes. The…
Composer runs scripts declared by packages during install, which is convenient and means composer install executes third-party code the moment it lands. On a CI runner building a…
await inside a loop does exactly what it says: waits for each iteration before starting the next. For ten independent requests that is ten round trips one after…
A log line written as a sentence has to be parsed back into fields by a regular expression somebody maintains, and that expression breaks whenever the sentence changes.…
Tree shaking is presented as a webpack 2 feature and is really a property of ES modules: the imports have to be statically analysable, which means Babel must…
Alerting on every cause — disk, memory, queue depth, replica lag, a failed cron — produces an alert per cause and a channel nobody reads. Alerting on what…
The getter looks like ceremony over a property and is the entire point of the release: with the read going through a method, where the value comes from…