Skip to content

Commit

Permalink
Merge pull request #10692 from phalcon/2.0.x
Browse files Browse the repository at this point in the history
2.0.6
  • Loading branch information
andresgutierrez committed Jul 21, 2015
2 parents dc2ab65 + d2e2b52 commit b346d3b
Show file tree
Hide file tree
Showing 244 changed files with 14,414 additions and 9,541 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: php

sudo: false

php:
- 5.3
- 5.4
Expand All @@ -24,16 +26,16 @@ before_script:
- git submodule --quiet update --init --recursive
- (cd php-tests/library/Mustache; git checkout master)
- (cd php-tests/library/Twig; git checkout master)
- (cd vendor/phalcon/zephir; ./unit-tests/ci/before_install.sh; ./install)
- ./vendor/bin/zephir generate
- (cd ext; export CFLAGS="-g3 -O1 -std=gnu90 -Wall -DZEPHIR_RELEASE=1"; phpize && ./configure --enable-phalcon && make --silent -j4 && sudo make --silent install && phpenv config-add ../unit-tests/ci/phalcon.ini)
- (cd vendor/phalcon/zephir; ./unit-tests/ci/before_install.sh)
- (./unit-tests/ci/install_zephir.sh)
- (export PATH=$PATH:~/bin; zephir generate)
- (cd ext; export CFLAGS="-g3 -O1 -std=gnu90 -Wall -DZEPHIR_RELEASE=1"; phpize && ./configure --enable-phalcon && make --silent -j4 && make --silent install && phpenv config-add ../unit-tests/ci/phalcon.ini)
- ulimit -c unlimited || true

script:
- ./run-tests.sh

after_failure:
- sudo apt-get -qq install gdb
- ./unit-tests/ci/after_failure.sh

notifications:
Expand All @@ -42,3 +44,8 @@ notifications:
- [email protected]
- [email protected]

addons:
apt:
packages:
- gdb
- re2c
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
# [2.0.6](https://github.com/phalcon/cphalcon/releases/tag/phalcon-v2.0.6) (2015-??-??)
- Builds in TravisCI now uses Docker to perform faster builds
- Added `Http\Response::setCache()` to easily set cache headers.
- When a beanstalkd connection is closed the adapter does not produce a notice anymore
- Default separator in `Text::increment` is now _ (underscore)
- Using tel_field in Volt now generates correct PHP code
- SQL generated by PostgreSQL dialect in dropTable and dropView is now correct
- Errors generated in `Cache\Backend\Memcached` now shows the result code to easily debug problems
- Fixed `LIMIT/OFFSET` SQL generation in `Mvc\Model\Query\Builder`
- Fixed Logger\Formatter\Line to match 1.3.x behavior
- Fixed warning when castOnHydrate' is true [#10648](https://github.com/phalcon/cphalcon/pull/10648)
- Added name before int/float/numeric/string/bool/null/other variables in Debug\Dump::output
- Now `Validation\Validator\Identical` allows both 'accepted' and 'value' as value to keep backwards compatibility
- Added `\Phalcon\Mvc\Model\MetaData\Redis` adapter.
- Added Redis Session adapter
- Fixed bug in Mvc\Model\Criteria::fromInput unallowing it to use renamed columns
- Fixed bug in `Http\Request` getRawBody()/getPut() clears input buffer [#10694](https://github.com/phalcon/cphalcon/issues/10694)

# [2.0.5](https://github.com/phalcon/cphalcon/releases/tag/phalcon-v2.0.5) (2015-07-14)
- Fixed a bug that makes that attaching an events manager to an Mvc\Application causes view->render() not being called
- Fixed bug that makes generated SQL statements using FOR UPDATE not being parsed correctly
- Fixed bug that makes generated SQL statements using FOR UPDATE not being parsed correctly
- The email filter now no longer removes the ' character [#10603](https://github.com/phalcon/cphalcon/pull/10603)
- When an array is bound the cached representation in PHQL makes the SQL being incorrectly
generated the second time.
- Added `\Phalcon\Mvc\Model\MetaData\Memcache` and `\Phalcon\Mvc\Model\MetaData\Libmemcached` adapters

# [2.0.4](https://github.com/phalcon/cphalcon/releases/tag/phalcon-v2.0.4) (2015-07-07)
- Fixed bug in `Phalcon\Mvc\Model::update()` that throws an exception when the record does exist
Expand Down
5,014 changes: 2,880 additions & 2,134 deletions build/32bits/phalcon.zep.c

Large diffs are not rendered by default.

Loading

0 comments on commit b346d3b

Please sign in to comment.