Tags: brandon-9/laravel
Tags
[9.x] Make authenticate session a route middleware (laravel#5842) * make authenticate session a route middleware * Update Kernel.php
The docker-compose.override.yml should not be ignored by default (lar… …avel#5838) While this file can be used for local overrides, that is not its only intended usage. E.g. a common setup would be like this: - *docker-compose.yml*: services shared across builds - *docker-compose.override.yml*: services only used in development - *docker-compose.production.yml*: configuration needed for building production images. Now for regular development you just need to run `docker-compose up --build` and only in you CI you would build and run for production by explicitly naming the yml files. TL;DR: Excluding docker-compose.override.yml seems to be a personal preference of someone and they should do that in their global .gitignore if the are so inclined.
Add underscore to prefix in database cache key (laravel#5817) For Redis caching prefix with underscore : 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), but when cache stored in database, then the key is created "merged" with prefix, by this line: 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), for example, if "key" is a key for cache, then the result is: "laravel_cachekey", not a preferable "laravel_cache_key"
[8.x] Auto update changelog file with a new release (laravel#5801) * Create update-changelog.md * Update .gitattributes * Rename update-changelog.md to update-changelog.yml
PreviousNext