Accepting request 1146488 from server:php:extensions

- 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]
- Minimum required PHP version is 8.0.0

OBS-URL: https://build.opensuse.org/request/show/1146488
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/php-phalcon?expand=0&rev=14
This commit is contained in:
2024-02-14 22:19:03 +00:00
committed by Git OBS Bridge
4 changed files with 27 additions and 12 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:417a0b39acebad34608d33ba88aa0ddc0849d45a7e4f107c1e8399f50a338916
size 964979

3
phalcon-5.6.1.tgz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9842c0f75e89ae64cc33f1a2e517eaa014eeef47994d9a438bfa1ac00b6fdd54
size 963628

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Tue Feb 13 21:38:26 UTC 2024 - Arjen de Korte <suse+build@de-korte.org>
- 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]
- Minimum required PHP version is 8.0.0
-------------------------------------------------------------------
Sat Jan 20 20:17:55 UTC 2024 - Arjen de Korte <suse+build@de-korte.org>

View File

@@ -19,7 +19,7 @@
%define pkg_name phalcon
%define flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "" || (0%{?suse_version} >= 1550 && "%{flavor}" == "php7")
%if "%{flavor}" == "" || "%{flavor}" == "php7"
%define php_name php
ExclusiveArch: do-not-build
%else
@@ -31,7 +31,7 @@ ExclusiveArch: do-not-build
%endif
Name: %{php_name}-%{pkg_name}
Version: 5.6.0
Version: 5.6.1
Release: 0
Summary: PHP Extension Module
License: BSD-3-Clause
@@ -44,16 +44,11 @@ BuildRequires: %{php_name}-devel
BuildRequires: %{php_name}-pdo
BuildRequires: %{php_name}-psr >= 0.7.0
BuildRequires: gcc
%if "%{php_name}" == "php7"
BuildRequires: %{php_name} >= 7.4.1
BuildRequires: %{php_name}-json
%else
BuildRequires: %{php_name} < 8.3
%endif
BuildRequires: %{php_name} < 8.4
Requires: %{php_name}-mysql
%description
Phalcon is a framework for PHP7 written as a C extension.
Phalcon is a framework for PHP8 written as a C extension.
Zephir is a high-level language, something between C and PHP. It is
both dynamic and static typed and it supports the features we need to
create and maintain a project like Phalcon.