Skip to content

Commit 92f2ffb

Browse files
committed
Joomla! 4.4.4 Stable
1 parent 45adb61 commit 92f2ffb

File tree

7 files changed

+136
-53
lines changed

7 files changed

+136
-53
lines changed

administrator/manifests/files/joomla.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<authorUrl>www.joomla.org</authorUrl>
77
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
88
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
9-
<version>4.4.4-rc3-dev</version>
9+
<version>4.4.4</version>
1010
<creationDate>2024-04</creationDate>
1111
<description>FILES_JOOMLA_XML_DESCRIPTION</description>
1212

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- a/src/HeaderSecurity.php
2+
+++ b/src/HeaderSecurity.php
3+
@@ -155,7 +155,7 @@ public static function assertValidName($name): void
4+
is_object($name) ? $name::class : gettype($name)
5+
));
6+
}
7+
- if (! preg_match('/^[a-zA-Z0-9\'`#$%&*+.^_|~!-]+$/', $name)) {
8+
+ if (! preg_match('/^[a-zA-Z0-9\'`#$%&*+.^_|~!-]+$/D', $name)) {
9+
throw new Exception\InvalidArgumentException(sprintf(
10+
'"%s" is not valid header name',
11+
$name

composer.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"vendor-dir": "libraries/vendor",
1717
"github-protocols": ["https"],
1818
"allow-plugins": {
19-
"dealerdirect/phpcodesniffer-composer-installer": true
19+
"dealerdirect/phpcodesniffer-composer-installer": true,
20+
"cweagans/composer-patches": true
2021
}
2122
},
2223
"support": {
@@ -102,7 +103,8 @@
102103
"web-token/signature-pack": "^2.2.11",
103104
"phpseclib/bcmath_compat": "^2.0.1",
104105
"jfcherng/php-diff": "^6.10.14",
105-
"voku/portable-utf8": "6.0.12 as 5.4.0"
106+
"voku/portable-utf8": "6.0.12 as 5.4.0",
107+
"cweagans/composer-patches": "^1.7"
106108
},
107109
"require-dev": {
108110
"phpunit/phpunit": "^8.5.34",
@@ -116,6 +118,14 @@
116118
"replace": {
117119
"paragonie/random_compat": "9.99.99"
118120
},
121+
"extra": {
122+
"composer-exit-on-patch-failure": true,
123+
"patches": {
124+
"laminas/laminas-diactoros": {
125+
"Fixes HTTP Multiline Header Termination": "./build/composer_patches/4.4.4-2024-04-13_php-laminas-diactoros.patch"
126+
}
127+
}
128+
},
119129
"scripts": {
120130
"post-install-cmd": [
121131
"php build/update_fido_cache.php"

composer.lock

Lines changed: 56 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libraries/src/Version.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ final class Version
6666
* @var string
6767
* @since 3.8.0
6868
*/
69-
public const EXTRA_VERSION = 'rc3-dev';
69+
public const EXTRA_VERSION = '';
7070

7171
/**
7272
* Development status.
7373
*
7474
* @var string
7575
* @since 3.5
7676
*/
77-
public const DEV_STATUS = 'Development';
77+
public const DEV_STATUS = 'Stable';
7878

7979
/**
8080
* Code name.
@@ -90,15 +90,15 @@ final class Version
9090
* @var string
9191
* @since 3.5
9292
*/
93-
public const RELDATE = '9-April-2024';
93+
public const RELDATE = '16-April-2024';
9494

9595
/**
9696
* Release time.
9797
*
9898
* @var string
9999
* @since 3.5
100100
*/
101-
public const RELTIME = '20:01';
101+
public const RELTIME = '16:00';
102102

103103
/**
104104
* Release timezone.

package-lock.json

Lines changed: 51 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"mark.js": "^8.11.1",
6060
"mediaelement": "^5.1.1",
6161
"metismenujs": "^1.4.0",
62-
"punycode": "^2.3.0",
62+
"punycode": "^2.3.1",
6363
"qrcode-generator": "^1.4.4",
6464
"roboto-fontface": "^0.10.0",
6565
"shepherd.js": "^11.2.0",

0 commit comments

Comments
 (0)