From e03ee27cba5d3ae4e05ff8bab88a48dc02fa9363 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Wed, 24 Apr 2019 16:43:25 -0400 Subject: [PATCH] [#13439] - Msgpack prereqs and upped the version to a5 --- .ci/install-prereqs.sh | 5 +++++ CHANGELOG-4.0.md | 5 +++-- appveyor.yml | 2 +- config.json | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.ci/install-prereqs.sh b/.ci/install-prereqs.sh index 8c11588ca3b..86916432fd0 100755 --- a/.ci/install-prereqs.sh +++ b/.ci/install-prereqs.sh @@ -38,6 +38,11 @@ printf "\n" | pecl install --force memcached 1> /dev/null echo 'extension="memcached.so"' > $(phpenv root)/versions/$(phpenv version-name)/etc/conf.d/memcached.ini # }}} +# {{{ Install latest msgpack +printf "\n" | pecl install --force msgpack 1> /dev/null +#echo 'extension="msgpack.so"' > $(phpenv root)/versions/$(phpenv version-name)/etc/conf.d/msgpack.ini +# }}} + # {{{ Install latest xdebug phpenv config-rm xdebug.ini 2>&1 >/dev/null || true if [[ "$PHP_VERNUM" -lt "70300" ]]; diff --git a/CHANGELOG-4.0.md b/CHANGELOG-4.0.md index 559adcee244..e44ca25f555 100644 --- a/CHANGELOG-4.0.md +++ b/CHANGELOG-4.0.md @@ -15,7 +15,7 @@ - `Phalcon\Translate\InterpolatorInterface` now only accepts placeholder arrays. [#13939](https://github.com/phalcon/cphalcon/pull/13939) - `Phalcon\Dispatcher::forward()` and `Phalcon\Dispatcher::setParams()` now require an array as a parameter. [#13935](https://github.com/phalcon/cphalcon/pull/13935) - CLI Routes with bad class names (eg. `MyApp\\Tasks\\`) now throw an exception instead of suppressing the error. [#13936](https://github.com/phalcon/cphalcon/pull/13936) -- Refacted `Phalcon\Mvc\Collection\Behavior\SoftDelete` and `Phalcon\Mvc\Model\Behavior\SoftDelete`. [#13930](https://github.com/phalcon/cphalcon/pull/13930) +- Refactored `Phalcon\Mvc\Collection\Behavior\SoftDelete` and `Phalcon\Mvc\Model\Behavior\SoftDelete`. [#13930](https://github.com/phalcon/cphalcon/pull/13930) - Model methods that extend Model Manager functionality are now `final`. [#13950](https://github.com/phalcon/cphalcon/pull/13950) - Changed `Phalcon\Text` to call methods from `Phalcon\Helper\Str` [#13954](https://github.com/phalcon/cphalcon/pull/13954) - Setting the views directory no longer requires a trailing slash when using Simple View. @@ -30,7 +30,7 @@ ## Fixed - Fixed `Mvc\Collection::isInitialized()` now works as intended. [#13931](https://github.com/phalcon/cphalcon/pull/13931) - Update docblocks to show that we can no longer assign properties via `save()` in models (as per #12317). [#13945](https://github.com/phalcon/cphalcon/pull/13945) -- Fixed `Mvc\Model` and `Mvc\ModelInterface` `findFirst` to return `ModelInterface` or `bool [#13947](https://github.com/phalcon/cphalcon/issues/13947) +- Fixed `Mvc\Model` and `Mvc\ModelInterface` `findFirst` to return `ModelInterface` or `bool` [#13947](https://github.com/phalcon/cphalcon/issues/13947) - `Phalcon\Acl\Adapter\Memory::dropComponentAccess()` now properly unsets values. - Volt options 'separator' and 'extension' now work again. [#13971](https://github.com/phalcon/cphalcon/issues/13971) - Query Builder's `GROUP BY` field is now always an array. [#13962](https://github.com/phalcon/cphalcon/pull/13962) @@ -45,6 +45,7 @@ - Removed `arrayHelpers` property from the Volt compiler. [#13925](https://github.com/phalcon/cphalcon/pull/13925) - Removed legacy (PHP <5.5) code from GD image adapter. - Removed support for HTTP_CONTENT_TYPE header (a bug in PHP 5). [#14013](https://github.com/phalcon/cphalcon/pull/14013) +- Removed `Mvc\Model\MetaData\Session` adapter (no longer supported) [#13439](https://github.com/phalcon/cphalcon/pull/13439) # [4.0.0-alpha.4](https://github.com/phalcon/cphalcon/releases/tag/v4.0.0-alpha.4) (2019-03-31) ## Added diff --git a/appveyor.yml b/appveyor.yml index e1ac05c57ab..cc9b095dd4a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,7 +5,7 @@ # For the full copyright and license information, please view # the LICENSE.txt file that was distributed with this source code. -version: 4.0.0-alpha.4+{build} +version: 4.0.0-alpha.5+{build} environment: matrix: diff --git a/config.json b/config.json index a5fcbd8390b..9fd31af6edf 100644 --- a/config.json +++ b/config.json @@ -10,7 +10,7 @@ "name": "phalcon", "description": "Web framework delivered as a C-extension for PHP", "author": "Phalcon Team and contributors", - "version": "4.0.0-alpha.4", + "version": "4.0.0-alpha.5", "verbose": false, "optimizer-dirs": [ "optimizers"