-
Notifications
You must be signed in to change notification settings - Fork 11.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[9.x] Add config create command #40221
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ound (laravel#36407) * [9.x] Fixing the Error : Class "League\Flysystem\Adapter\Local" not found This is related to the new Flysystem v2 (Check the PR laravel#33612) * Update VendorPublishCommand.php
# Conflicts: # CHANGELOG-6.x.md # src/Illuminate/Foundation/Application.php
# Conflicts: # src/Illuminate/Filesystem/FilesystemAdapter.php # src/Illuminate/Foundation/Application.php
* Update to EmailValidator v3 * Return null
Co-authored-by: Taylor Otwell <taylor@laravel.com>
# Conflicts: # CHANGELOG-6.x.md # CHANGELOG-8.x.md
# Conflicts: # CHANGELOG-8.x.md # src/Illuminate/Filesystem/FilesystemAdapter.php # src/Illuminate/Foundation/Application.php # src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php # src/Illuminate/Support/Str.php # tests/Support/SupportCollectionTest.php
* Add key option to $request->validated() Co-authored-by: mattstauffer <matt@tighten.co> * Make FoundationFormRequestTest method names consistent Co-authored-by: mattstauffer <matt@tighten.co>
- Move JSON related functions from query grammar to base grammar - Add JSON wrap functions to schema grammar - Add JSON support for MySQL and SQLite for virtualAs and storedAs columns
* Added CarbonPeriod value type to Query\Builder->whereBetween * Removed CarbonPeriod typehint and replaced it with native iterable type
…ng route signature
* support x-forwarded-prefix * fix TrustProxies code style * test x-forwarded-prefix in TrustProxiesTest
* Allows to remove the `server.php` file * Apply fixes from StyleCI Co-authored-by: Taylor Otwell <taylorotwell@users.noreply.github.com>
…sages for size rules (laravel#40074) * fix array to string conversion when using custom validation messages for size rules * ci fixes * remove missing comment * formatting Co-authored-by: Taylor Otwell <taylor@laravel.com>
# Conflicts: # CHANGELOG-8.x.md # composer.json # src/Illuminate/Broadcasting/composer.json # src/Illuminate/Foundation/Application.php # src/Illuminate/Mail/composer.json
* PSR Log v3 * Apply fixes from StyleCI * Re-add support for psr/log v2 * formatting Co-authored-by: Taylor Otwell <taylorotwell@users.noreply.github.com> Co-authored-by: Taylor Otwell <taylor@laravel.com>
…uestExceptions (laravel#40079) * Update PendingRequest.php * Update Factory.php * Update HttpClientTest.php
* chore (maintenance): move maintenance mode logic Moving the maintenance mode logic to its own class. This enables users to extend/overwrite the class with their own logic. Overwriting the logic may be needed if for example the application is running on multiple servers. Fixes laravel#36474 * refactor (maintenance): add isUp method Adding the isUp method to check if the application is up or is down for maintenance. Relates to laravel#36474 * doc (maintenance): document code Extend the documentation about what the code does. Also use FQN. Relates to laravel#36474 * fix (maintenance): correctly check if in maintenance Relates to laravel#36474 * refactor (maintenance): use make method Use the make method instead of the app function to retrieve an instance of the MaintenanceMode container. Relates to laravel#36474 * doc (maintenance): update docblock Update the docblock with the newly added method param. Relates to laravel#36474 * doc (maintenance): update docblock Update the docblock with the newly added method param. Relates to laravel#36474 * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * refactor (maintenance): change namespace Move the class from its own namespace to the Foundation namespace. Relates to laravel#36474 * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * Update src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php Co-authored-by: Dries Vints <dries@vints.io> * Update src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php Co-authored-by: Dries Vints <dries@vints.io> * refactor (maintenance): move to application Create an application methode to retrieve the MaintenanceMode instance. This method reduces the need to fetch the MaintenanceMode with the usage of an additional argument in the middleware. Relates to laravel#36474 * doc (maintenance): add DockBlock Adding documentation for the newly added methods. Relates to laravel#36474 * refactor (maintenance): use application method Use the application method instead of using autowiring. The application method provides the MaintenanceMode instance which removes the requirement to inject the class in the handler method. Relates to laravel#36474 * Update src/Illuminate/Foundation/MaintenanceMode.php Co-authored-by: Dries Vints <dries@vints.io> * Update src/Illuminate/Foundation/MaintenanceMode.php Co-authored-by: Dries Vints <dries@vints.io> * refactor (maintenance): remove comparison Remove the comparison with the false value. The method always returns a bool which only allows a true or false return value. This make the comparison redundant. Relates to laravel#36474 * chore (code): remove unused import Remove the unused import. Because the FQN is used in the DocBlock the import has become redundant. * refactor (maintenance): add interface Add an interface under the contracts to enable developers to easily extend the MaintenanceMode class. * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * refactor (maintenance): bind instance to contract Bind the default MaintenanceMode class to the contract reference in the service container. This enables users to set-up their own contract binding to overwrite the default Maintenance Mode behavior. * style (doc): update documentation style Updating documentation style to comply to the style used within the Laravel codebase. * Update src/Illuminate/Foundation/Providers/FoundationServiceProvider.php Co-authored-by: Choraimy Kroonstuiver <3661474+axlon@users.noreply.github.com> * formatting and renaming Co-authored-by: Wim Ulkeman <wulkeman@assuradeurengilde.nl> Co-authored-by: Dries Vints <dries@vints.io> Co-authored-by: Choraimy Kroonstuiver <3661474+axlon@users.noreply.github.com> Co-authored-by: Taylor Otwell <taylor@laravel.com>
* Allows to remove core class `app.aliases` from the skeleton * Removes `Redis` alias * Merges configurations * Reverts changes on Register Facades * Adds `Facade::defaultAliases` * Apply fixes from StyleCI Co-authored-by: Taylor Otwell <taylorotwell@users.noreply.github.com>
* Allows to remove core class `app.aliases` from the skeleton * Removes `Redis` alias * Merges configurations * Reverts changes on Register Facades * Adds `Facade::defaultAliases` * Apply fixes from StyleCI Co-authored-by: Taylor Otwell <taylorotwell@users.noreply.github.com>
* Add cache based maintenance mode support * Add a maintenance mode driver manager * Fix code style * formatting Co-authored-by: Taylor Otwell <taylor@laravel.com>
* Used `str_contains` instead of `strpos`. * Used `str_contains` instead of `strpos`.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
mergeCasts
to return$this
#35677)a[b][c]
ParallelTesting::token()
return type in docs #35985)tap
directly, not a clone ([9.x] Pass collection instance intotap
directly, not a clone #36220)havingNull
to query builder #37228)Str::contains
andStr::containsAll
([9.x] Add option to ignore case inStr::contains
andStr::containsAll
#37330)Conditionable
tests ([9.x] SimplifyConditionable
tests #37657)scoped
method to the container contract ([9.x] Adds thescoped
method to the container contract #37679)Conditionable
support for callback conditions ([9.x] AddConditionable
support for callback conditions #37667)PruneCommand
firstOrCreate
andfirstOrNew
should merge attributes correctly #38367)Support\Collection
andDatabase\Eloquent\Collection
type definitions ([9.x] ImprovesSupport\Collection
andDatabase\Eloquent\Collection
type definitions #38538)saveQuietly
convenience methods to relations ([9.x] AddsaveQuietly
convenience methods to relations #38934)opis/closure
package ([9.x] Removesopis/closure
package #39087)hasUser
method to Guard contract ([9.x] AddhasUser
method to Guard contract #39167)Model::factory()
#39171)Collection::unique
types ([9.x] FixesCollection::unique
types #39323)"phpstan/phpstan": "^1.0"
([9.x] Uses PHPStan's stable version #39479)Support\LazyCollection
type definitions ([9.x] ImproveSupport\LazyCollection
type definitions #39506)with
generic ([9.x] Makeswith
generic #39615)assertDeleted
([9.x] RemoveassertDeleted
#39661)WithoutModelEvents
trait for running seeds without Model Events ([9.x] AddsWithoutModelEvents
trait for running seeds without Model Events #39922)server.php
file ([9.x] Allows to remove theserver.php
file #40034)psr/log
v1 support #40093)openssl_encrypt
#40108)openssl_encrypt
#40108)str_contains
instead ofstrpos
#40207)