Skip to content

Commit 56e84bc

Browse files
committed
release: 2.2.5
1 parent c926730 commit 56e84bc

13 files changed

Lines changed: 48 additions & 20 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ body:
1616
description: From StaffCP -> Overview
1717
options:
1818
- Development version
19-
- 2.2.4
20-
- <= 2.2.3
19+
- 2.2.5
20+
- <= 2.2.4
2121
validations:
2222
required: true
2323

.github/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The following NamelessMC releases are supported by the development team
88

99
| Version | Supported |
1010
|-----------|--------------------|
11-
| 2.2.4 | :white_check_mark: |
12-
| <= 2.2.3 | :x: |
11+
| 2.2.5 | :white_check_mark: |
12+
| <= 2.2.4 | :x: |
1313
| <= 1.0.22 | :x: |
1414

1515
## Reporting a Vulnerability

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
## [Unreleased](https://github.com/NamelessMC/Nameless/compare/v2.2.0...develop)
44
> [Milestone](https://github.com/NamelessMC/Nameless/milestone/23)
55
6+
## [2.2.5](https://github.com/NamelessMC/Nameless/compare/v2.2.4...v2.2.5) - 2026-05-31
7+
### Added
8+
- No additions this release
9+
10+
### Changed
11+
- Update release script for php 8.2 [#3726](https://github.com/NamelessMC/Nameless/pull/3726)
12+
- Adapt release script for podman [#3636](https://github.com/NamelessMC/Nameless/pull/3636)
13+
14+
### Fixed
15+
- Better UUID sanitisation in avatar URLs
16+
- Respect permissions when getting a forum quote
17+
- Respect can view other topic permissions when reacting
18+
- Respect profile post permissions when reacting
19+
- Respect profile post permissions when posting
20+
- Validate OAuth state
21+
- Fix mass message failing with falsy clause [#3730](https://github.com/NamelessMC/Nameless/pull/3730)
22+
- Fix option to disable default server [#3727](https://github.com/NamelessMC/Nameless/pull/3727)
23+
624
## [2.2.4](https://github.com/NamelessMC/Nameless/compare/v2.2.3...v2.2.4) - 2025-08-10
725
### Added
826
- No additions this releasse

core/classes/Database/DatabaseInitialiser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ private function initialiseSettings(): void
214214
Settings::set('recaptcha_type', 'Recaptcha3');
215215
Settings::set('recaptcha_login', '0');
216216
Settings::set('email_verification', '1');
217-
Settings::set('nameless_version', '2.2.4');
217+
Settings::set('nameless_version', '2.2.5');
218218
Settings::set('version_checked', date('U'));
219219
Settings::set('phpmailer', '0');
220220
Settings::set('user_avatars', '0');

core/includes/updates/224.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return new class() extends UpgradeScript {
4+
public function run(): void
5+
{
6+
$this->runMigrations();
7+
8+
$this->setVersion('2.2.5');
9+
}
10+
};

custom/panel_templates/Default/template.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ public function __construct(Language $language)
2626

2727
parent::__construct(
2828
'Default', // Template name
29-
'2.2.4', // Template version
30-
'2.2.4', // Nameless version template is made for
29+
'2.2.5', // Template version
30+
'2.2.5', // Nameless version template is made for
3131
'<a href="https://coldfiredzn.com" target="_blank">Coldfire</a>', // Author, you can use HTML here
3232
__DIR__, // Specify the path to the template
3333
);

custom/templates/DefaultRevamp/template.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public function __construct(Cache $cache, Language $language, User $user, Pages
2727
{
2828
$template = [
2929
'name' => 'DefaultRevamp',
30-
'version' => '2.2.4',
31-
'nl_version' => '2.2.4',
30+
'version' => '2.2.5',
31+
'nl_version' => '2.2.5',
3232
'author' => '<a href="https://xemah.com/" target="_blank">Xemah</a>',
3333
];
3434

modules/Cookie Consent/module.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public function __construct(Language $language, Language $cookie_language, Pages
1818

1919
$name = 'Cookie Consent';
2020
$author = '<a href="https://samerton.dev" target="_blank" rel="nofollow noopener">Samerton</a>';
21-
$module_version = '2.2.4';
22-
$nameless_version = '2.2.4';
21+
$module_version = '2.2.5';
22+
$nameless_version = '2.2.5';
2323

2424
parent::__construct($this, $name, $author, $module_version, $nameless_version);
2525

modules/Core/module.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public function __construct(Language $language, Pages $pages, User $user, Naviga
1919

2020
$name = 'Core';
2121
$author = '<a href="https://samerton.me" target="_blank" rel="nofollow noopener">Samerton</a>';
22-
$module_version = '2.2.4';
23-
$nameless_version = '2.2.4';
22+
$module_version = '2.2.5';
23+
$nameless_version = '2.2.5';
2424

2525
parent::__construct($this, $name, $author, $module_version, $nameless_version);
2626

modules/Discord Integration/module.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public function __construct(Language $language, Pages $pages, Endpoints $endpoin
1616

1717
$name = 'Discord Integration';
1818
$author = '<a href="https://tadhg.sh" target="_blank" rel="nofollow noopener">Aberdeener</a>';
19-
$module_version = '2.2.4';
20-
$nameless_version = '2.2.4';
19+
$module_version = '2.2.5';
20+
$nameless_version = '2.2.5';
2121

2222
parent::__construct($this, $name, $author, $module_version, $nameless_version);
2323

0 commit comments

Comments
 (0)