Skip to content

Commit

Permalink
Joomla! 4.4.4 Stable
Browse files Browse the repository at this point in the history
  • Loading branch information
MacJoom committed Apr 14, 2024
1 parent 45adb61 commit 92f2ffb
Show file tree
Hide file tree
Showing 7 changed files with 136 additions and 53 deletions.
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Expand Up @@ -6,7 +6,7 @@
<authorUrl>www.joomla.org</authorUrl>
<copyright>(C) 2019 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>4.4.4-rc3-dev</version>
<version>4.4.4</version>
<creationDate>2024-04</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
@@ -0,0 +1,11 @@
--- a/src/HeaderSecurity.php
+++ b/src/HeaderSecurity.php
@@ -155,7 +155,7 @@ public static function assertValidName($name): void
is_object($name) ? $name::class : gettype($name)
));
}
- if (! preg_match('/^[a-zA-Z0-9\'`#$%&*+.^_|~!-]+$/', $name)) {
+ if (! preg_match('/^[a-zA-Z0-9\'`#$%&*+.^_|~!-]+$/D', $name)) {
throw new Exception\InvalidArgumentException(sprintf(
'"%s" is not valid header name',
$name
14 changes: 12 additions & 2 deletions composer.json
Expand Up @@ -16,7 +16,8 @@
"vendor-dir": "libraries/vendor",
"github-protocols": ["https"],
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"support": {
Expand Down Expand Up @@ -102,7 +103,8 @@
"web-token/signature-pack": "^2.2.11",
"phpseclib/bcmath_compat": "^2.0.1",
"jfcherng/php-diff": "^6.10.14",
"voku/portable-utf8": "6.0.12 as 5.4.0"
"voku/portable-utf8": "6.0.12 as 5.4.0",
"cweagans/composer-patches": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.5.34",
Expand All @@ -116,6 +118,14 @@
"replace": {
"paragonie/random_compat": "9.99.99"
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"laminas/laminas-diactoros": {
"Fixes HTTP Multiline Header Termination": "./build/composer_patches/4.4.4-2024-04-13_php-laminas-diactoros.patch"
}
}
},
"scripts": {
"post-install-cmd": [
"php build/update_fido_cache.php"
Expand Down
64 changes: 56 additions & 8 deletions composer.lock

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

8 changes: 4 additions & 4 deletions libraries/src/Version.php
Expand Up @@ -66,15 +66,15 @@ final class Version
* @var string
* @since 3.8.0
*/
public const EXTRA_VERSION = 'rc3-dev';
public const EXTRA_VERSION = '';

/**
* Development status.
*
* @var string
* @since 3.5
*/
public const DEV_STATUS = 'Development';
public const DEV_STATUS = 'Stable';

/**
* Code name.
Expand All @@ -90,15 +90,15 @@ final class Version
* @var string
* @since 3.5
*/
public const RELDATE = '9-April-2024';
public const RELDATE = '16-April-2024';

/**
* Release time.
*
* @var string
* @since 3.5
*/
public const RELTIME = '20:01';
public const RELTIME = '16:00';

/**
* Release timezone.
Expand Down
88 changes: 51 additions & 37 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
Expand Up @@ -59,7 +59,7 @@
"mark.js": "^8.11.1",
"mediaelement": "^5.1.1",
"metismenujs": "^1.4.0",
"punycode": "^2.3.0",
"punycode": "^2.3.1",
"qrcode-generator": "^1.4.4",
"roboto-fontface": "^0.10.0",
"shepherd.js": "^11.2.0",
Expand Down

0 comments on commit 92f2ffb

Please sign in to comment.