Revisions of php-phalcon

buildservice-autocommit accepted request 1159025 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 34)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1158085 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 33)
- update to 5.6.2
  * Changed `Phalcon\Mvc\View\Engine\Volt\Compiler::filter` to use the
    helper with `upper` and `lower` for UTF-8 characters [#16543]
  * Changed `Phalcon\Di\AbstractInjectionAware` to extend `stdClass` for
    PHP 8.2 deprecation warnings [#16543]
buildservice-autocommit accepted request 1146488 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 32)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) committed (revision 31)
- Minimum required PHP version is 8.0.0
Arjen de Korte's avatar Arjen de Korte (adkorte) committed (revision 30)
- update to 5.6.1
  * Changed `Phalcon\Cli\Router::setDefaultAction` and
    `Phalcon\Cli\Router::setDefaultModule` to return the object back for a
    fluent interface [#16328]
  * Fixed `Phalcon\Db\Adapter\Pdo\Postgresql::describeColumns()` to return
    the correct string back [#16371]
  * Fixed `Phalcon/Filter/Validation::validate()` and
    `Phalcon/Filter/Validation/ValidationInterface::validate()` to return
    also `bool` [#16337]
  * Fixed `Phalcon\Mvc\Model::toArray` to ignore getters when the field
    name is `source`. [#16514]
  * Fixed `Phalcon\Http\Request::getPut` to correctly get form encoded data
    [#16519]
  * Fixed deprecation warning in callables `Use of "static" in callables is
    deprecated` for PHP 8.2+ [#16263]
buildservice-autocommit accepted request 1141264 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 29)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1140211 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 28)
- update to 5.6.0
  * Changed `Phalcon\Db\Adapter\Pdo\Mysql` to not use specific flags for
    `PDO` (`PDO::ATTR_EMULATE_PREPARES` or `PDO::ATTR_STRINGIFY_FETCHES`)
    for performance reasons [#16474]
  * Merged `Phalcon\Db\AbstractDb` with `Phalcon\Db\Adapter\AbstractAdapter`
    since the former was not used [#16474]
  * Added `resetColumns()`, `resetFrom()`, `resetWhere()`, `resetGroupBy()`,
    `resetHaving()`, `resetOrderBy()`, `resetLimit()`, `resetFlags()` to
    the `Phalcon\Datamapper\Query\AbstractQuery` to allow resetting query
    filters.
  * Fixed `Phalcon\Mvc\Model::count` to ignore the `order` parameter (needed
    for Posgresql) [#16471]
  * Fixed `Phalcon\Mvc\Model::toArray` added parameter to ignore getters in
    order not to break serialize. [#16490]
  * Fixed `Phalcon\Mvc\Model::toArray` changing the conditionals for
    population to remove segfault. [#16498]
- update to 5.5.0
  * Shifted minimal support from PHP 7.4 to PHP 8.0 [#16477]
  * Changed `Phalcon\Mvc\Model::toArray` to use getters if present [#16320]
  * Adjusted return types identical to original interface `int|false` in
    `Phalcon\Session\Adapter\*::gc()` [#16477]
  * Changed return type of `Phalcon\Config\Adapter\Ini::cast()` to `mixed`
    [#16477]
  * Added support for PHP 8.3 [#16477]
  * Fixed `Phalcon\Filter\Validation\Validator\Numericality` to return
    false when input has spaces [#16461]
  * Fixed `Phalcon\Mvc\Model\ResultsetSimple::toArray` to ignore numeric
    indexes in case results come as not `fetch_assoc` [#16467]
buildservice-autocommit accepted request 1120925 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 27)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1120924 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 26)
- update to 5.4.0
  * Changed `Phalcon\Mvc\Model::getMessages()` to also filter with an
    array of fields [#16265]
  * Changed `Phalcon\DataMapper\Query\Select::columns()` to accept an
    array of columns (keys as aliases) instead of `func_get_args` [#16451]
  * Changed `Phalcon\Html\Helper\AbstractSeries::__invoke()` to no longer
    clear the internal store when called [#16441]
  * Added the ability to define interpolator characters for the
    `Phalcon\Logger\Formatter\Line` [#16430]
  * Added `Phalcon\Html\Helper\AbstractSeries::reset()` to clear the
    internal store when needed [#16441]
  * Model Annotation strategy did not work with empty_string [#16426]
  * View::reset() sets content to null instead of default empty string
    [#16437]
  * Fixed `Phalcon\Filter\Validation\Validator\Size\*` validators to
    correctly detect the size of uploaded files [#16390]
buildservice-autocommit accepted request 1114448 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 25)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1114136 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 24)
- update to 5.3.1
  * Fixed infinite save loop in `Phalcon\Mvc\Model::save()` [#16395]
  * Fixed undefined column with columnMap and model caching [#16420]
  * Fixed memory leak in `Phalcon\Mvc\Router::handle()` [#16431]
buildservice-autocommit accepted request 1105146 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 23)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1104474 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 22)
- update to 5.3.0
  * Added `Phalcon\Mvc\Model::appendMessagedFrom` for code consistency
    and to add messages from another model [#16391]
  * Added `Phalcon\Autoload\Loader::isRegistered` for debugging purposes
    [#16391]
  * Added `Phalcon\Mvc\Model\Metadata::initializeMetadata` [#16393]
  * Added `Phalcon\Mvc\Model\Metadata::getMetaDataUniqueKey` [#16393]
  * Added `Phalcon\Mvc\Model\Metadata::getColumnMapUniqueKey` [#16393]
  * Added `Phalcon\Encryption\Security\JWT\Builder::addHeader()` to allow
    adding custom headers [#16396]
  * Refactored `Phalcon\Mvc\Model::doLowUpdate` and
    `Phalcon\Mvc\Model::postSaveRelatedRecords` for better code logic and
    a clearer separation of behaviour, although it lead to partially
    repeated code. [#16391]
  * Cleaned `Phalcon\Mvc\Model\Metadata::initialize` [#16393]
  * Parse multipart/form-data from PUT request [#16271]
  * Set Dynamic Update by default system-wide [#16343]
  * Fixed memory leak in Micro application [#16404]
- update to 5.2.3
  * Tried to reproduce the behavior described in #16244 but had no
    success. [#16244]
  * Extended `Phalcon\Di\Injectable` from `stdClass` to remove the
    deprecation warning (dynamic properties) for PHP 8.2 [#16308]
  * Corrected the return type of `Phalcon\Mvc\View::getVar()` so that
    stubs can be accurate. [#16276]
  * Changed all the `encode`/`decode` methods for JSON to use the
    `Phalcon\Support\Helper\Json\*` classes. [#15608]
  * Changed the `Phalcon\Support\Helper\Json\*` classes to clear up
    `json_last_error()` before doing any conversions. [#15608]
  * Fixed `Phalcon\Http\Request::getJsonRawBody` to protect from empty
buildservice-autocommit accepted request 1095256 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 21)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1094730 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 20)
- update to 5.2.2
  * Fixed `Encryption\Crypt::checkCipherHashIsAvailable` to allow
    proper setting of the hash [#16314]
  * Removed `unlikely` from `if` statements from the Stream storage
    adapter and Json serializer [#16339]
  * Fixed `Storage\Adapter\Stream::get()/set()` to correctly calculate
    the path if the prefix is present in the key [#16348]
  * Fixed `Html\Helper\Input\Checkbox` to correctly process empty
    values [#15959]
buildservice-autocommit accepted request 1069855 from Johannes Weberhofer's avatar Johannes Weberhofer (weberho) (revision 19)
baserev update by copy to link target
Johannes Weberhofer's avatar Johannes Weberhofer (weberho) accepted request 1069493 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 18)
- update to 5.2.1
  * Fixed compilation under PHP 8.2 [#16293]
- update to 5.2.0
  * Fixed `Phalcon\Html\Helper\Title::prepend` to correctly prepend
    text in subsequent calls [#16283]
  * Added support for PHP 8.2 [#15973]
buildservice-autocommit accepted request 1058359 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 17)
baserev update by copy to link target
Arjen de Korte's avatar Arjen de Korte (adkorte) accepted request 1058358 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 16)
- update to 5.1.4
  * Fixed `Phalcon\Acl\Adapter\Memory::isAllowed` to not use the
    deprecated `ReflectionType::getClass` [#16255]
- update to 5.1.3
  * Fixed `Phalcon\Mvc\Micro::handle` to type check an object for the
    `finish` [#16240]
  * Fixed `Phalcon\DI\Service::resolve` to not call the `get()` from
    the container and cause an infinite loop [#15032]
buildservice-autocommit accepted request 1041988 from Arjen de Korte's avatar Arjen de Korte (adkorte) (revision 15)
baserev update by copy to link target
Displaying revisions 1 - 20 of 34
openSUSE Build Service is sponsored by