Skip to content

Commit

Permalink
Merge pull request #16384 from phalcon/5.0.x
Browse files Browse the repository at this point in the history
5.2.3 Release
  • Loading branch information
niden authored Jul 26, 2023
2 parents a99d57e + 3c1ad54 commit 54b3b6b
Show file tree
Hide file tree
Showing 228 changed files with 4,477 additions and 2,287 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.2.2
PHALCON_VERSION: 5.2.3
ZEPHIR_PARSER_VERSION: 1.5.3
ZEPHIR_VERSION: 0.17.0

Expand Down
1 change: 1 addition & 0 deletions BACKERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ Thanks for the support
<a href="https://github.com/markofo"><img src="https://avatars.githubusercontent.com/u/59839390?v=4" title="markofo" width="60" height="60"></a>
<a href="https://github.com/levertr"><img src="https://avatars.githubusercontent.com/u/78140431?v=4" title="Rayan Levert" width="60" height="60"></a>
<a href="https://github.com/iogates"><img src="https://avatars.githubusercontent.com/u/86652317?s=200&v=4" title="iogates" width="60" height="60"></a>
<a href="https://github.com/s-ohnishi"><img src="https://avatars.githubusercontent.com/u/6782530?v=4" title="s-ohnishi" width="60" height="60"></a>

[//]: github-sponsors

Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG-5.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [5.2.3](https://github.com/phalcon/cphalcon/releases/tag/v5.2.3) (2023-07-26)

### Fixed
- Tried to reproduce the behavior described in #16244 but had no success. [#16244](https://github.com/phalcon/cphalcon/issues/16244)
- Extended `Phalcon\Di\Injectable` from `stdClass` to remove the deprecation warning (dynamic properties) for PHP 8.2 [#16308](https://github.com/phalcon/cphalcon/issues/16308)
- Corrected the return type of `Phalcon\Mvc\View::getVar()` so that stubs can be accurate. [#16276](https://github.com/phalcon/cphalcon/issues/16276)
- Changed all the `encode`/`decode` methods for JSON to use the `Phalcon\Support\Helper\Json\*` classes. [#15608](https://github.com/phalcon/cphalcon/issues/15608)
- Changed the `Phalcon\Support\Helper\Json\*` classes to clear up `json_last_error()` before doing any conversions. [#15608](https://github.com/phalcon/cphalcon/issues/15608)
- Fixed `Phalcon\Http\Request::getJsonRawBody` to protect from empty body [#16373](https://github.com/phalcon/cphalcon/issues/16373)

### Added
- Added `getAdapter()` in `Phalcon\Mvc\Model\Metadata` to retrieve the internal cache adapter if necessary. [#16244](https://github.com/phalcon/cphalcon/issues/16244)
- Added `Phalcon\Storage\Adapter\Weak` implemented with WeakReference has a cache/retrieval solution for objects not yet collected by the Garbage Collection. [#16372](https://github.com/phalcon/cphalcon/issues/16372)

## [5.2.2](https://github.com/phalcon/cphalcon/releases/tag/v5.2.2) (2023-06-18)

### Fixed
Expand Down
86 changes: 44 additions & 42 deletions composer.lock

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

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.2.2",
"version": "5.2.3",
"verbose": false,
"stubs": {
"path": "ide\/%version%\/%namespace%\/",
Expand Down
8 changes: 5 additions & 3 deletions ext/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@ if test "$PHP_PHALCON" = "yes"; then
phalcon/filter/validation/abstractvalidator.zep.c
phalcon/html/helper/input/abstractinput.zep.c
phalcon/events/eventsawareinterface.zep.c
phalcon/storage/adapter/adapterinterface.zep.c
phalcon/factory/abstractconfigfactory.zep.c
phalcon/support/collection/collectioninterface.zep.c
phalcon/di/abstractinjectionaware.zep.c
phalcon/storage/adapter/adapterinterface.zep.c
phalcon/factory/abstractfactory.zep.c
phalcon/storage/serializer/serializerinterface.zep.c
phalcon/storage/serializer/abstractserializer.zep.c
phalcon/di/injectable.zep.c
phalcon/forms/element/elementinterface.zep.c
phalcon/forms/element/abstractelement.zep.c
phalcon/support/helper/str/abstractstr.zep.c
phalcon/storage/adapter/abstractadapter.zep.c
phalcon/support/helper/str/abstractstr.zep.c
phalcon/support/collection.zep.c
phalcon/support/helper/arr/abstractarr.zep.c
phalcon/storage/serializer/none.zep.c
phalcon/dispatcher/dispatcherinterface.zep.c
phalcon/encryption/crypt/padding/padinterface.zep.c
phalcon/filter/validation/validator/file/abstractfile.zep.c
phalcon/assets/assetinterface.zep.c
phalcon/cache/adapter/adapterinterface.zep.c
phalcon/config/configinterface.zep.c
phalcon/mvc/model/metadatainterface.zep.c
phalcon/cache/adapter/adapterinterface.zep.c
phalcon/config/config.zep.c
phalcon/datamapper/query/abstractquery.zep.c
phalcon/db/adapter/adapterinterface.zep.c
Expand Down Expand Up @@ -180,6 +180,7 @@ if test "$PHP_PHALCON" = "yes"; then
phalcon/storage/adapter/memory.zep.c
phalcon/storage/adapter/redis.zep.c
phalcon/storage/adapter/stream.zep.c
phalcon/storage/adapter/weak.zep.c
phalcon/storage/serializer/igbinary.zep.c
phalcon/acl/adapter/memory.zep.c
phalcon/acl/component.zep.c
Expand Down Expand Up @@ -214,6 +215,7 @@ if test "$PHP_PHALCON" = "yes"; then
phalcon/cache/adapter/memory.zep.c
phalcon/cache/adapter/redis.zep.c
phalcon/cache/adapter/stream.zep.c
phalcon/cache/adapter/weak.zep.c
phalcon/cache/adapterfactory.zep.c
phalcon/cache/cache.zep.c
phalcon/cache/cachefactory.zep.c
Expand Down
Loading

0 comments on commit 54b3b6b

Please sign in to comment.