Skip to content

Commit 25c7de5

Browse files
authored
Merge pull request #16193 from phalcon/5.0.x
5.1.0
2 parents 8ff7af5 + a4671ad commit 25c7de5

File tree

239 files changed

+5874
-4257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+5874
-4257
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.0.5
22+
PHALCON_VERSION: 5.1.0
2323
ZEPHIR_PARSER_VERSION: 1.5.1
2424
ZEPHIR_VERSION: 0.16.3
2525

@@ -86,7 +86,8 @@ jobs:
8686
fail-fast: false
8787
matrix:
8888
php: [ '7.4', '8.0', '8.1' ]
89-
ts: [ 'nts', 'ts' ]
89+
ts: [ 'nts' ]
90+
# ts: [ 'nts', 'ts' ] // disabling TS for the release
9091
arch: [ 'x64' ]
9192

9293
name:

CHANGELOG-5.0.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
# [5.0.5](https://github.com/phalcon/cphalcon/releases/tag/v5.0.5) (xxxx-xx-xx)
1+
# [5.1.0](https://github.com/phalcon/cphalcon/releases/tag/v5.1.0) (2022-11-01)
2+
3+
## Fixed
4+
- Fixed `Phalcon\Mvc\View\Engine\Volt\Compiler::isTagFactory` to correctly detect a `TagFactory` object without throwing an error [#16097](https://github.com/phalcon/cphalcon/issues/16097)
5+
- Fixed default values for `Phalcon\Cli`, `Phalcon\Dispatcher` and `Phalcon\Application` components to ensure not `null` values are passed to methods [#16186](https://github.com/phalcon/cphalcon/issues/16186)
6+
- Fixed `Phalcon\Form::clear` to correctly clear the elements and not recurse [#15956](https://github.com/phalcon/cphalcon/issues/15956)
7+
8+
## Added
9+
- Added `Phalcon\Http\Request::getPatch()` to get a value from a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
10+
- Added `Phalcon\Http\Request::getFilteredPatch()` to get a value filtered from a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
11+
- Added `Phalcon\Http\Request::hasPatch()` to check if a value exist in a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
12+
13+
# [5.0.5](https://github.com/phalcon/cphalcon/releases/tag/v5.0.5) (2022-10-24)
214

315
## Fixed
416
- Fixed `Phalcon\Config\Config::setData` to pass the `insensitive` flag to child objects [#16171](https://github.com/phalcon/cphalcon/issues/16171)

build/phalcon/phalcon.zep.c

Lines changed: 1546 additions & 1055 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/phalcon/phalcon.zep.h

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/phalcon/php_phalcon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ typedef zend_function zephir_fcall_cache_entry;
103103

104104

105105
#define PHP_PHALCON_NAME "phalcon"
106-
#define PHP_PHALCON_VERSION "5.0.5"
106+
#define PHP_PHALCON_VERSION "5.1.0"
107107
#define PHP_PHALCON_EXTNAME "phalcon"
108108
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
109109
#define PHP_PHALCON_ZEPVERSION "0.16.3-5099f34"

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "phalcon",
44
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
55
"author": "Phalcon Team and contributors",
6-
"version": "5.0.5",
6+
"version": "5.1.0",
77
"verbose": false,
88
"stubs": {
99
"path": "ide\/%version%\/%namespace%\/",

ext/phalcon/acl/adapter/adapterinterface.zep.c

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/phalcon/acl/adapter/memory.zep.c

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/phalcon/application/abstractapplication.zep.c

Lines changed: 14 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/phalcon/assets/asset.zep.c

Lines changed: 1 addition & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)