Skip to content

Commit

Permalink
Merge branch '8.x' into 9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Nov 7, 2023
2 parents ac6d299 + 2501be0 commit b8255a0
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG-8.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench-core`.

## 8.14.4

Released: 2023-11-02

### Changes

* Update skeleton to match v10.2.8.

## 8.14.3

Released: 2023-10-31

### Changes

* Update skeleton to match v10.2.7.

## 8.14.2

Released: 2023-10-30
Expand Down
2 changes: 1 addition & 1 deletion laravel/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@

'maintenance' => [
'driver' => 'file',
// 'store' => 'redis',
// 'store' => 'redis',
],

/*
Expand Down
2 changes: 2 additions & 0 deletions laravel/config/hashing.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
'verify' => true,
],

/*
Expand All @@ -47,6 +48,7 @@
'memory' => 65536,
'threads' => 1,
'time' => 4,
'verify' => true,
],

];
1 change: 1 addition & 0 deletions laravel/config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@

'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => null,
// 'client' => [
// 'timeout' => 5,
// ],
Expand Down
5 changes: 4 additions & 1 deletion src/Factories/UserFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Foundation\Auth\User;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;

/**
Expand All @@ -15,6 +16,8 @@
*/
class UserFactory extends Factory
{
protected static ?string $password;

/**
* Define the model's default state.
*
Expand All @@ -26,7 +29,7 @@ public function definition(): array
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'password' => static::$password ??= Hash::make('password'),
'remember_token' => Str::random(10),
];
}
Expand Down

0 comments on commit b8255a0

Please sign in to comment.