Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: roots/acorn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.0
Choose a base ref
...
head repository: roots/acorn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.1
Choose a head ref
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Mar 3, 2025

  1. 🔧 v5.x-dev

    retlehs authored Mar 3, 2025
    Copy the full SHA
    7f0b21d View commit details

Commits on Mar 10, 2025

  1. ⏪ use absolute paths in Application::usePaths() (#443)

    QWp6t authored Mar 10, 2025
    Copy the full SHA
    454fe43 View commit details

Commits on Mar 11, 2025

  1. ⬆ Update Foundation to v12.1.1 (#445)

    Log1x authored Mar 11, 2025
    Copy the full SHA
    4d25a1e View commit details
  2. 🔖 v5.0.1 (#446)

    Log1x authored Mar 11, 2025
    Copy the full SHA
    8eac225 View commit details
4 changes: 2 additions & 2 deletions src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
*
* @var string
*/
const VERSION = '12.0.1';
const VERSION = '12.1.1';

/**
* The base path for the Laravel installation.
@@ -257,7 +257,7 @@ public static function inferBasePath()
isset($_ENV['APP_BASE_PATH']) => $_ENV['APP_BASE_PATH'],
default => dirname(array_values(array_filter(
array_keys(ClassLoader::getRegisteredLoaders()),
fn ($path) => ! str_contains($path, '/vendor/'),
fn ($path) => ! str_starts_with($path, 'phar://'),
))[0]),
};
}
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Console/stubs/notification.stub
Original file line number Diff line number Diff line change
@@ -35,9 +35,9 @@ class {{ class }} extends Notification
public function toMail(object $notifiable): MailMessage
{
return (new MailMessage)
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
->line('The introduction to the notification.')
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}

/**
4 changes: 1 addition & 3 deletions src/Illuminate/Foundation/Inspiring.php
Original file line number Diff line number Diff line change
@@ -56,9 +56,7 @@ class Inspiring
*/
public static function quote()
{
return static::quotes()
->map(fn ($quote) => static::formatForConsole($quote))
->random();
return static::formatForConsole(static::quotes()->random());
}

/**
7 changes: 2 additions & 5 deletions src/Roots/Acorn/Application.php
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@
use Illuminate\Foundation\ProviderRepository;
use Illuminate\Support\Collection;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Roots\Acorn\Application\Concerns\Bootable;
use Roots\Acorn\Configuration\ApplicationBuilder;
use Roots\Acorn\Exceptions\SkipProviderException;
@@ -30,7 +29,7 @@ class Application extends FoundationApplication
*
* @var string
*/
public const VERSION = '5.0.0';
public const VERSION = '5.0.1';

/**
* The custom resource path defined by the developer.
@@ -173,9 +172,7 @@ public function usePaths(array $paths)
throw new Exception("The {$pathType} path type is not supported.");
}

$this->{$supportedPaths[$pathType]} = Str::startsWith($path, $this->absoluteCachePathPrefixes)
? $path
: $this->basePath($path);
$this->{$supportedPaths[$pathType]} = $path;
}

$this->bindPathsInContainer();