-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Comparing changes
Open a pull request
base repository: laravel/framework
base: v11.39.1
head repository: laravel/framework
compare: v11.40.0
- 20 commits
- 121 files changed
- 15 contributors
Commits on Jan 22, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 9bba0f7 - Browse repository at this point
Copy the full SHA 9bba0f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 787cf26 - Browse repository at this point
Copy the full SHA 787cf26View commit details -
draft: fix: Don't release lock for ShouldBeUniqueUntilProcessing Job …
…that gets released (#54261) * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * Apply fixes from StyleCI * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * Apply fixes from StyleCI * fix: Don't release lock for ShouldBeUniqueUntilProcessing Job that gets released * Apply fixes from StyleCI --------- Co-authored-by: StyleCI Bot <bot@styleci.io>
Configuration menu - View commit details
-
Copy full SHA for c2c35e9 - Browse repository at this point
Copy the full SHA c2c35e9View commit details -
[11.x] Add Laravel Pint (#53835)
* install Pint with custom configuration - use an empty preset - set 1 explicit rule - ignore `/tests` (for now) * run Pint this rule ensures all chained methods on a new line are indented exactly once. this avoids arbitrarily aligning with some character or pattern in the first line line, while still giving us the readability of aligned subsequent lines. --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for cc0365c - Browse repository at this point
Copy the full SHA cc0365cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c71a81 - Browse repository at this point
Copy the full SHA 3c71a81View commit details -
[11.x] Add pending attributes (#53720)
* Add pending attributes * Support withAttributes on many-to-many * Test withAttributes querying on many-to-many * Test withAttributes on polymorphic many-to-many * Make withAttributes qualify columns * Fix CS * Fix CS * formatting * formatting * format comment --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for 066b740 - Browse repository at this point
Copy the full SHA 066b740View commit details
Commits on Jan 23, 2025
-
fix:
schedule:test
on commands using runInBackground (#54321)Force to run the selected command in the foreground. The `artisan schedule:test` command exited immediately after invocation and the selected command did not start if it uses `->runInBackground()`. If `->withoutOverlapping()` is used too, the mutex would not be removed and blocks any further execution without any user facing notice.
Configuration menu - View commit details
-
Copy full SHA for e365c08 - Browse repository at this point
Copy the full SHA e365c08View commit details -
[11.x] Helper methods to dump responses of the Laravel HTTP client (#…
…54317) * Add dump and dd methods to Response class for debugging * Remove unused VarDumper import from Response class * Update Response.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for 5253cc2 - Browse repository at this point
Copy the full SHA 5253cc2View commit details -
Add support for cursor editor in ResolvesDumpSource (#54318)
Add support for cursor editor
Configuration menu - View commit details
-
Copy full SHA for 94e6258 - Browse repository at this point
Copy the full SHA 94e6258View commit details -
[11.x] Add Customizable Date Validation Rule with Flexible Date Const…
…raints (#53465) * Add Flexible Date Validation Options: After, Before, and Custom Formats * Add tests * Formatting * Renaming * Fix separator * Added between date * Formatting * Enabled seamless handling of `Carbon` and `DateTime` instances. * Add tests * Add `afterOrEqualToday` and `beforeOrEqualToday` and `betweenOrEqual` * Added tests * Formatting * Fix typo * formatting --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for 1049c03 - Browse repository at this point
Copy the full SHA 1049c03View commit details -
Configuration menu - View commit details
-
Copy full SHA for f958f33 - Browse repository at this point
Copy the full SHA f958f33View commit details -
[11.x] start syncing StyleCI rules to Pint (#54326)
* start syncing StyleCI rules to Pint starting with the simple ones * wip * wip * wip * wip * wip * wip
Configuration menu - View commit details
-
Copy full SHA for d7c6b8d - Browse repository at this point
Copy the full SHA d7c6b8dView commit details -
[11.x] apply our new Pint rule to the
/tests
directory (#54325)* apply our new pint rule to the `/tests` directory I originally omitted these files to keep the PR smaller, but adding back now for consistent styling throughout repo. these are purely indentation whitespace changes. the `bad-syntax-strategy.php` file is not valid PHP so we need to omit it, or it throws a Pint error. * indentation fixes
Configuration menu - View commit details
-
Copy full SHA for 79b44b1 - Browse repository at this point
Copy the full SHA 79b44b1View commit details
Commits on Jan 24, 2025
-
fix(Collection::pop()): count < 1 (#54340)
* fix(Collection::pop()): count < 1 If $count = 0 then this method was returning the same as if $count=1. If count<0 then things got worse than that. I think that in this case pop of <1 makes no sense and either we should throw an error, or we should return an empty result. I've gone with an empty result as I can see that being returned by the function anyway. * Update Collection.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for 8a46320 - Browse repository at this point
Copy the full SHA 8a46320View commit details -
Configuration menu - View commit details
-
Copy full SHA for c61bac0 - Browse repository at this point
Copy the full SHA c61bac0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 86eae44 - Browse repository at this point
Copy the full SHA 86eae44View commit details -
Configuration menu - View commit details
-
Copy full SHA for b030dbb - Browse repository at this point
Copy the full SHA b030dbbView commit details -
[11.x] Prevent unintended serialization and compression (#54337)
* Prevent unintended serialization and compression * formatting --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
Configuration menu - View commit details
-
Copy full SHA for 48b82c2 - Browse repository at this point
Copy the full SHA 48b82c2View commit details -
[11.x] Pass collection of models to
whereMorphedTo
/ `whereNotMorph……edTo` (#54324) * where(Not)MorphedTo with collection * Extra tests * Allow arrays * Fix docblocks
Configuration menu - View commit details
-
Copy full SHA for f4043fe - Browse repository at this point
Copy the full SHA f4043feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 599a281 - Browse repository at this point
Copy the full SHA 599a281View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v11.39.1...v11.40.0