Skip to content

Commit

Permalink
Release Joomla! 5.3.0 Alpha 1
Browse files Browse the repository at this point in the history
  • Loading branch information
bembelimen committed Nov 20, 2024
1 parent 04d4276 commit f8e9b9e
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class HtmlView extends BaseHtmlView
*
* @var object
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $state;

Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
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>5.3.0-alpha1-dev</version>
<version>5.3.0-alpha1</version>
<creationDate>2024-11</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

Expand Down
18 changes: 9 additions & 9 deletions libraries/src/Component/Router/Rules/PreprocessRules.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* simply drop the alias from the &id= in the future. Cleaning up
* every request with this would mean a significant performance impact
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class PreprocessRules implements RulesInterface
{
Expand All @@ -37,31 +37,31 @@ class PreprocessRules implements RulesInterface
* View to prepare
*
* @var RouterViewConfiguration
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $view;

/**
* DB Table to read the information from
*
* @var string
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $table;

/**
* ID column in the table to read the information from
*
* @var string
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $key;

/**
* Parent ID column in the table to read the information from
*
* @var string
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $parent_key;

Expand All @@ -73,7 +73,7 @@ class PreprocessRules implements RulesInterface
* @param string $key Key in the table to get the information
* @param string $parent_key Column name of the parent key
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function __construct(RouterViewConfiguration $view, $table, $key, $parent_key = null)
{
Expand All @@ -90,7 +90,7 @@ public function __construct(RouterViewConfiguration $view, $table, $key, $parent
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function preprocess(&$query)
{
Expand Down Expand Up @@ -146,7 +146,7 @@ public function preprocess(&$query)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
* @codeCoverageIgnore
*/
public function parse(&$segments, &$vars)
Expand All @@ -161,7 +161,7 @@ public function parse(&$segments, &$vars)
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
* @codeCoverageIgnore
*/
public function build(&$query, &$segments)
Expand Down
10 changes: 5 additions & 5 deletions libraries/src/Form/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Form implements CurrentUserInterface
* Array containing name => [value => value, attributes => []] for each field.
*
* @var array
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $controlFields = ['joomla.form.token' => []];

Expand Down Expand Up @@ -1888,7 +1888,7 @@ public function getFieldXml($name, $group = null)
*
* @return static
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function addControlField(string $name, string $value = '', array $attributes = []): static
{
Expand All @@ -1907,7 +1907,7 @@ public function addControlField(string $name, string $value = '', array $attribu
*
* @return static
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function removeControlField(string $name): static
{
Expand All @@ -1921,7 +1921,7 @@ public function removeControlField(string $name): static
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function getControlFields(): array
{
Expand All @@ -1933,7 +1933,7 @@ public function getControlFields(): array
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function renderControlFields(): string
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/MVC/View/AbstractView.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ abstract public function display($tpl = null);
*
* @since 3.0
*
* @deprecated __DEPLOY_VERSION__ will be removed in 7.0.
* @deprecated 5.3.0 will be removed in 7.0.
* Retrieve the model with $model = $this->getModel(); and call the methods
* to the model directly, e.g. $model->getItems() instead of $this->get('Items').
*/
Expand Down
4 changes: 2 additions & 2 deletions libraries/src/String/StringableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* A transitioning interface to PHP implicit \Stringable interface
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
interface StringableInterface
{
Expand All @@ -25,7 +25,7 @@ interface StringableInterface
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function __toString(): string;
}
8 changes: 4 additions & 4 deletions libraries/src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,23 +66,23 @@ final class Version
* @var string
* @since 3.8.0
*/
public const EXTRA_VERSION = 'alpha1-dev';
public const EXTRA_VERSION = 'alpha1';

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

/**
* Code name.
*
* @var string
* @since 3.5
*/
public const CODENAME = 'Uthabiti';
public const CODENAME = 'Timu';

/**
* Release date.
Expand All @@ -98,7 +98,7 @@ final class Version
* @var string
* @since 3.5
*/
public const RELTIME = '00:00';
public const RELTIME = '17:00';

/**
* Release timezone.
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/checkboxes/src/Extension/Checkboxes.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class Checkboxes extends FieldsListPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/list/src/Extension/ListPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class ListPlugin extends FieldsListPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/media/src/Extension/Media.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final class Media extends FieldsPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/radio/src/Extension/Radio.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class Radio extends FieldsListPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/sql/src/Extension/SQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ final class SQL extends FieldsListPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/fields/subform/src/Extension/Subform.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ final class Subform extends FieldsPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public static function getSubscribedEvents(): array
{
Expand Down

0 comments on commit f8e9b9e

Please sign in to comment.