Skip to content

Commit

Permalink
Merge pull request #16547 from niden/5.0.x
Browse files Browse the repository at this point in the history
5.6.2 Prep
  • Loading branch information
niden authored Mar 14, 2024
2 parents ca3ba02 + 057fb73 commit 0e50ba3
Show file tree
Hide file tree
Showing 12 changed files with 191 additions and 117 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

env:
# All versions should be declared here
PHALCON_VERSION: 5.6.1
PHALCON_VERSION: 5.6.2
ZEPHIR_PARSER_VERSION: 1.6.0

# For tests
Expand Down
139 changes: 89 additions & 50 deletions build/phalcon/phalcon.zep.c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/phalcon/php_phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ typedef zend_function zephir_fcall_cache_entry;


#define PHP_PHALCON_NAME "phalcon"
#define PHP_PHALCON_VERSION "5.6.1"
#define PHP_PHALCON_VERSION "5.6.2"
#define PHP_PHALCON_EXTNAME "phalcon"
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
#define PHP_PHALCON_ZEPVERSION "0.18.0-$Id$"
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "phalcon",
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
"author": "Phalcon Team and contributors",
"version": "5.6.1",
"version": "5.6.2",
"verbose": false,
"stubs": {
"path": "ide\/%version%\/%namespace%\/",
Expand Down
4 changes: 2 additions & 2 deletions ext/phalcon/db/adapter/pdo/postgresql.zep.c

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

2 changes: 1 addition & 1 deletion ext/phalcon/di/abstractinjectionaware.zep.c

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

131 changes: 85 additions & 46 deletions ext/phalcon/mvc/view/engine/volt/compiler.zep.c

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions ext/phalcon/support/helperfactory.zep.c

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

2 changes: 1 addition & 1 deletion ext/phalcon/support/version.zep.c

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

2 changes: 1 addition & 1 deletion ext/php_phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "kernel/globals.h"

#define PHP_PHALCON_NAME "phalcon"
#define PHP_PHALCON_VERSION "5.6.1"
#define PHP_PHALCON_VERSION "5.6.2"
#define PHP_PHALCON_EXTNAME "phalcon"
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
#define PHP_PHALCON_ZEPVERSION "0.18.0-$Id$"
Expand Down
17 changes: 5 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<email>nikos@phalcon.io</email>
<active>yes</active>
</lead>
<date>2024-02-08</date>
<date>2024-03-14</date>
<time>17:00:00</time>
<version>
<release>5.6.1</release>
<api>5.6.1</api>
<release>5.6.2</release>
<api>5.6.2</api>
</version>
<stability>
<release>stable</release>
Expand All @@ -38,15 +38,8 @@

### Changed

- Changed `Phalcon\Cli\Router::setDefaultAction` and `Phalcon\Cli\Router::setDefaultModule` to return the object back for a fluent interface [#16328](https://github.com/phalcon/cphalcon/issues/16328)

### Fixed

- Fixed `Phalcon\Db\Adapter\Pdo\Postgresql::describeColumns()` to return the correct string back [#16371](https://github.com/phalcon/cphalcon/issues/16371)
- Fixed `Phalcon/Filter/Validation::validate()` and `Phalcon/Filter/Validation/ValidationInterface::validate()` to return also `bool` [#16337](https://github.com/phalcon/cphalcon/issues/16337)
- Fixed `Phalcon\Mvc\Model::toArray` to ignore getters when the field name is `source`. [#16514](https://github.com/phalcon/cphalcon/issues/16514)
- Fixed `Phalcon\Http\Request::getPut` to correctly get form encoded data [#16519](https://github.com/phalcon/cphalcon/issues/16519)
- Fixed deprecation warning in callables `Use of "static" in callables is deprecated` for PHP 8.2+ [#16263](https://github.com/phalcon/cphalcon/issues/16263)
- Changed `Phalcon\Mvc\View\Engine\Volt\Compiler::filter` to use the helper with `upper` and `lower` for UTF-8 characters [#16543](https://github.com/phalcon/cphalcon/issues/16543)
- Changed `Phalcon\Di\AbstractInjectionAware` to extend `stdClass` for PHP 8.2 deprecation warnings [#16543](https://github.com/phalcon/cphalcon/issues/16543)

</notes>
<contents>
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Support/Version.zep
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class Version
*/
protected function getVersion() -> array
{
return [5, 6, 1, 4, 0];
return [5, 6, 2, 4, 0];
}

/**
Expand Down

0 comments on commit 0e50ba3

Please sign in to comment.