Skip to content

Commit

Permalink
Release Joomla! 5.3.0 Alpha 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bembelimen committed Dec 15, 2024
1 parent f257ff6 commit 5d64e9a
Show file tree
Hide file tree
Showing 19 changed files with 47 additions and 47 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Logs list controller class.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class LogsController extends AdminController
{
Expand All @@ -31,7 +31,7 @@ class LogsController extends AdminController
*
* @var string
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $text_prefix = 'COM_SCHEDULER_LOGS';

Expand All @@ -44,7 +44,7 @@ class LogsController extends AdminController
*
* @return \Joomla\CMS\MVC\Model\BaseDatabaseModel
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function getModel($name = 'Logs', $prefix = 'Administrator', $config = ['ignore_request' => true])
{
Expand All @@ -56,7 +56,7 @@ public function getModel($name = 'Logs', $prefix = 'Administrator', $config = ['
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function purge()
{
Expand All @@ -81,7 +81,7 @@ public function purge()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function delete(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
/**
* A predefined list field with all possible states for a com_scheduler entry.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class ExitCodeField extends PredefinedlistField
{
/**
* The form field type.
*
* @var string
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public $type = 'exitCode';

/**
* Available states
*
* @var string[]
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $predefinedOptions = [
5 => 'COM_SCHEDULER_EXIT_CODE_FAILED',
Expand Down
16 changes: 8 additions & 8 deletions administrator/components/com_scheduler/src/Model/LogsModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Supporting a list of logs.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class LogsModel extends ListModel
{
Expand All @@ -35,7 +35,7 @@ class LogsModel extends ListModel
* @param MVCFactoryInterface $factory The factory.
*
* @see \JControllerLegacy
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function __construct($config = [], ?MVCFactoryInterface $factory = null)
{
Expand All @@ -61,7 +61,7 @@ public function __construct($config = [], ?MVCFactoryInterface $factory = null)
*
* @return boolean result of operation
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function purge()
{
Expand All @@ -84,7 +84,7 @@ public function purge()
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function populateState($ordering = 'a.id', $direction = 'desc')
{
Expand All @@ -107,7 +107,7 @@ protected function populateState($ordering = 'a.id', $direction = 'desc')
*
* @return string A store id.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function getStoreId($id = '')
{
Expand All @@ -125,7 +125,7 @@ protected function getStoreId($id = '')
*
* @return \JDatabaseQuery
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function getListQuery()
{
Expand Down Expand Up @@ -227,7 +227,7 @@ public function delete($pks)
*
* @return boolean True if the record may be deleted
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
* @throws \Exception
*/
protected function canDelete($record): bool
Expand All @@ -245,7 +245,7 @@ protected function canDelete($record): bool
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
* @throws Exception
*/
public function logTask(array $data): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Logs Table class.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class LogsTable extends Table
{
Expand All @@ -31,7 +31,7 @@ class LogsTable extends Table
* @param DatabaseDriver $db Database connector object
* @param ?DispatcherInterface $dispatcher Event dispatcher for this table
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function __construct(DatabaseDriver $db, ?DispatcherInterface $dispatcher = null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ protected function _getAssetName(): string
*
* @return string
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function _getAssetTitle(): string
{
Expand All @@ -191,7 +191,7 @@ protected function _getAssetTitle(): string
*
* @return integer
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function _getAssetParentId(?Table $table = null, $id = null): int
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,47 +28,47 @@
/**
* View class for a list of logs.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class HtmlView extends BaseHtmlView
{
/**
* The search tools form
*
* @var Form
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public $filterForm;

/**
* The active search filters
*
* @var array
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public $activeFilters = [];

/**
* An array of items
*
* @var array
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $items = [];

/**
* The pagination object
*
* @var Pagination
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $pagination;

/**
* The model state
*
* @var Registry
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $state;

Expand All @@ -79,7 +79,7 @@ class HtmlView extends BaseHtmlView
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
* @throws \Exception
*/
public function display($tpl = null): void
Expand All @@ -106,7 +106,7 @@ public function display($tpl = null): void
*
* @return void
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected function addToolbar(): void
{
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="administrator">
<name>English (en-GB)</name>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
4 changes: 2 additions & 2 deletions administrator/manifests/files/joomla.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<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-alpha2-dev</version>
<creationDate>2024-11</creationDate>
<version>5.3.0-alpha2</version>
<creationDate>2024-12</creationDate>
<description>FILES_JOOMLA_XML_DESCRIPTION</description>

<scriptfile>administrator/components/com_admin/script.php</scriptfile>
Expand Down
2 changes: 1 addition & 1 deletion administrator/manifests/packages/pkg_en-GB.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB) Language Pack</name>
<packagename>en-GB</packagename>
<version>5.3.0.1</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion api/language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion api/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="api">
<name>English (en-GB)</name>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="installation">
<name>English (United Kingdom)</name>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>English (en-GB)</name>
<tag>en-GB</tag>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
2 changes: 1 addition & 1 deletion language/en-GB/langmetadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<metafile client="site">
<name>English (en-GB)</name>
<version>5.3.0</version>
<creationDate>2024-11</creationDate>
<creationDate>2024-12</creationDate>
<author>Joomla! Project</author>
<authorEmail>admin@joomla.org</authorEmail>
<authorUrl>www.joomla.org</authorUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Class for update site events
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
class BeforeUpdateSiteDownloadEvent extends BeforePackageDownloadEvent
{
Expand Down
6 changes: 3 additions & 3 deletions libraries/src/Router/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Router
* flag can be set to true to mark the URL as erroneous.
*
* @var bool
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
protected $tainted = false;

Expand Down Expand Up @@ -384,7 +384,7 @@ public function getRules()
* can later do additional processing, like redirecting to the right URL.
* If the URL is demonstrably wrong, it should still throw a 404 exception.
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function setTainted()
{
Expand All @@ -396,7 +396,7 @@ public function setTainted()
*
* @return bool
*
* @since __DEPLOY_VERSION__
* @since 5.3.0
*/
public function isTainted()
{
Expand Down
Loading

0 comments on commit 5d64e9a

Please sign in to comment.