Commit Graph

6986 Commits

Author SHA1 Message Date
Taylor Otwell 3898059e00 explicit directory 2024-01-21 15:49:03 -06:00
Taylor Otwell 5955d2e4f9 revert quietness 2024-01-20 16:21:58 -06:00
Taylor Otwell 27a4111fc2 run database migrations quietly on create project 2024-01-20 16:18:36 -06:00
Taylor Otwell e23c0c1bfd
SQLite for local dev (#6322)
* update values for a sqlite default world

* migrate on post create project

* touch database

* fix typo
2024-01-20 16:02:54 -06:00
Taylor Otwell b1502f3c07 slim comments 2024-01-17 16:44:19 -06:00
Nuno Maduro 1ad4708ddb Merge branch '10.x' 2024-01-12 13:48:06 +00:00
Nuno Maduro dd60315e9a
[11.x] Simplify PHP comments (#6316)
* Simplifies comments

* Apply fixes from StyleCI

* Removes non used line

* remove some comments

---------

Co-authored-by: StyleCI Bot <bot@styleci.io>
Co-authored-by: Taylor Otwell <taylor@laravel.com>
2024-01-11 14:32:05 -06:00
Maarten Buis 6292958a6b
[11.x] Removed unused using in public/index.php (#6315) 2024-01-09 15:33:38 -06:00
Nuno Maduro b726807a90
Uses Tinker's stable branch 2024-01-09 18:23:03 +00:00
driesvints 2254e8e301 Update CHANGELOG 2024-01-09 18:22:37 +00:00
Dries Vints f3b9740d56
Move spatie/laravel-ignition to dev dependencies 2024-01-05 14:14:08 +01:00
Jonathan Goode 1a4d1dc81f
Update Axios to latest version (#6313) 2024-01-04 17:47:27 +01:00
Nuno Maduro 14bc24d236
Adds Laravel Ignition (#6312) 2024-01-04 17:47:07 +01:00
Nuno Maduro 2529041f38 Merge branch '10.x' 2024-01-03 14:04:49 +00:00
Nuno Maduro 13a81bf921
Removes `CreatesApplication` (#6310) 2024-01-03 07:52:33 -06:00
Nuno Maduro 1674895c04
[11.x] Bumps versions on `composer.json` (#6311)
* Bumps minor versions

* Uses minor pattern

* Uses `1.6.3` for axious
2024-01-03 07:46:30 -06:00
Jonathan Goode 6f6cfb0204
Update Axios to latest version (#6306) 2023-12-28 10:37:47 -06:00
Nuno Maduro b191f9d086 Merge branch '10.x' 2023-12-27 16:52:21 +00:00
Nuno Maduro 0c8372a2e6
Reverts `assertOk` change (#6303) 2023-12-27 10:47:30 -06:00
driesvints 705f97c5c8 Update CHANGELOG 2023-12-27 14:41:58 +00:00
Nuno Maduro 9e3fbaa563
Uses `CACHE_STORE` instead of `CACHE_DRIVER` (#6302) 2023-12-27 08:16:46 -06:00
Ahmed shamim 890835b7a1
[10.x] Add roundrobin transport driver config (#6301)
* add roundrobin transport driver config

* Update mail.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2023-12-23 09:57:06 -06:00
driesvints 07fdfbc8d8 Update CHANGELOG 2023-12-19 15:18:17 +00:00
Tim MacDonald 647c9bc29e
Update version requirement (#6292) 2023-12-19 08:44:37 -06:00
Dries Vints 5d93ebdb76
Revert "Fixes tests failing due database not available (#6297)" (#6299)
This reverts commit e15fbbe547.
2023-12-18 10:17:36 -06:00
Taylor Otwell 0071cc80c7 update drivers 2023-12-18 10:14:03 -06:00
Nuno Maduro e15fbbe547
Fixes tests failing due database not available (#6297) 2023-12-18 08:27:23 -06:00
Taylor Otwell 39532486be wip 2023-12-18 08:27:09 -06:00
Taylor Otwell 3f1426a55a
Revert "Rename migration tables (#6295)" (#6298)
This reverts commit b86e53bc71.
2023-12-18 08:26:07 -06:00
Julius Kiekbusch b86e53bc71
Rename migration tables (#6295) 2023-12-18 08:25:35 -06:00
Taylor Otwell db67662ca4 update maintenance defaults 2023-12-16 14:39:31 -06:00
Taylor Otwell feded74d9e wip 2023-12-16 14:35:04 -06:00
Taylor Otwell 4705136d1b disable pulse for testing 2023-12-14 09:31:35 -06:00
TENIOS 3142d3feb9
Use `assertOk()` instead of `assertStatus(200)` (#6287) 2023-12-11 09:17:19 +01:00
driesvints e57d15ac8f Update CHANGELOG 2023-12-05 19:45:52 +00:00
Taylor Otwell b7ae61bb43 fix conflicts 2023-11-30 16:36:08 -06:00
Fabrice Locher d6a2d8b837
[10.x] Add partitioned cookie config key (#6257)
* [10.x] Add partitioned cookie config key

* formatting

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2023-11-30 16:35:41 -06:00
Taylor Otwell 428a190050
[11.x] Slim skeleton (#6188)
See: https://github.com/laravel/framework/pull/47309

# Laravel 11 Skeleton Overview

### General Notes

More environment variables have been added to the `.env.example` file. 

The default `QUEUE_CONNECTION` variable value has been updated to `database` instead of `sync`.

The `BROADCAST_DRIVER` and `CACHE_DRIVER` environment variables have been renamed to `BROADCAST_CONNECTION` and `CACHE_STORE`, respectively.

The HTTP Kernel has been removed. Configuration that was previously done in this file can be done in the `bootstrap/app.php` file, including registering / replacing middleware.

The console kernel has been removed. Schedules can be defined in the console “routes” file. Commands generated by `make:command` are automatically loaded and do not require registration. Additional command loading paths can be registered in the `bootstrap/app.php` file.

The exception handler has been removed. Exception handling behavior can be configured in the `bootstrap/app.php` file via `reportable`, `renderable`, `throttle`, and more. Callbacks received by these functions will have their type hints inspected to see if they handle a given exception.

The base HTTP controller no longer extends any other classes (requiring new middleware definition feature). No traits are included by default on the base controller. Authorization can be done using facades, or traits can be added manually.

All middleware has been removed. Configuration of these middleware’s behavior can be done via static methods on the middleware themselves (see framework notes).

The `User` model now utilizes a `casts` method instead of a property. The `HasApiTokens` trait has been removed by default since Sanctum is not installed by default.

All service providers except the `AppServiceProvider` have been removed. Policies are auto-discovered and gates can be registered in `AppServiceProvider`. Likewise, events can be registered in `AppServiceProvider`. Routing behavior is now determined / customized in the `bootstrap/app.php` file.

New `bootstrap/app.php` file can be used to customize core framework behavior like routing, container bindings, middleware, and exception handling.

Sanctum is no longer installed by default (see `install:api`).

Configuration files are not present by default. Can be published by `config:publish` command. Default values are present in the framework and application level configuration now cascades with framework definitions, so only customized values need be present in application level configuration files.

Migration files have been re-dated to be evergreen. The `password_reset_tokens` table migration has been combined into the `users` table migration file. Likewise, the `jobs` table migration has been combined into a single migration with the `failed_jobs` table.

Echo bootstrapping has been removed by default. It is re-inserted by new `install:broadcasting` command.

API and channel routes files are not present by default, can be recreated by `install:api` and `install:broadcasting` respectively.
2023-11-28 14:28:15 -06:00
Taylor Otwell 645e13d690 fix conflicts 2023-11-28 13:35:59 -06:00
Nuno Maduro 73cf5bc5bc
[10.x] Fixes missing property description (#6275)
* Fixes missing property description

* Update UserFactory.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2023-11-20 09:20:28 -06:00
driesvints 4d3c3a130f Update CHANGELOG 2023-11-14 18:50:10 +00:00
Eliezer Margareten a546b52b3b
Update package.json (#6272) 2023-11-13 10:36:45 -06:00
Taylor Otwell de6d4f58cc fixing conflicts 2023-11-06 17:31:18 -06:00
driesvints 40a7605dc1 Update CHANGELOG 2023-11-02 13:49:26 +00:00
Taylor Otwell 024c86a24b
Revert "Let database handle default collation (#6241)" (#6266)
This reverts commit 74c5a01b09.
2023-11-02 08:42:28 -05:00
driesvints c7098938d3 Update CHANGELOG 2023-10-31 15:25:43 +00:00
hedge-freek ad1c5fe4c2
Redis maintenance store config example contains an excess space (#6264)
Binary operators should be surrounded by space a single space.
2023-10-31 09:38:55 -05:00
Tim MacDonald 21ad6d6915
Verify algo (#6258) 2023-10-25 14:32:54 -05:00
Mior Muhammad Zaki b0b29e1296
[10.x] Update minimum `laravel/sanctum` (#6261)
PR #6234 updated the configuration but it depends on Sanctum 3.3. This PR avoids installing Sanctum 3.2 with the new config.
2023-10-25 09:29:35 -05:00
Julius Kiekbusch 424c99c5b9
Set new Sail constraint (#6260) 2023-10-24 12:03:22 -05:00