Laravel Changelog History Search
Welcome to the Laravel Changelog History Search! Dive into the comprehensive history of the Laravel framework with ease. Explore past changes, updates, and improvements. Find specific versions or features quickly. Stay informed and empowered as you navigate the evolution of Laravel. Start searching and uncover the valuable insights from the Laravel Changelog History.
Added
- Allowed formatting an implicit attribute using a closure (#31246)
- Added
Filesystem::ensureDirectoryExists()
method (8a8eed4)
Fixed
- Fixed laravel migrations when migrating to sql server (dropColumn with default value) (#31229)
- Fixed
handleBeginTransactionException()
method calling pdo property instead of getPdo() method (#31233)
- Fixed channel names when broadcasting via redis (#31261)
- Replace asterisks before validation (#31257)
Changed
- Reset timeout handler after worker loop (#31198)
Added
- Added
ServiceProvider::loadFactoriesFrom()
method (#31133)
- Added
TestResponse::dumpSession()
method (#31131)
- Added
Str::isUuid()
method (#31148)
- Restored phpunit 7 support (#31113)
- Added
Request::boolean()
method (#31160)
- Added missing options for PhpRedis (#31182)
Fixed
- Fixed database url parsing for connections with no database specified (#31185)
- Prevent ambiguous column with table name prefix (#31174)
Optimization
- Fixed memory usage on downloading large files (#31163)
Changed
Added
- Added
Illuminate\Database\Eloquent\Builder::firstWhere()
method (#31089)
- Redis Broadcaster: Broadcast to multiple channels at once (#31108)
Fixed
- Fixed undefined property in
WithFaker::makeFaker()
(#31083)
- Fixed
Str::afterLast()
method (#31095)
- Fixed insert float into MySQL with PHP 7.3 (#31100)
Changed
- Remove all indentation in blade templates (917ee51)
- Added mailable names to assertion messages in
MailFake::assertNothingSent()
andMailFake::assertNothingQueued()
(#31106)
Changed
- Updated some blade templates (f17e347)
Added
- Added
withoutMix()
andwithMix()
test helpers (#30900)
- Added
validateWithBag()
macro toRequest
(#30896)
- Added generated columns (virtual/stored) support for PostgreSQL (#30971)
- Make the Redis Connection
Macroable
(#31020)
- Added
redis.connection
aliases in container (#31034)
- Allowed absolute file path for
Storage::putFile()
(#31040)
Changed
- Make
ThrottleRequestsException
extendTooManyRequestsHttpException
(#30943)
- Used
league/commonmark
instead oferusev/parsedown
for mail markdown (#30982)
- Regenerate token on logout (b2af428)
- Make
RedisQueue::getConnection()
public (#31016)
- Resolve
Faker\Generator
out of the container if it is bound (#30992)
Fixed
- Fixed
float
database types inBlueprint
(#30891)
- Fixed code that depended on
getenv()
(#30924)
- Prevented making actual pdo connections while reconnecting (#30998)
- Fixed
exclude_if
\exclude_unless
validation rules for nested data (#31006)
- Update
dev-master
branch aliases from6.0-dev
to6.x-dev
(d06cc79)
- Used model connection by default in the database validators (#31037)
Optimization
- Optimize Service Provider registration (#30960)
- Optimize
runningInConsole
method (#30922)
- Delay instantiation of translator and view factory (#31009)
Deprecated
- Deprecate
PendingMail::sendNow()
and remove unneeded check (#30999)
Reverted
Refactoring
- Refactoring of
BladeCompiler::compileString()
method (08887f9)