Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v5

- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5

- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 22

Expand Down
2 changes: 1 addition & 1 deletion app/Actions/Fortify/UpdateUserProfileInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
public function update($user, array $input): void
{
Validator::make($input, [
'name' => ['required', 'string', 'max:255'],
'name' => ['required', 'string', 'max:20', 'alpha_dash'],

'email' => [
'required',
Expand Down
106 changes: 56 additions & 50 deletions composer.lock

Large diffs are not rendered by default.

7 changes: 1 addition & 6 deletions config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,7 @@
'timeout' => null,
// TLS certificate verification options
// Set MAIL_VERIFY_TLS=false in your .env to disable verification (not recommended for production)
'stream' => [
'ssl' => [
'verify_peer' => env('MAIL_VERIFY_TLS', true),
'verify_peer_name' => env('MAIL_VERIFY_TLS', true),
],
],
'verify_peer' => env('MAIL_VERIFY_TLS', true),
],

'ses' => [
Expand Down
105 changes: 58 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkace",
"version": "2.3.0",
"version": "2.3.1",
"description": "A small, selfhosted bookmark manager with advanced features, built with Laravel and Docker",
"homepage": "https://github.com/Kovah/LinkAce",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions tests/Controller/App/UserSettingsControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ public function test_valid_settings_response(): void
public function test_valid_update_account_settings_response(): void
{
$response = $this->post('settings/account', [
'name' => 'New Name',
'name' => 'NewName',
'email' => 'test@linkace.org',
]);
])->assertSessionHasNoErrors();

$response->assertRedirect('/');

$updatedUser = User::notSystem()->first();

$this->assertEquals('New Name', $updatedUser->name);
$this->assertEquals('NewName', $updatedUser->name);
$this->assertEquals('test@linkace.org', $updatedUser->email);
}

Expand Down
Loading